zak0102 commited on
Commit
96a2e5d
·
1 Parent(s): ea3ca11
This view is limited to 50 files because it contains too many changes.   See raw diff
README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Synthetic Packaging Slip Donut Dataset
2
+
3
+ Synthetic packaging slip dataset for Donut fine-tuning.
4
+
5
+ ## Contents
6
+
7
+ - `train`: 50 PNG images + labels
8
+ - `val`: 50 PNG images + labels
9
+ - `test`: 50 PNG images + labels
10
+ - Total: 150 images
11
+
12
+ Each split has:
13
+
14
+ - `metadata.jsonl`: Donut/imagefolder-ready metadata. `ground_truth` is a JSON string containing `gt_parse`.
15
+ - `annotations_with_sequences.jsonl`: structured JSON plus a pre-built Donut target sequence.
16
+ - `annotations.json`: pretty JSON version for inspection.
17
+
18
+ ## Schema
19
+
20
+ ```json
21
+ {
22
+ "packaging": {
23
+ "seller": {"company_name": "", "address": "", "phone_number": ""},
24
+ "buyer": {"bill_to_name": "", "bill_to_address": "", "ship_to_name": "", "ship_to_address": ""},
25
+ "document": {"package_number": "", "order_date": "", "sales_order_number": "", "po_number": ""},
26
+ "items": [{"sr_no": "", "item_description": "", "sku": "", "quantity": "", "unit_price": "", "total_price": ""}],
27
+ "summary": {"total_quantity": "", "sub_total": "", "tax": "", "freight": "", "grand_total": ""},
28
+ "notes": ""
29
+ }
30
+ }
31
+ ```
32
+
33
+ ## Load with Hugging Face datasets
34
+
35
+ ```python
36
+ from datasets import load_dataset
37
+
38
+ dataset = load_dataset("imagefolder", data_dir="packaging_slip_donut_dataset")
39
+ print(dataset)
40
+ ```
41
+
42
+ All records are synthetic. Totals are validated during generation.
dataset_info.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "synthetic_packaging_slip_donut_dataset",
3
+ "version": "1.0.0",
4
+ "splits": {
5
+ "train": 50,
6
+ "val": 50,
7
+ "test": 50
8
+ },
9
+ "total_images": 150,
10
+ "schema_root": "packaging",
11
+ "seed": 314159
12
+ }
generate_dataset.py ADDED
@@ -0,0 +1,242 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json, random, shutil, zipfile, time
2
+ from pathlib import Path
3
+ from datetime import date, timedelta
4
+ from PIL import Image, ImageDraw, ImageFont
5
+
6
+ ROOT = Path('/mnt/data/packaging_slip_donut_dataset')
7
+ ZIP_PATH = Path('/mnt/data/packaging_slip_donut_dataset.zip')
8
+ SEED = 314159
9
+ random.seed(SEED)
10
+ SPLIT_SIZES = {'train': 50, 'val': 50, 'test': 50}
11
+
12
+ # Scaled A4-like page. Good enough for Donut fine-tuning and much faster to render than 150 DPI A4.
13
+ W, H = 900, 1272
14
+ S = W / 1240.0
15
+
16
+ def sc(v): return int(round(v * S))
17
+
18
+ def font_size(v): return max(8, int(round(v * S)))
19
+ FONT_REG = '/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf'
20
+ FONT_BOLD = '/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf'
21
+ FONT_MONO = '/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf'
22
+ FONT_SERIF_BOLD = '/usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf'
23
+
24
+ def font(path, size): return ImageFont.truetype(path, size=font_size(size))
25
+ F = {
26
+ 'title': font(FONT_SERIF_BOLD, 40), 'h1': font(FONT_BOLD, 25), 'h2': font(FONT_BOLD, 20),
27
+ 'body': font(FONT_REG, 18), 'small': font(FONT_REG, 16), 'tiny': font(FONT_REG, 14),
28
+ 'mono': font(FONT_MONO, 17), 'mono_small': font(FONT_MONO, 15), 'table_head': font(FONT_BOLD, 18),
29
+ }
30
+ SELLERS = [
31
+ ('Apex Cartons Ltd', '4799 Highland View Drive, Sacramento, CA 95815', '+91-78778-81186'),
32
+ ('Northline Supplies', '7455 Drew Court, White City, KS 66872', '+91-88390-36062'),
33
+ ('BluePeak Packaging Co', '214 Pine Ridge Lane, Boulder, CO 80302', '+1-303-555-0194'),
34
+ ('Crestline Box Works', '8800 Valley Crest Road, Austin, TX 78745', '+1-512-555-0176'),
35
+ ('MetroWrap Logistics', '1024 Harbor Street, Newark, NJ 07105', '+1-973-555-0182'),
36
+ ('Pacific Label House', '311 Ocean Park Blvd, San Diego, CA 92109', '+1-619-555-0154'),
37
+ ('GreenLeaf Cartons', '58 Rosewood Avenue, Portland, OR 97205', '+1-503-555-0141'),
38
+ ('Summit Packaging Hub', '1700 Market Street, Denver, CO 80202', '+1-720-555-0188'),
39
+ ('PrimePack Traders', '27 Industrial Estate, Pune, MH 411045', '+91-98810-44231'),
40
+ ('SilverBox Enterprises', '18 Race Course Road, Chennai, TN 600032', '+91-94444-70981'),
41
+ ('UrbanCarton Supply', '91 Sector 44 Road, Gurugram, HR 122003', '+91-98122-55340'),
42
+ ('EverReady Packaging', '301 Lakeside Drive, Madison, WI 53703', '+1-608-555-0139'),
43
+ ]
44
+ CUSTOMERS = [
45
+ ('Jeff Ritchie Stores', '980 Industrial Road, Hyderabad, TS 500081', '7455 Drew Court, White City, KS 66872'),
46
+ ('Riverside Retail Group', '72 Market Square, Chennai, TN 600001', '18 Park Street, Pune, MH 411001'),
47
+ ('Hilltop Office Depot', '140 Cedar Lane, Albany, NY 12207', '500 River Road, Troy, NY 12180'),
48
+ ('Mason Distribution', '89 Foundry Street, Detroit, MI 48207', '44 Logistics Park, Warren, MI 48089'),
49
+ ('Nova General Stores', '6 MG Road, Bengaluru, KA 560001', '42 Whitefield Main Road, Bengaluru, KA 560066'),
50
+ ('Prairie Wholesale', '210 North 8th Street, Omaha, NE 68102', '95 Warehouse Avenue, Lincoln, NE 68508'),
51
+ ('Sunrise Stationers', '55 Ashok Nagar, Jaipur, RJ 302001', '9 Transport Nagar, Jaipur, RJ 302003'),
52
+ ('Vertex Home Mart', '312 King Street, Seattle, WA 98104', '810 Depot Road, Tacoma, WA 98421'),
53
+ ('Canyon Craft Supplies', '460 Mesa Drive, Phoenix, AZ 85004', '77 South Yard Way, Tempe, AZ 85281'),
54
+ ('Orbit Commerce Pvt Ltd', '404 SG Highway, Ahmedabad, GJ 380015', '22 Narol Industrial Area, Ahmedabad, GJ 382405'),
55
+ ('OakBridge Market', '15 Elm Street, Boston, MA 02108', '112 Dock Road, Everett, MA 02149'),
56
+ ('Central Furnishing Co', '100 Broad Avenue, Atlanta, GA 30303', '2300 Freight Drive, Marietta, GA 30060'),
57
+ ]
58
+ ITEMS = [
59
+ ('Shipping Label Pack', 'LBL-450'), ('Packing Tape', 'TAPE-338'), ('Product Manual', 'MAN-780'),
60
+ ('Warranty Card', 'WAR-110'), ('Invoice Copy', 'INV-COPY'), ('Plastic Sleeve', 'SLV-890'),
61
+ ('Printed Carton', 'CRT-670'), ('Ad Design', 'AD-DES-003'), ('Foam Insert', 'FOM-560'),
62
+ ('Barcode Sticker Roll', 'BAR-244'), ('Fragile Label Set', 'FRG-112'), ('Bubble Wrap Roll', 'BUB-908'),
63
+ ('Corrugated Divider', 'DIV-731'), ('Return Label Sheet', 'RTN-509'), ('Custom Poly Mailer', 'POLY-620'),
64
+ ('Die Cut Insert', 'DCI-725'), ('Pallet Label Card', 'PAL-318'), ('Security Seal Strip', 'SEC-401'),
65
+ ('Mailer Box Small', 'MBOX-SM'), ('Mailer Box Large', 'MBOX-LG'), ('Kraft Paper Roll', 'KRAFT-221'),
66
+ ('Thermal Label Roll', 'THR-612'), ('Corner Protector', 'CRN-019'), ('Documentation Pouch', 'DOC-872'),
67
+ ('Hang Tag Bundle', 'TAG-149'), ('Instruction Leaflet', 'LEAF-557'), ('Packing Slip Copy', 'PSC-391'),
68
+ ('Gift Wrap Sheet', 'GFT-812'), ('Logo Sticker Pack', 'LOGO-754'), ('Moisture Guard Bag', 'MGB-309'),
69
+ ]
70
+ NOTES = ['Partial shipment allowed', 'Handle cartons with care', 'Deliver during business hours', 'Use dock entrance for unloading', 'Customer signature required', 'Keep goods dry during transit', 'Verify carton count before dispatch', 'Shipment can be split by item line', 'Do not stack above five cartons', 'Priority delivery requested', 'Attach invoice copy to shipment', 'Contact buyer before final delivery']
71
+ PRICES = [10, 12, 15, 20, 25, 30, 40, 50, 60, 75, 90, 100, 125, 150, 175, 200, 225, 250]
72
+
73
+ def clean_dir(path):
74
+ if path.exists(): shutil.rmtree(path)
75
+ path.mkdir(parents=True, exist_ok=True)
76
+
77
+ def text(draw, xy, value, fnt, fill=(25,25,25)):
78
+ draw.text((sc(xy[0]), sc(xy[1])), str(value), font=fnt, fill=fill)
79
+
80
+ def line(draw, coords, fill=(70,70,70), width=1):
81
+ draw.line([sc(v) for v in coords], fill=fill, width=max(1, sc(width)))
82
+
83
+ def rect(draw, coords, outline=(70,70,70), width=1):
84
+ draw.rectangle([sc(v) for v in coords], outline=outline, width=max(1, sc(width)))
85
+
86
+ def wrapped(draw, xy, value, fnt, max_width, line_gap=4, fill=(25,25,25)):
87
+ words = str(value).split()
88
+ lines, current = [], ''
89
+ maxw = sc(max_width)
90
+ for w in words:
91
+ cand = (current + ' ' + w).strip()
92
+ bb = draw.textbbox((0,0), cand, font=fnt)
93
+ if bb[2] - bb[0] <= maxw or not current:
94
+ current = cand
95
+ else:
96
+ lines.append(current); current = w
97
+ if current: lines.append(current)
98
+ x, y = xy
99
+ lh = (draw.textbbox((0,0), 'Ag', font=fnt)[3] + sc(line_gap)) / S
100
+ for ln in lines:
101
+ text(draw, (x, y), ln, fnt, fill)
102
+ y += lh
103
+ return y
104
+
105
+ def generate_record(global_idx):
106
+ seller = random.choice(SELLERS); customer = random.choice(CUSTOMERS)
107
+ order_date = date(2026,1,15) + timedelta(days=random.randint(0,330))
108
+ n_items = random.randint(3,8)
109
+ rows=[]; qty_sum=0; subtotal=0
110
+ for sr,(desc,sku) in enumerate(random.sample(ITEMS, n_items), 1):
111
+ qty=random.randint(1,20); unit=random.choice(PRICES); total=qty*unit
112
+ qty_sum += qty; subtotal += total
113
+ rows.append({'sr_no':str(sr),'item_description':desc,'sku':sku,'quantity':str(qty),'unit_price':str(unit),'total_price':str(total)})
114
+ tax=random.choice([0,0,0,50,100,125,150,200]); freight=random.choice([0,50,75,100,125,150,200,250,300])
115
+ return {
116
+ 'seller': {'company_name': seller[0], 'address': seller[1], 'phone_number': seller[2]},
117
+ 'buyer': {'bill_to_name': customer[0], 'bill_to_address': customer[1], 'ship_to_name': customer[0], 'ship_to_address': customer[2]},
118
+ 'document': {'package_number': f'PKG{global_idx:05d}', 'order_date': order_date.isoformat(), 'sales_order_number': str(random.randint(500000,599999)), 'po_number': f'PO-{random.randint(30000,69999)}'},
119
+ 'items': rows,
120
+ 'summary': {'total_quantity': str(qty_sum), 'sub_total': str(subtotal), 'tax': str(tax), 'freight': str(freight), 'grand_total': str(subtotal+tax+freight)},
121
+ 'notes': random.choice(NOTES),
122
+ }
123
+
124
+ def to_donut_sequence(obj):
125
+ def tok(k,v): return f'<s_{k}>{v}</s_{k}>'
126
+ seq = '<s_packaging>'
127
+ for sec in ['seller','buyer','document']:
128
+ seq += f'<s_{sec}>' + ''.join(tok(k,v) for k,v in obj[sec].items()) + f'</s_{sec}>'
129
+ seq += '<s_items>'
130
+ for item in obj['items']:
131
+ seq += '<s_item>' + ''.join(tok(k,item[k]) for k in ['sr_no','item_description','sku','quantity','unit_price','total_price']) + '</s_item>'
132
+ seq += '</s_items><s_summary>'
133
+ seq += ''.join(tok(k,obj['summary'][k]) for k in ['total_quantity','sub_total','tax','freight','grand_total'])
134
+ seq += '</s_summary>' + tok('notes', obj['notes']) + '</s_packaging>'
135
+ return seq
136
+
137
+ def validate(obj):
138
+ qty=sum(int(i['quantity']) for i in obj['items']); subtotal=sum(int(i['total_price']) for i in obj['items'])
139
+ assert qty == int(obj['summary']['total_quantity'])
140
+ assert subtotal == int(obj['summary']['sub_total'])
141
+ assert subtotal + int(obj['summary']['tax']) + int(obj['summary']['freight']) == int(obj['summary']['grand_total'])
142
+ for i,row in enumerate(obj['items'],1):
143
+ assert row['sr_no'] == str(i)
144
+ assert int(row['quantity']) * int(row['unit_price']) == int(row['total_price'])
145
+
146
+ def render(obj, out_path):
147
+ paper=random.choice([(255,255,255),(253,253,251),(252,253,255)])
148
+ img=Image.new('RGB',(W,H),paper); d=ImageDraw.Draw(img)
149
+ black=(25,25,25); light=(226,226,226)
150
+ rect(d,[50,50,1190,1704],width=2); rect(d,[62,62,1178,1692],outline=(230,230,230))
151
+ text(d,(70,92),'PACKAGE SLIP',F['title']); text(d,(740,100),f"Package# - {obj['document']['package_number']}",F['h2'])
152
+ y=170; text(d,(70,y),obj['seller']['company_name'],F['h2']); y=wrapped(d,(70,y+32),obj['seller']['address'],F['small'],620); text(d,(70,y+3),obj['seller']['phone_number'],F['small'])
153
+ y=300; xs=[70,365,655,940]; labs=['Package #','Order Date #','Sales Order #','PO #']; vals=[obj['document']['package_number'],obj['document']['order_date'],obj['document']['sales_order_number'],obj['document']['po_number']]
154
+ for x,lab,val in zip(xs,labs,vals): text(d,(x,y),lab,F['h2']); text(d,(x,y+36),val,F['small'])
155
+ line(d,[70,405,1170,405],width=2)
156
+ text(d,(70,445),'Bill To:',F['h2']); text(d,(70,483),obj['buyer']['bill_to_name'],F['small']); wrapped(d,(70,508),obj['buyer']['bill_to_address'],F['small'],430)
157
+ text(d,(635,445),'Ship To:',F['h2']); text(d,(635,483),obj['buyer']['ship_to_name'],F['small']); wrapped(d,(635,508),obj['buyer']['ship_to_address'],F['small'],430)
158
+ line(d,[70,620,1170,620],width=2)
159
+ y=650; cols={'sr':70,'desc':155,'sku':565,'qty':750,'unit':875,'total':1050}
160
+ for key,label in [('sr','SR No.'),('desc','ITEM DESCRIPTION'),('sku','SKU'),('qty','QTY'),('unit','UNIT PRICE'),('total','TOTAL')]: text(d,(cols[key],y),label,F['table_head'])
161
+ line(d,[70,y+34,1170,y+34])
162
+ row_y=y+58
163
+ for item in obj['items']:
164
+ text(d,(cols['sr'],row_y),item['sr_no'],F['mono_small']); text(d,(cols['desc'],row_y),item['item_description'],F['small']); text(d,(cols['sku'],row_y),item['sku'],F['mono_small'])
165
+ text(d,(cols['qty']+18,row_y),item['quantity'],F['mono_small']); text(d,(cols['unit'],row_y),item['unit_price'],F['mono_small']); text(d,(cols['total'],row_y),item['total_price'],F['mono_small'])
166
+ row_y += 36
167
+ bottom=max(row_y+20,930); line(d,[70,bottom,1170,bottom],fill=light)
168
+ sy=bottom+34
169
+ for lab,key in [('Total Qty','total_quantity'),('Sub Total','sub_total'),('Tax','tax'),('Freight','freight'),('Grand Total','grand_total')]:
170
+ f=F['h2'] if lab=='Grand Total' else F['small']; text(d,(770,sy),lab,f); text(d,(1015,sy),obj['summary'][key],f); sy += 35
171
+ ny=max(bottom+210,1210); text(d,(70,ny),'Notes:',F['h2']); text(d,(70,ny+34),obj['notes'],F['small'])
172
+ if random.random()<0.25:
173
+ x=random.randint(sc(90),sc(1150)); d.line([x,sc(60),x,sc(1690)],fill=(238,238,238),width=1)
174
+ img.save(out_path, format='PNG', compress_level=1)
175
+
176
+ def write_readme(root):
177
+ readme = """# Synthetic Packaging Slip Donut Dataset
178
+
179
+ Synthetic packaging slip dataset for Donut fine-tuning.
180
+
181
+ ## Contents
182
+
183
+ - `train`: 50 PNG images + labels
184
+ - `val`: 50 PNG images + labels
185
+ - `test`: 50 PNG images + labels
186
+ - Total: 150 images
187
+
188
+ Each split has:
189
+
190
+ - `metadata.jsonl`: Donut/imagefolder-ready metadata. `ground_truth` is a JSON string containing `gt_parse`.
191
+ - `annotations_with_sequences.jsonl`: structured JSON plus a pre-built Donut target sequence.
192
+ - `annotations.json`: pretty JSON version for inspection.
193
+
194
+ ## Schema
195
+
196
+ ```json
197
+ {
198
+ "packaging": {
199
+ "seller": {"company_name": "", "address": "", "phone_number": ""},
200
+ "buyer": {"bill_to_name": "", "bill_to_address": "", "ship_to_name": "", "ship_to_address": ""},
201
+ "document": {"package_number": "", "order_date": "", "sales_order_number": "", "po_number": ""},
202
+ "items": [{"sr_no": "", "item_description": "", "sku": "", "quantity": "", "unit_price": "", "total_price": ""}],
203
+ "summary": {"total_quantity": "", "sub_total": "", "tax": "", "freight": "", "grand_total": ""},
204
+ "notes": ""
205
+ }
206
+ }
207
+ ```
208
+
209
+ ## Load with Hugging Face datasets
210
+
211
+ ```python
212
+ from datasets import load_dataset
213
+
214
+ dataset = load_dataset("imagefolder", data_dir="packaging_slip_donut_dataset")
215
+ print(dataset)
216
+ ```
217
+
218
+ All records are synthetic. Totals are validated during generation.
219
+ """
220
+ (root/'README.md').write_text(readme,encoding='utf-8')
221
+
222
+ def main():
223
+ t0=time.time(); clean_dir(ROOT); global_idx=1
224
+ info={'name':'synthetic_packaging_slip_donut_dataset','version':'1.0.0','splits':SPLIT_SIZES,'total_images':sum(SPLIT_SIZES.values()),'schema_root':'packaging','seed':SEED}
225
+ for split,count in SPLIT_SIZES.items():
226
+ sd=ROOT/split; sd.mkdir(parents=True,exist_ok=True); metas=[]; seqs=[]; records=[]
227
+ for _ in range(count):
228
+ obj=generate_record(global_idx); validate(obj); fname=f'package_{global_idx:05d}.png'; render(obj,sd/fname)
229
+ sequence=to_donut_sequence(obj); gt={'gt_parse':{'packaging':obj}}
230
+ metas.append(json.dumps({'file_name':fname,'ground_truth':json.dumps(gt,ensure_ascii=False)},ensure_ascii=False))
231
+ rec={'file_name':fname,'split':split,'ground_truth':{'packaging':obj},'target_sequence':sequence}
232
+ seqs.append(json.dumps(rec,ensure_ascii=False)); records.append(rec); global_idx += 1
233
+ (sd/'metadata.jsonl').write_text('\n'.join(metas)+'\n',encoding='utf-8')
234
+ (sd/'annotations_with_sequences.jsonl').write_text('\n'.join(seqs)+'\n',encoding='utf-8')
235
+ (sd/'annotations.json').write_text(json.dumps(records,ensure_ascii=False,indent=2),encoding='utf-8')
236
+ (ROOT/'dataset_info.json').write_text(json.dumps(info,indent=2),encoding='utf-8'); write_readme(ROOT)
237
+ if ZIP_PATH.exists(): ZIP_PATH.unlink()
238
+ with zipfile.ZipFile(ZIP_PATH,'w',compression=zipfile.ZIP_STORED) as z:
239
+ for p in ROOT.rglob('*'): z.write(p,arcname=p.relative_to(ROOT.parent))
240
+ print('created',ZIP_PATH,'in',round(time.time()-t0,2),'sec')
241
+
242
+ if __name__=='__main__': main()
test/annotations.json ADDED
The diff for this file is too large to render. See raw diff
 
test/annotations_with_sequences.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
test/metadata.jsonl ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"file_name": "package_00101.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00101\", \"order_date\": \"2026-04-19\", \"sales_order_number\": \"521374\", \"po_number\": \"PO-42740\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"12\", \"unit_price\": \"12\", \"total_price\": \"144\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"9\", \"unit_price\": \"175\", \"total_price\": \"1575\"}, {\"sr_no\": \"3\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"60\", \"total_price\": \"1080\"}, {\"sr_no\": \"4\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"4\", \"unit_price\": \"25\", \"total_price\": \"100\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"6\", \"unit_price\": \"10\", \"total_price\": \"60\"}, {\"sr_no\": \"6\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"8\", \"unit_price\": \"25\", \"total_price\": \"200\"}, {\"sr_no\": \"7\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"17\", \"unit_price\": \"40\", \"total_price\": \"680\"}, {\"sr_no\": \"8\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"15\", \"unit_price\": \"125\", \"total_price\": \"1875\"}], \"summary\": {\"total_quantity\": \"89\", \"sub_total\": \"5714\", \"tax\": \"200\", \"freight\": \"0\", \"grand_total\": \"5914\"}, \"notes\": \"Use dock entrance for unloading\"}}}"}
2
+ {"file_name": "package_00102.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00102\", \"order_date\": \"2026-03-03\", \"sales_order_number\": \"531896\", \"po_number\": \"PO-45706\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"16\", \"unit_price\": \"175\", \"total_price\": \"2800\"}, {\"sr_no\": \"2\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"12\", \"unit_price\": \"60\", \"total_price\": \"720\"}, {\"sr_no\": \"3\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"7\", \"unit_price\": \"125\", \"total_price\": \"875\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"17\", \"unit_price\": \"40\", \"total_price\": \"680\"}, {\"sr_no\": \"5\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"15\", \"unit_price\": \"30\", \"total_price\": \"450\"}, {\"sr_no\": \"6\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"17\", \"unit_price\": \"15\", \"total_price\": \"255\"}, {\"sr_no\": \"7\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"40\", \"total_price\": \"720\"}, {\"sr_no\": \"8\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"16\", \"unit_price\": \"175\", \"total_price\": \"2800\"}], \"summary\": {\"total_quantity\": \"118\", \"sub_total\": \"9300\", \"tax\": \"200\", \"freight\": \"50\", \"grand_total\": \"9550\"}, \"notes\": \"Handle cartons with care\"}}}"}
3
+ {"file_name": "package_00103.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00103\", \"order_date\": \"2026-12-02\", \"sales_order_number\": \"565962\", \"po_number\": \"PO-66319\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"10\", \"unit_price\": \"175\", \"total_price\": \"1750\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"5\", \"unit_price\": \"50\", \"total_price\": \"250\"}, {\"sr_no\": \"3\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"5\", \"unit_price\": \"90\", \"total_price\": \"450\"}, {\"sr_no\": \"4\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"19\", \"unit_price\": \"90\", \"total_price\": \"1710\"}], \"summary\": {\"total_quantity\": \"39\", \"sub_total\": \"4160\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"4235\"}, \"notes\": \"Deliver during business hours\"}}}"}
4
+ {"file_name": "package_00104.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00104\", \"order_date\": \"2026-07-26\", \"sales_order_number\": \"532906\", \"po_number\": \"PO-58849\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"1\", \"unit_price\": \"125\", \"total_price\": \"125\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"13\", \"unit_price\": \"20\", \"total_price\": \"260\"}, {\"sr_no\": \"3\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"30\", \"total_price\": \"540\"}, {\"sr_no\": \"4\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"17\", \"unit_price\": \"175\", \"total_price\": \"2975\"}, {\"sr_no\": \"5\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"4\", \"unit_price\": \"15\", \"total_price\": \"60\"}, {\"sr_no\": \"6\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"11\", \"unit_price\": \"250\", \"total_price\": \"2750\"}, {\"sr_no\": \"7\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"13\", \"unit_price\": \"125\", \"total_price\": \"1625\"}, {\"sr_no\": \"8\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"17\", \"unit_price\": \"90\", \"total_price\": \"1530\"}], \"summary\": {\"total_quantity\": \"94\", \"sub_total\": \"9865\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"10015\"}, \"notes\": \"Use dock entrance for unloading\"}}}"}
5
+ {"file_name": "package_00105.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00105\", \"order_date\": \"2026-10-15\", \"sales_order_number\": \"579774\", \"po_number\": \"PO-35435\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"9\", \"unit_price\": \"175\", \"total_price\": \"1575\"}, {\"sr_no\": \"2\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"5\", \"unit_price\": \"12\", \"total_price\": \"60\"}, {\"sr_no\": \"3\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"19\", \"unit_price\": \"12\", \"total_price\": \"228\"}, {\"sr_no\": \"4\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"4\", \"unit_price\": \"20\", \"total_price\": \"80\"}, {\"sr_no\": \"5\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"13\", \"unit_price\": \"125\", \"total_price\": \"1625\"}, {\"sr_no\": \"6\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"12\", \"unit_price\": \"225\", \"total_price\": \"2700\"}, {\"sr_no\": \"7\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"6\", \"unit_price\": \"20\", \"total_price\": \"120\"}], \"summary\": {\"total_quantity\": \"68\", \"sub_total\": \"6388\", \"tax\": \"50\", \"freight\": \"100\", \"grand_total\": \"6538\"}, \"notes\": \"Keep goods dry during transit\"}}}"}
6
+ {"file_name": "package_00106.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00106\", \"order_date\": \"2026-08-08\", \"sales_order_number\": \"563165\", \"po_number\": \"PO-45533\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"8\", \"unit_price\": \"25\", \"total_price\": \"200\"}, {\"sr_no\": \"2\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"2\", \"unit_price\": \"125\", \"total_price\": \"250\"}, {\"sr_no\": \"3\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"14\", \"unit_price\": \"175\", \"total_price\": \"2450\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"8\", \"unit_price\": \"100\", \"total_price\": \"800\"}], \"summary\": {\"total_quantity\": \"32\", \"sub_total\": \"3700\", \"tax\": \"150\", \"freight\": \"300\", \"grand_total\": \"4150\"}, \"notes\": \"Partial shipment allowed\"}}}"}
7
+ {"file_name": "package_00107.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Vertex Home Mart\", \"bill_to_address\": \"312 King Street, Seattle, WA 98104\", \"ship_to_name\": \"Vertex Home Mart\", \"ship_to_address\": \"810 Depot Road, Tacoma, WA 98421\"}, \"document\": {\"package_number\": \"PKG00107\", \"order_date\": \"2026-06-12\", \"sales_order_number\": \"529895\", \"po_number\": \"PO-55563\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"14\", \"unit_price\": \"150\", \"total_price\": \"2100\"}, {\"sr_no\": \"2\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"18\", \"unit_price\": \"90\", \"total_price\": \"1620\"}, {\"sr_no\": \"3\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"10\", \"unit_price\": \"125\", \"total_price\": \"1250\"}, {\"sr_no\": \"4\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"14\", \"unit_price\": \"20\", \"total_price\": \"280\"}, {\"sr_no\": \"5\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"17\", \"unit_price\": \"60\", \"total_price\": \"1020\"}], \"summary\": {\"total_quantity\": \"73\", \"sub_total\": \"6270\", \"tax\": \"100\", \"freight\": \"250\", \"grand_total\": \"6620\"}, \"notes\": \"Verify carton count before dispatch\"}}}"}
8
+ {"file_name": "package_00108.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00108\", \"order_date\": \"2026-12-04\", \"sales_order_number\": \"588140\", \"po_number\": \"PO-32792\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"4\", \"unit_price\": \"225\", \"total_price\": \"900\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"18\", \"unit_price\": \"200\", \"total_price\": \"3600\"}, {\"sr_no\": \"3\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"15\", \"unit_price\": \"40\", \"total_price\": \"600\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"10\", \"unit_price\": \"10\", \"total_price\": \"100\"}], \"summary\": {\"total_quantity\": \"47\", \"sub_total\": \"5200\", \"tax\": \"0\", \"freight\": \"50\", \"grand_total\": \"5250\"}, \"notes\": \"Deliver during business hours\"}}}"}
9
+ {"file_name": "package_00109.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00109\", \"order_date\": \"2026-06-28\", \"sales_order_number\": \"530367\", \"po_number\": \"PO-44358\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"2\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"11\", \"unit_price\": \"90\", \"total_price\": \"990\"}, {\"sr_no\": \"3\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"6\", \"unit_price\": \"100\", \"total_price\": \"600\"}, {\"sr_no\": \"4\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"12\", \"unit_price\": \"20\", \"total_price\": \"240\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"9\", \"unit_price\": \"20\", \"total_price\": \"180\"}, {\"sr_no\": \"6\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"16\", \"unit_price\": \"100\", \"total_price\": \"1600\"}, {\"sr_no\": \"7\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"9\", \"unit_price\": \"12\", \"total_price\": \"108\"}], \"summary\": {\"total_quantity\": \"66\", \"sub_total\": \"4093\", \"tax\": \"50\", \"freight\": \"150\", \"grand_total\": \"4293\"}, \"notes\": \"Keep goods dry during transit\"}}}"}
10
+ {"file_name": "package_00110.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Hilltop Office Depot\", \"bill_to_address\": \"140 Cedar Lane, Albany, NY 12207\", \"ship_to_name\": \"Hilltop Office Depot\", \"ship_to_address\": \"500 River Road, Troy, NY 12180\"}, \"document\": {\"package_number\": \"PKG00110\", \"order_date\": \"2026-11-16\", \"sales_order_number\": \"502289\", \"po_number\": \"PO-38497\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"2\", \"unit_price\": \"10\", \"total_price\": \"20\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"1\", \"unit_price\": \"40\", \"total_price\": \"40\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"8\", \"unit_price\": \"90\", \"total_price\": \"720\"}, {\"sr_no\": \"4\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"10\", \"unit_price\": \"60\", \"total_price\": \"600\"}, {\"sr_no\": \"5\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"2\", \"unit_price\": \"125\", \"total_price\": \"250\"}, {\"sr_no\": \"6\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"4\", \"unit_price\": \"10\", \"total_price\": \"40\"}], \"summary\": {\"total_quantity\": \"27\", \"sub_total\": \"1670\", \"tax\": \"150\", \"freight\": \"50\", \"grand_total\": \"1870\"}, \"notes\": \"Deliver during business hours\"}}}"}
11
+ {"file_name": "package_00111.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00111\", \"order_date\": \"2026-10-29\", \"sales_order_number\": \"546550\", \"po_number\": \"PO-34222\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"2\", \"unit_price\": \"90\", \"total_price\": \"180\"}, {\"sr_no\": \"2\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"3\", \"unit_price\": \"10\", \"total_price\": \"30\"}, {\"sr_no\": \"3\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"19\", \"unit_price\": \"75\", \"total_price\": \"1425\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"9\", \"unit_price\": \"30\", \"total_price\": \"270\"}, {\"sr_no\": \"5\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"17\", \"unit_price\": \"20\", \"total_price\": \"340\"}], \"summary\": {\"total_quantity\": \"50\", \"sub_total\": \"2245\", \"tax\": \"0\", \"freight\": \"0\", \"grand_total\": \"2245\"}, \"notes\": \"Shipment can be split by item line\"}}}"}
12
+ {"file_name": "package_00112.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00112\", \"order_date\": \"2026-02-27\", \"sales_order_number\": \"505662\", \"po_number\": \"PO-68504\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"8\", \"unit_price\": \"225\", \"total_price\": \"1800\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"3\", \"unit_price\": \"175\", \"total_price\": \"525\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"15\", \"unit_price\": \"250\", \"total_price\": \"3750\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"6\", \"unit_price\": \"75\", \"total_price\": \"450\"}, {\"sr_no\": \"5\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"19\", \"unit_price\": \"20\", \"total_price\": \"380\"}, {\"sr_no\": \"6\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"11\", \"unit_price\": \"30\", \"total_price\": \"330\"}, {\"sr_no\": \"7\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"17\", \"unit_price\": \"175\", \"total_price\": \"2975\"}], \"summary\": {\"total_quantity\": \"79\", \"sub_total\": \"10210\", \"tax\": \"150\", \"freight\": \"50\", \"grand_total\": \"10410\"}, \"notes\": \"Contact buyer before final delivery\"}}}"}
13
+ {"file_name": "package_00113.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00113\", \"order_date\": \"2026-11-08\", \"sales_order_number\": \"551337\", \"po_number\": \"PO-35417\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"6\", \"unit_price\": \"175\", \"total_price\": \"1050\"}, {\"sr_no\": \"2\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"13\", \"unit_price\": \"175\", \"total_price\": \"2275\"}, {\"sr_no\": \"3\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"13\", \"unit_price\": \"200\", \"total_price\": \"2600\"}], \"summary\": {\"total_quantity\": \"32\", \"sub_total\": \"5925\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"6025\"}, \"notes\": \"Use dock entrance for unloading\"}}}"}
14
+ {"file_name": "package_00114.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00114\", \"order_date\": \"2026-06-26\", \"sales_order_number\": \"510576\", \"po_number\": \"PO-68835\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"2\", \"unit_price\": \"150\", \"total_price\": \"300\"}, {\"sr_no\": \"2\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"7\", \"unit_price\": \"100\", \"total_price\": \"700\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"14\", \"unit_price\": \"175\", \"total_price\": \"2450\"}, {\"sr_no\": \"4\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"12\", \"unit_price\": \"10\", \"total_price\": \"120\"}, {\"sr_no\": \"5\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"14\", \"unit_price\": \"225\", \"total_price\": \"3150\"}, {\"sr_no\": \"6\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"12\", \"unit_price\": \"12\", \"total_price\": \"144\"}], \"summary\": {\"total_quantity\": \"61\", \"sub_total\": \"6864\", \"tax\": \"0\", \"freight\": \"0\", \"grand_total\": \"6864\"}, \"notes\": \"Use dock entrance for unloading\"}}}"}
15
+ {"file_name": "package_00115.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00115\", \"order_date\": \"2026-07-14\", \"sales_order_number\": \"548187\", \"po_number\": \"PO-38839\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"18\", \"unit_price\": \"25\", \"total_price\": \"450\"}, {\"sr_no\": \"2\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"6\", \"unit_price\": \"100\", \"total_price\": \"600\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"4\", \"unit_price\": \"225\", \"total_price\": \"900\"}, {\"sr_no\": \"4\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"5\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"6\", \"unit_price\": \"15\", \"total_price\": \"90\"}, {\"sr_no\": \"6\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"10\", \"unit_price\": \"15\", \"total_price\": \"150\"}, {\"sr_no\": \"7\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"4\", \"unit_price\": \"40\", \"total_price\": \"160\"}], \"summary\": {\"total_quantity\": \"51\", \"sub_total\": \"2725\", \"tax\": \"0\", \"freight\": \"150\", \"grand_total\": \"2875\"}, \"notes\": \"Partial shipment allowed\"}}}"}
16
+ {"file_name": "package_00116.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00116\", \"order_date\": \"2026-07-06\", \"sales_order_number\": \"579361\", \"po_number\": \"PO-55209\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"7\", \"unit_price\": \"125\", \"total_price\": \"875\"}, {\"sr_no\": \"2\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"19\", \"unit_price\": \"90\", \"total_price\": \"1710\"}, {\"sr_no\": \"3\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"8\", \"unit_price\": \"20\", \"total_price\": \"160\"}, {\"sr_no\": \"4\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"16\", \"unit_price\": \"100\", \"total_price\": \"1600\"}, {\"sr_no\": \"5\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"19\", \"unit_price\": \"30\", \"total_price\": \"570\"}, {\"sr_no\": \"6\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"1\", \"unit_price\": \"150\", \"total_price\": \"150\"}], \"summary\": {\"total_quantity\": \"70\", \"sub_total\": \"5065\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"5165\"}, \"notes\": \"Use dock entrance for unloading\"}}}"}
17
+ {"file_name": "package_00117.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00117\", \"order_date\": \"2026-10-03\", \"sales_order_number\": \"503606\", \"po_number\": \"PO-47473\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"17\", \"unit_price\": \"15\", \"total_price\": \"255\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"17\", \"unit_price\": \"150\", \"total_price\": \"2550\"}, {\"sr_no\": \"3\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"16\", \"unit_price\": \"175\", \"total_price\": \"2800\"}, {\"sr_no\": \"4\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"2\", \"unit_price\": \"40\", \"total_price\": \"80\"}], \"summary\": {\"total_quantity\": \"52\", \"sub_total\": \"5685\", \"tax\": \"50\", \"freight\": \"150\", \"grand_total\": \"5885\"}, \"notes\": \"Customer signature required\"}}}"}
18
+ {"file_name": "package_00118.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00118\", \"order_date\": \"2026-05-15\", \"sales_order_number\": \"571541\", \"po_number\": \"PO-68483\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"11\", \"unit_price\": \"25\", \"total_price\": \"275\"}, {\"sr_no\": \"2\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"1\", \"unit_price\": \"75\", \"total_price\": \"75\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"1\", \"unit_price\": \"225\", \"total_price\": \"225\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"12\", \"unit_price\": \"225\", \"total_price\": \"2700\"}, {\"sr_no\": \"5\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"13\", \"unit_price\": \"15\", \"total_price\": \"195\"}, {\"sr_no\": \"6\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"18\", \"unit_price\": \"175\", \"total_price\": \"3150\"}], \"summary\": {\"total_quantity\": \"56\", \"sub_total\": \"6620\", \"tax\": \"50\", \"freight\": \"150\", \"grand_total\": \"6820\"}, \"notes\": \"Priority delivery requested\"}}}"}
19
+ {"file_name": "package_00119.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00119\", \"order_date\": \"2026-02-04\", \"sales_order_number\": \"538805\", \"po_number\": \"PO-30215\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"7\", \"unit_price\": \"20\", \"total_price\": \"140\"}, {\"sr_no\": \"2\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"13\", \"unit_price\": \"10\", \"total_price\": \"130\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"8\", \"unit_price\": \"150\", \"total_price\": \"1200\"}], \"summary\": {\"total_quantity\": \"28\", \"sub_total\": \"1470\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"1545\"}, \"notes\": \"Keep goods dry during transit\"}}}"}
20
+ {"file_name": "package_00120.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00120\", \"order_date\": \"2026-07-25\", \"sales_order_number\": \"567762\", \"po_number\": \"PO-36148\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"11\", \"unit_price\": \"75\", \"total_price\": \"825\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"2\", \"unit_price\": \"90\", \"total_price\": \"180\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"2\", \"unit_price\": \"40\", \"total_price\": \"80\"}, {\"sr_no\": \"4\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"20\", \"unit_price\": \"60\", \"total_price\": \"1200\"}, {\"sr_no\": \"5\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"8\", \"unit_price\": \"25\", \"total_price\": \"200\"}], \"summary\": {\"total_quantity\": \"43\", \"sub_total\": \"2485\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"2685\"}, \"notes\": \"Partial shipment allowed\"}}}"}
21
+ {"file_name": "package_00121.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00121\", \"order_date\": \"2026-03-10\", \"sales_order_number\": \"502492\", \"po_number\": \"PO-38629\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"16\", \"unit_price\": \"100\", \"total_price\": \"1600\"}, {\"sr_no\": \"2\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"3\", \"unit_price\": \"225\", \"total_price\": \"675\"}, {\"sr_no\": \"3\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"16\", \"unit_price\": \"40\", \"total_price\": \"640\"}, {\"sr_no\": \"4\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"17\", \"unit_price\": \"125\", \"total_price\": \"2125\"}], \"summary\": {\"total_quantity\": \"52\", \"sub_total\": \"5040\", \"tax\": \"50\", \"freight\": \"250\", \"grand_total\": \"5340\"}, \"notes\": \"Priority delivery requested\"}}}"}
22
+ {"file_name": "package_00122.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Prairie Wholesale\", \"bill_to_address\": \"210 North 8th Street, Omaha, NE 68102\", \"ship_to_name\": \"Prairie Wholesale\", \"ship_to_address\": \"95 Warehouse Avenue, Lincoln, NE 68508\"}, \"document\": {\"package_number\": \"PKG00122\", \"order_date\": \"2026-05-13\", \"sales_order_number\": \"594242\", \"po_number\": \"PO-34926\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"7\", \"unit_price\": \"90\", \"total_price\": \"630\"}, {\"sr_no\": \"2\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"7\", \"unit_price\": \"150\", \"total_price\": \"1050\"}, {\"sr_no\": \"3\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"13\", \"unit_price\": \"225\", \"total_price\": \"2925\"}, {\"sr_no\": \"4\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"2\", \"unit_price\": \"15\", \"total_price\": \"30\"}], \"summary\": {\"total_quantity\": \"29\", \"sub_total\": \"4635\", \"tax\": \"125\", \"freight\": \"300\", \"grand_total\": \"5060\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"}
23
+ {"file_name": "package_00123.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00123\", \"order_date\": \"2026-01-30\", \"sales_order_number\": \"524463\", \"po_number\": \"PO-63623\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"12\", \"unit_price\": \"225\", \"total_price\": \"2700\"}, {\"sr_no\": \"2\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"18\", \"unit_price\": \"175\", \"total_price\": \"3150\"}, {\"sr_no\": \"3\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"19\", \"unit_price\": \"40\", \"total_price\": \"760\"}, {\"sr_no\": \"4\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"7\", \"unit_price\": \"250\", \"total_price\": \"1750\"}, {\"sr_no\": \"5\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"7\", \"unit_price\": \"225\", \"total_price\": \"1575\"}], \"summary\": {\"total_quantity\": \"63\", \"sub_total\": \"9935\", \"tax\": \"125\", \"freight\": \"250\", \"grand_total\": \"10310\"}, \"notes\": \"Priority delivery requested\"}}}"}
24
+ {"file_name": "package_00124.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Northline Supplies\", \"address\": \"7455 Drew Court, White City, KS 66872\", \"phone_number\": \"+91-88390-36062\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00124\", \"order_date\": \"2026-01-24\", \"sales_order_number\": \"552547\", \"po_number\": \"PO-54167\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"1\", \"unit_price\": \"225\", \"total_price\": \"225\"}, {\"sr_no\": \"2\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"8\", \"unit_price\": \"200\", \"total_price\": \"1600\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"18\", \"unit_price\": \"15\", \"total_price\": \"270\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"16\", \"unit_price\": \"60\", \"total_price\": \"960\"}, {\"sr_no\": \"5\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"16\", \"unit_price\": \"125\", \"total_price\": \"2000\"}, {\"sr_no\": \"6\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"20\", \"unit_price\": \"25\", \"total_price\": \"500\"}, {\"sr_no\": \"7\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"3\", \"unit_price\": \"10\", \"total_price\": \"30\"}, {\"sr_no\": \"8\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"11\", \"unit_price\": \"30\", \"total_price\": \"330\"}], \"summary\": {\"total_quantity\": \"93\", \"sub_total\": \"5915\", \"tax\": \"150\", \"freight\": \"75\", \"grand_total\": \"6140\"}, \"notes\": \"Shipment can be split by item line\"}}}"}
25
+ {"file_name": "package_00125.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00125\", \"order_date\": \"2026-10-17\", \"sales_order_number\": \"514209\", \"po_number\": \"PO-59561\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"250\", \"total_price\": \"4500\"}, {\"sr_no\": \"2\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"18\", \"unit_price\": \"15\", \"total_price\": \"270\"}, {\"sr_no\": \"3\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"1\", \"unit_price\": \"100\", \"total_price\": \"100\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"10\", \"unit_price\": \"60\", \"total_price\": \"600\"}, {\"sr_no\": \"5\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"4\", \"unit_price\": \"15\", \"total_price\": \"60\"}, {\"sr_no\": \"6\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"13\", \"unit_price\": \"50\", \"total_price\": \"650\"}, {\"sr_no\": \"7\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"18\", \"unit_price\": \"25\", \"total_price\": \"450\"}], \"summary\": {\"total_quantity\": \"82\", \"sub_total\": \"6630\", \"tax\": \"200\", \"freight\": \"200\", \"grand_total\": \"7030\"}, \"notes\": \"Partial shipment allowed\"}}}"}
26
+ {"file_name": "package_00126.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00126\", \"order_date\": \"2026-01-19\", \"sales_order_number\": \"521776\", \"po_number\": \"PO-49003\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"19\", \"unit_price\": \"10\", \"total_price\": \"190\"}, {\"sr_no\": \"2\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"18\", \"unit_price\": \"50\", \"total_price\": \"900\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"5\", \"unit_price\": \"30\", \"total_price\": \"150\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"20\", \"unit_price\": \"50\", \"total_price\": \"1000\"}, {\"sr_no\": \"5\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"19\", \"unit_price\": \"225\", \"total_price\": \"4275\"}, {\"sr_no\": \"6\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"11\", \"unit_price\": \"50\", \"total_price\": \"550\"}, {\"sr_no\": \"7\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"14\", \"unit_price\": \"50\", \"total_price\": \"700\"}], \"summary\": {\"total_quantity\": \"106\", \"sub_total\": \"7765\", \"tax\": \"200\", \"freight\": \"75\", \"grand_total\": \"8040\"}, \"notes\": \"Handle cartons with care\"}}}"}
27
+ {"file_name": "package_00127.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00127\", \"order_date\": \"2026-08-11\", \"sales_order_number\": \"556258\", \"po_number\": \"PO-50711\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"3\", \"unit_price\": \"100\", \"total_price\": \"300\"}, {\"sr_no\": \"2\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"12\", \"unit_price\": \"12\", \"total_price\": \"144\"}, {\"sr_no\": \"3\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"12\", \"unit_price\": \"60\", \"total_price\": \"720\"}, {\"sr_no\": \"4\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"16\", \"unit_price\": \"15\", \"total_price\": \"240\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"13\", \"unit_price\": \"175\", \"total_price\": \"2275\"}, {\"sr_no\": \"6\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"8\", \"unit_price\": \"100\", \"total_price\": \"800\"}, {\"sr_no\": \"7\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"2\", \"unit_price\": \"175\", \"total_price\": \"350\"}], \"summary\": {\"total_quantity\": \"66\", \"sub_total\": \"4829\", \"tax\": \"50\", \"freight\": \"300\", \"grand_total\": \"5179\"}, \"notes\": \"Keep goods dry during transit\"}}}"}
28
+ {"file_name": "package_00128.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00128\", \"order_date\": \"2026-06-28\", \"sales_order_number\": \"505355\", \"po_number\": \"PO-49890\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"20\", \"unit_price\": \"30\", \"total_price\": \"600\"}, {\"sr_no\": \"2\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"4\", \"unit_price\": \"12\", \"total_price\": \"48\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"12\", \"unit_price\": \"175\", \"total_price\": \"2100\"}, {\"sr_no\": \"4\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"17\", \"unit_price\": \"60\", \"total_price\": \"1020\"}, {\"sr_no\": \"5\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"2\", \"unit_price\": \"50\", \"total_price\": \"100\"}, {\"sr_no\": \"6\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"2\", \"unit_price\": \"50\", \"total_price\": \"100\"}, {\"sr_no\": \"7\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"20\", \"unit_price\": \"50\", \"total_price\": \"1000\"}, {\"sr_no\": \"8\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"7\", \"unit_price\": \"100\", \"total_price\": \"700\"}], \"summary\": {\"total_quantity\": \"84\", \"sub_total\": \"5668\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"5743\"}, \"notes\": \"Handle cartons with care\"}}}"}
29
+ {"file_name": "package_00129.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Apex Cartons Ltd\", \"address\": \"4799 Highland View Drive, Sacramento, CA 95815\", \"phone_number\": \"+91-78778-81186\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00129\", \"order_date\": \"2026-07-14\", \"sales_order_number\": \"513330\", \"po_number\": \"PO-42973\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"1\", \"unit_price\": \"30\", \"total_price\": \"30\"}, {\"sr_no\": \"2\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"8\", \"unit_price\": \"20\", \"total_price\": \"160\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"20\", \"unit_price\": \"30\", \"total_price\": \"600\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"7\", \"unit_price\": \"175\", \"total_price\": \"1225\"}, {\"sr_no\": \"5\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"19\", \"unit_price\": \"250\", \"total_price\": \"4750\"}, {\"sr_no\": \"6\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"13\", \"unit_price\": \"75\", \"total_price\": \"975\"}], \"summary\": {\"total_quantity\": \"68\", \"sub_total\": \"7740\", \"tax\": \"0\", \"freight\": \"250\", \"grand_total\": \"7990\"}, \"notes\": \"Verify carton count before dispatch\"}}}"}
30
+ {"file_name": "package_00130.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"UrbanCarton Supply\", \"address\": \"91 Sector 44 Road, Gurugram, HR 122003\", \"phone_number\": \"+91-98122-55340\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00130\", \"order_date\": \"2026-01-20\", \"sales_order_number\": \"599229\", \"po_number\": \"PO-39421\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"12\", \"unit_price\": \"200\", \"total_price\": \"2400\"}, {\"sr_no\": \"2\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"1\", \"unit_price\": \"25\", \"total_price\": \"25\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"3\", \"unit_price\": \"60\", \"total_price\": \"180\"}, {\"sr_no\": \"4\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"18\", \"unit_price\": \"25\", \"total_price\": \"450\"}, {\"sr_no\": \"5\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"10\", \"unit_price\": \"100\", \"total_price\": \"1000\"}], \"summary\": {\"total_quantity\": \"44\", \"sub_total\": \"4055\", \"tax\": \"0\", \"freight\": \"50\", \"grand_total\": \"4105\"}, \"notes\": \"Partial shipment allowed\"}}}"}
31
+ {"file_name": "package_00131.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00131\", \"order_date\": \"2026-09-26\", \"sales_order_number\": \"563898\", \"po_number\": \"PO-34845\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"17\", \"unit_price\": \"90\", \"total_price\": \"1530\"}, {\"sr_no\": \"2\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"3\", \"unit_price\": \"12\", \"total_price\": \"36\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"15\", \"unit_price\": \"150\", \"total_price\": \"2250\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"11\", \"unit_price\": \"75\", \"total_price\": \"825\"}, {\"sr_no\": \"5\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"9\", \"unit_price\": \"30\", \"total_price\": \"270\"}, {\"sr_no\": \"6\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"3\", \"unit_price\": \"30\", \"total_price\": \"90\"}, {\"sr_no\": \"7\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"17\", \"unit_price\": \"150\", \"total_price\": \"2550\"}, {\"sr_no\": \"8\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"18\", \"unit_price\": \"125\", \"total_price\": \"2250\"}], \"summary\": {\"total_quantity\": \"93\", \"sub_total\": \"9801\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"9901\"}, \"notes\": \"Customer signature required\"}}}"}
32
+ {"file_name": "package_00132.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00132\", \"order_date\": \"2026-12-08\", \"sales_order_number\": \"504720\", \"po_number\": \"PO-38321\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"18\", \"unit_price\": \"30\", \"total_price\": \"540\"}, {\"sr_no\": \"2\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"17\", \"unit_price\": \"60\", \"total_price\": \"1020\"}, {\"sr_no\": \"3\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"14\", \"unit_price\": \"75\", \"total_price\": \"1050\"}, {\"sr_no\": \"4\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"3\", \"unit_price\": \"60\", \"total_price\": \"180\"}, {\"sr_no\": \"5\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"13\", \"unit_price\": \"100\", \"total_price\": \"1300\"}], \"summary\": {\"total_quantity\": \"65\", \"sub_total\": \"4090\", \"tax\": \"0\", \"freight\": \"200\", \"grand_total\": \"4290\"}, \"notes\": \"Priority delivery requested\"}}}"}
33
+ {"file_name": "package_00133.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Crestline Box Works\", \"address\": \"8800 Valley Crest Road, Austin, TX 78745\", \"phone_number\": \"+1-512-555-0176\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00133\", \"order_date\": \"2026-07-11\", \"sales_order_number\": \"556522\", \"po_number\": \"PO-60067\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"18\", \"unit_price\": \"150\", \"total_price\": \"2700\"}, {\"sr_no\": \"2\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"9\", \"unit_price\": \"90\", \"total_price\": \"810\"}, {\"sr_no\": \"3\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"4\", \"unit_price\": \"60\", \"total_price\": \"240\"}, {\"sr_no\": \"4\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"17\", \"unit_price\": \"20\", \"total_price\": \"340\"}, {\"sr_no\": \"5\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"15\", \"unit_price\": \"75\", \"total_price\": \"1125\"}], \"summary\": {\"total_quantity\": \"63\", \"sub_total\": \"5215\", \"tax\": \"0\", \"freight\": \"50\", \"grand_total\": \"5265\"}, \"notes\": \"Keep goods dry during transit\"}}}"}
34
+ {"file_name": "package_00134.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00134\", \"order_date\": \"2026-02-17\", \"sales_order_number\": \"535143\", \"po_number\": \"PO-34935\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"11\", \"unit_price\": \"225\", \"total_price\": \"2475\"}, {\"sr_no\": \"2\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"18\", \"unit_price\": \"10\", \"total_price\": \"180\"}, {\"sr_no\": \"3\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"3\", \"unit_price\": \"15\", \"total_price\": \"45\"}, {\"sr_no\": \"4\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"4\", \"unit_price\": \"175\", \"total_price\": \"700\"}, {\"sr_no\": \"5\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"6\", \"unit_price\": \"25\", \"total_price\": \"150\"}, {\"sr_no\": \"6\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"15\", \"unit_price\": \"12\", \"total_price\": \"180\"}, {\"sr_no\": \"7\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"10\", \"unit_price\": \"10\", \"total_price\": \"100\"}], \"summary\": {\"total_quantity\": \"67\", \"sub_total\": \"3830\", \"tax\": \"125\", \"freight\": \"300\", \"grand_total\": \"4255\"}, \"notes\": \"Do not stack above five cartons\"}}}"}
35
+ {"file_name": "package_00135.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Summit Packaging Hub\", \"address\": \"1700 Market Street, Denver, CO 80202\", \"phone_number\": \"+1-720-555-0188\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00135\", \"order_date\": \"2026-06-09\", \"sales_order_number\": \"569721\", \"po_number\": \"PO-38753\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"1\", \"unit_price\": \"30\", \"total_price\": \"30\"}, {\"sr_no\": \"2\", \"item_description\": \"Warranty Card\", \"sku\": \"WAR-110\", \"quantity\": \"20\", \"unit_price\": \"100\", \"total_price\": \"2000\"}, {\"sr_no\": \"3\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"16\", \"unit_price\": \"50\", \"total_price\": \"800\"}, {\"sr_no\": \"4\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"3\", \"unit_price\": \"15\", \"total_price\": \"45\"}, {\"sr_no\": \"5\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"6\", \"unit_price\": \"30\", \"total_price\": \"180\"}, {\"sr_no\": \"6\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"7\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"1\", \"unit_price\": \"75\", \"total_price\": \"75\"}], \"summary\": {\"total_quantity\": \"50\", \"sub_total\": \"3505\", \"tax\": \"50\", \"freight\": \"50\", \"grand_total\": \"3605\"}, \"notes\": \"Verify carton count before dispatch\"}}}"}
36
+ {"file_name": "package_00136.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"GreenLeaf Cartons\", \"address\": \"58 Rosewood Avenue, Portland, OR 97205\", \"phone_number\": \"+1-503-555-0141\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00136\", \"order_date\": \"2026-03-30\", \"sales_order_number\": \"569631\", \"po_number\": \"PO-63403\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"15\", \"unit_price\": \"25\", \"total_price\": \"375\"}, {\"sr_no\": \"2\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"15\", \"unit_price\": \"150\", \"total_price\": \"2250\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"10\", \"unit_price\": \"12\", \"total_price\": \"120\"}, {\"sr_no\": \"4\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"17\", \"unit_price\": \"90\", \"total_price\": \"1530\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"15\", \"unit_price\": \"12\", \"total_price\": \"180\"}, {\"sr_no\": \"6\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"17\", \"unit_price\": \"10\", \"total_price\": \"170\"}, {\"sr_no\": \"7\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"15\", \"unit_price\": \"225\", \"total_price\": \"3375\"}], \"summary\": {\"total_quantity\": \"104\", \"sub_total\": \"8000\", \"tax\": \"50\", \"freight\": \"125\", \"grand_total\": \"8175\"}, \"notes\": \"Use dock entrance for unloading\"}}}"}
37
+ {"file_name": "package_00137.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"MetroWrap Logistics\", \"address\": \"1024 Harbor Street, Newark, NJ 07105\", \"phone_number\": \"+1-973-555-0182\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00137\", \"order_date\": \"2026-09-26\", \"sales_order_number\": \"555134\", \"po_number\": \"PO-44228\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"1\", \"unit_price\": \"125\", \"total_price\": \"125\"}, {\"sr_no\": \"2\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"10\", \"unit_price\": \"125\", \"total_price\": \"1250\"}, {\"sr_no\": \"3\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"7\", \"unit_price\": \"25\", \"total_price\": \"175\"}, {\"sr_no\": \"4\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"19\", \"unit_price\": \"60\", \"total_price\": \"1140\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"20\", \"unit_price\": \"200\", \"total_price\": \"4000\"}], \"summary\": {\"total_quantity\": \"57\", \"sub_total\": \"6690\", \"tax\": \"125\", \"freight\": \"100\", \"grand_total\": \"6915\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"}
38
+ {"file_name": "package_00138.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00138\", \"order_date\": \"2026-10-13\", \"sales_order_number\": \"560747\", \"po_number\": \"PO-51932\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"14\", \"unit_price\": \"75\", \"total_price\": \"1050\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"4\", \"unit_price\": \"20\", \"total_price\": \"80\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"10\", \"unit_price\": \"150\", \"total_price\": \"1500\"}, {\"sr_no\": \"4\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"17\", \"unit_price\": \"100\", \"total_price\": \"1700\"}, {\"sr_no\": \"5\", \"item_description\": \"Gift Wrap Sheet\", \"sku\": \"GFT-812\", \"quantity\": \"5\", \"unit_price\": \"100\", \"total_price\": \"500\"}, {\"sr_no\": \"6\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"6\", \"unit_price\": \"12\", \"total_price\": \"72\"}, {\"sr_no\": \"7\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"1\", \"unit_price\": \"100\", \"total_price\": \"100\"}, {\"sr_no\": \"8\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"7\", \"unit_price\": \"12\", \"total_price\": \"84\"}], \"summary\": {\"total_quantity\": \"64\", \"sub_total\": \"5086\", \"tax\": \"200\", \"freight\": \"125\", \"grand_total\": \"5411\"}, \"notes\": \"Verify carton count before dispatch\"}}}"}
39
+ {"file_name": "package_00139.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Central Furnishing Co\", \"bill_to_address\": \"100 Broad Avenue, Atlanta, GA 30303\", \"ship_to_name\": \"Central Furnishing Co\", \"ship_to_address\": \"2300 Freight Drive, Marietta, GA 30060\"}, \"document\": {\"package_number\": \"PKG00139\", \"order_date\": \"2026-10-05\", \"sales_order_number\": \"589503\", \"po_number\": \"PO-38880\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"2\", \"unit_price\": \"90\", \"total_price\": \"180\"}, {\"sr_no\": \"2\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"8\", \"unit_price\": \"100\", \"total_price\": \"800\"}, {\"sr_no\": \"3\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"5\", \"unit_price\": \"175\", \"total_price\": \"875\"}, {\"sr_no\": \"4\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"11\", \"unit_price\": \"40\", \"total_price\": \"440\"}, {\"sr_no\": \"5\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"4\", \"unit_price\": \"100\", \"total_price\": \"400\"}, {\"sr_no\": \"6\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"11\", \"unit_price\": \"75\", \"total_price\": \"825\"}, {\"sr_no\": \"7\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"12\", \"unit_price\": \"175\", \"total_price\": \"2100\"}], \"summary\": {\"total_quantity\": \"53\", \"sub_total\": \"5620\", \"tax\": \"150\", \"freight\": \"100\", \"grand_total\": \"5870\"}, \"notes\": \"Deliver during business hours\"}}}"}
40
+ {"file_name": "package_00140.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"OakBridge Market\", \"bill_to_address\": \"15 Elm Street, Boston, MA 02108\", \"ship_to_name\": \"OakBridge Market\", \"ship_to_address\": \"112 Dock Road, Everett, MA 02149\"}, \"document\": {\"package_number\": \"PKG00140\", \"order_date\": \"2026-11-02\", \"sales_order_number\": \"575155\", \"po_number\": \"PO-56879\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Packing Tape\", \"sku\": \"TAPE-338\", \"quantity\": \"14\", \"unit_price\": \"125\", \"total_price\": \"1750\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"18\", \"unit_price\": \"250\", \"total_price\": \"4500\"}, {\"sr_no\": \"3\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"9\", \"unit_price\": \"15\", \"total_price\": \"135\"}], \"summary\": {\"total_quantity\": \"41\", \"sub_total\": \"6385\", \"tax\": \"200\", \"freight\": \"0\", \"grand_total\": \"6585\"}, \"notes\": \"Deliver during business hours\"}}}"}
41
+ {"file_name": "package_00141.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00141\", \"order_date\": \"2026-10-31\", \"sales_order_number\": \"568255\", \"po_number\": \"PO-50284\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"18\", \"unit_price\": \"125\", \"total_price\": \"2250\"}, {\"sr_no\": \"2\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"4\", \"unit_price\": \"15\", \"total_price\": \"60\"}, {\"sr_no\": \"3\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"14\", \"unit_price\": \"15\", \"total_price\": \"210\"}, {\"sr_no\": \"4\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"6\", \"unit_price\": \"50\", \"total_price\": \"300\"}, {\"sr_no\": \"5\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"16\", \"unit_price\": \"175\", \"total_price\": \"2800\"}, {\"sr_no\": \"6\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"3\", \"unit_price\": \"12\", \"total_price\": \"36\"}, {\"sr_no\": \"7\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"2\", \"unit_price\": \"10\", \"total_price\": \"20\"}], \"summary\": {\"total_quantity\": \"63\", \"sub_total\": \"5676\", \"tax\": \"0\", \"freight\": \"100\", \"grand_total\": \"5776\"}, \"notes\": \"Do not stack above five cartons\"}}}"}
42
+ {"file_name": "package_00142.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00142\", \"order_date\": \"2026-11-01\", \"sales_order_number\": \"505586\", \"po_number\": \"PO-66108\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Invoice Copy\", \"sku\": \"INV-COPY\", \"quantity\": \"6\", \"unit_price\": \"200\", \"total_price\": \"1200\"}, {\"sr_no\": \"2\", \"item_description\": \"Shipping Label Pack\", \"sku\": \"LBL-450\", \"quantity\": \"6\", \"unit_price\": \"150\", \"total_price\": \"900\"}, {\"sr_no\": \"3\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"19\", \"unit_price\": \"50\", \"total_price\": \"950\"}], \"summary\": {\"total_quantity\": \"31\", \"sub_total\": \"3050\", \"tax\": \"200\", \"freight\": \"300\", \"grand_total\": \"3550\"}, \"notes\": \"Do not stack above five cartons\"}}}"}
43
+ {"file_name": "package_00143.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"BluePeak Packaging Co\", \"address\": \"214 Pine Ridge Lane, Boulder, CO 80302\", \"phone_number\": \"+1-303-555-0194\"}, \"buyer\": {\"bill_to_name\": \"Nova General Stores\", \"bill_to_address\": \"6 MG Road, Bengaluru, KA 560001\", \"ship_to_name\": \"Nova General Stores\", \"ship_to_address\": \"42 Whitefield Main Road, Bengaluru, KA 560066\"}, \"document\": {\"package_number\": \"PKG00143\", \"order_date\": \"2026-05-02\", \"sales_order_number\": \"566256\", \"po_number\": \"PO-61873\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"10\", \"unit_price\": \"25\", \"total_price\": \"250\"}, {\"sr_no\": \"2\", \"item_description\": \"Plastic Sleeve\", \"sku\": \"SLV-890\", \"quantity\": \"13\", \"unit_price\": \"250\", \"total_price\": \"3250\"}, {\"sr_no\": \"3\", \"item_description\": \"Corner Protector\", \"sku\": \"CRN-019\", \"quantity\": \"11\", \"unit_price\": \"175\", \"total_price\": \"1925\"}, {\"sr_no\": \"4\", \"item_description\": \"Security Seal Strip\", \"sku\": \"SEC-401\", \"quantity\": \"15\", \"unit_price\": \"125\", \"total_price\": \"1875\"}, {\"sr_no\": \"5\", \"item_description\": \"Printed Carton\", \"sku\": \"CRT-670\", \"quantity\": \"10\", \"unit_price\": \"60\", \"total_price\": \"600\"}, {\"sr_no\": \"6\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"6\", \"unit_price\": \"25\", \"total_price\": \"150\"}, {\"sr_no\": \"7\", \"item_description\": \"Ad Design\", \"sku\": \"AD-DES-003\", \"quantity\": \"7\", \"unit_price\": \"150\", \"total_price\": \"1050\"}, {\"sr_no\": \"8\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"7\", \"unit_price\": \"125\", \"total_price\": \"875\"}], \"summary\": {\"total_quantity\": \"79\", \"sub_total\": \"9975\", \"tax\": \"150\", \"freight\": \"150\", \"grand_total\": \"10275\"}, \"notes\": \"Contact buyer before final delivery\"}}}"}
44
+ {"file_name": "package_00144.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Orbit Commerce Pvt Ltd\", \"bill_to_address\": \"404 SG Highway, Ahmedabad, GJ 380015\", \"ship_to_name\": \"Orbit Commerce Pvt Ltd\", \"ship_to_address\": \"22 Narol Industrial Area, Ahmedabad, GJ 382405\"}, \"document\": {\"package_number\": \"PKG00144\", \"order_date\": \"2026-11-05\", \"sales_order_number\": \"533006\", \"po_number\": \"PO-38331\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"3\", \"unit_price\": \"125\", \"total_price\": \"375\"}, {\"sr_no\": \"2\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"19\", \"unit_price\": \"40\", \"total_price\": \"760\"}, {\"sr_no\": \"3\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"2\", \"unit_price\": \"10\", \"total_price\": \"20\"}, {\"sr_no\": \"4\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"1\", \"unit_price\": \"40\", \"total_price\": \"40\"}], \"summary\": {\"total_quantity\": \"25\", \"sub_total\": \"1195\", \"tax\": \"125\", \"freight\": \"150\", \"grand_total\": \"1470\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"}
45
+ {"file_name": "package_00145.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Sunrise Stationers\", \"bill_to_address\": \"55 Ashok Nagar, Jaipur, RJ 302001\", \"ship_to_name\": \"Sunrise Stationers\", \"ship_to_address\": \"9 Transport Nagar, Jaipur, RJ 302003\"}, \"document\": {\"package_number\": \"PKG00145\", \"order_date\": \"2026-10-18\", \"sales_order_number\": \"567280\", \"po_number\": \"PO-63767\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"13\", \"unit_price\": \"10\", \"total_price\": \"130\"}, {\"sr_no\": \"2\", \"item_description\": \"Mailer Box Small\", \"sku\": \"MBOX-SM\", \"quantity\": \"2\", \"unit_price\": \"150\", \"total_price\": \"300\"}, {\"sr_no\": \"3\", \"item_description\": \"Hang Tag Bundle\", \"sku\": \"TAG-149\", \"quantity\": \"5\", \"unit_price\": \"225\", \"total_price\": \"1125\"}, {\"sr_no\": \"4\", \"item_description\": \"Pallet Label Card\", \"sku\": \"PAL-318\", \"quantity\": \"16\", \"unit_price\": \"60\", \"total_price\": \"960\"}, {\"sr_no\": \"5\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"1\", \"unit_price\": \"40\", \"total_price\": \"40\"}, {\"sr_no\": \"6\", \"item_description\": \"Kraft Paper Roll\", \"sku\": \"KRAFT-221\", \"quantity\": \"14\", \"unit_price\": \"225\", \"total_price\": \"3150\"}, {\"sr_no\": \"7\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"10\", \"unit_price\": \"75\", \"total_price\": \"750\"}, {\"sr_no\": \"8\", \"item_description\": \"Custom Poly Mailer\", \"sku\": \"POLY-620\", \"quantity\": \"17\", \"unit_price\": \"12\", \"total_price\": \"204\"}], \"summary\": {\"total_quantity\": \"78\", \"sub_total\": \"6659\", \"tax\": \"125\", \"freight\": \"50\", \"grand_total\": \"6834\"}, \"notes\": \"Attach invoice copy to shipment\"}}}"}
46
+ {"file_name": "package_00146.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"Pacific Label House\", \"address\": \"311 Ocean Park Blvd, San Diego, CA 92109\", \"phone_number\": \"+1-619-555-0154\"}, \"buyer\": {\"bill_to_name\": \"Mason Distribution\", \"bill_to_address\": \"89 Foundry Street, Detroit, MI 48207\", \"ship_to_name\": \"Mason Distribution\", \"ship_to_address\": \"44 Logistics Park, Warren, MI 48089\"}, \"document\": {\"package_number\": \"PKG00146\", \"order_date\": \"2026-10-02\", \"sales_order_number\": \"562680\", \"po_number\": \"PO-68259\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"11\", \"unit_price\": \"75\", \"total_price\": \"825\"}, {\"sr_no\": \"2\", \"item_description\": \"Return Label Sheet\", \"sku\": \"RTN-509\", \"quantity\": \"17\", \"unit_price\": \"50\", \"total_price\": \"850\"}, {\"sr_no\": \"3\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"11\", \"unit_price\": \"10\", \"total_price\": \"110\"}], \"summary\": {\"total_quantity\": \"39\", \"sub_total\": \"1785\", \"tax\": \"50\", \"freight\": \"150\", \"grand_total\": \"1985\"}, \"notes\": \"Partial shipment allowed\"}}}"}
47
+ {"file_name": "package_00147.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Vertex Home Mart\", \"bill_to_address\": \"312 King Street, Seattle, WA 98104\", \"ship_to_name\": \"Vertex Home Mart\", \"ship_to_address\": \"810 Depot Road, Tacoma, WA 98421\"}, \"document\": {\"package_number\": \"PKG00147\", \"order_date\": \"2026-11-21\", \"sales_order_number\": \"566418\", \"po_number\": \"PO-45283\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Logo Sticker Pack\", \"sku\": \"LOGO-754\", \"quantity\": \"6\", \"unit_price\": \"12\", \"total_price\": \"72\"}, {\"sr_no\": \"2\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"9\", \"unit_price\": \"10\", \"total_price\": \"90\"}, {\"sr_no\": \"3\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"3\", \"unit_price\": \"175\", \"total_price\": \"525\"}, {\"sr_no\": \"4\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"18\", \"unit_price\": \"20\", \"total_price\": \"360\"}, {\"sr_no\": \"5\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"18\", \"unit_price\": \"10\", \"total_price\": \"180\"}, {\"sr_no\": \"6\", \"item_description\": \"Documentation Pouch\", \"sku\": \"DOC-872\", \"quantity\": \"1\", \"unit_price\": \"100\", \"total_price\": \"100\"}, {\"sr_no\": \"7\", \"item_description\": \"Fragile Label Set\", \"sku\": \"FRG-112\", \"quantity\": \"10\", \"unit_price\": \"125\", \"total_price\": \"1250\"}, {\"sr_no\": \"8\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"11\", \"unit_price\": \"225\", \"total_price\": \"2475\"}], \"summary\": {\"total_quantity\": \"76\", \"sub_total\": \"5052\", \"tax\": \"0\", \"freight\": \"300\", \"grand_total\": \"5352\"}, \"notes\": \"Deliver during business hours\"}}}"}
48
+ {"file_name": "package_00148.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"EverReady Packaging\", \"address\": \"301 Lakeside Drive, Madison, WI 53703\", \"phone_number\": \"+1-608-555-0139\"}, \"buyer\": {\"bill_to_name\": \"Canyon Craft Supplies\", \"bill_to_address\": \"460 Mesa Drive, Phoenix, AZ 85004\", \"ship_to_name\": \"Canyon Craft Supplies\", \"ship_to_address\": \"77 South Yard Way, Tempe, AZ 85281\"}, \"document\": {\"package_number\": \"PKG00148\", \"order_date\": \"2026-04-20\", \"sales_order_number\": \"545460\", \"po_number\": \"PO-43631\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"5\", \"unit_price\": \"125\", \"total_price\": \"625\"}, {\"sr_no\": \"2\", \"item_description\": \"Thermal Label Roll\", \"sku\": \"THR-612\", \"quantity\": \"12\", \"unit_price\": \"75\", \"total_price\": \"900\"}, {\"sr_no\": \"3\", \"item_description\": \"Packing Slip Copy\", \"sku\": \"PSC-391\", \"quantity\": \"18\", \"unit_price\": \"50\", \"total_price\": \"900\"}, {\"sr_no\": \"4\", \"item_description\": \"Product Manual\", \"sku\": \"MAN-780\", \"quantity\": \"13\", \"unit_price\": \"20\", \"total_price\": \"260\"}, {\"sr_no\": \"5\", \"item_description\": \"Moisture Guard Bag\", \"sku\": \"MGB-309\", \"quantity\": \"12\", \"unit_price\": \"100\", \"total_price\": \"1200\"}], \"summary\": {\"total_quantity\": \"60\", \"sub_total\": \"3885\", \"tax\": \"0\", \"freight\": \"75\", \"grand_total\": \"3960\"}, \"notes\": \"Partial shipment allowed\"}}}"}
49
+ {"file_name": "package_00149.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"PrimePack Traders\", \"address\": \"27 Industrial Estate, Pune, MH 411045\", \"phone_number\": \"+91-98810-44231\"}, \"buyer\": {\"bill_to_name\": \"Jeff Ritchie Stores\", \"bill_to_address\": \"980 Industrial Road, Hyderabad, TS 500081\", \"ship_to_name\": \"Jeff Ritchie Stores\", \"ship_to_address\": \"7455 Drew Court, White City, KS 66872\"}, \"document\": {\"package_number\": \"PKG00149\", \"order_date\": \"2026-07-31\", \"sales_order_number\": \"524739\", \"po_number\": \"PO-48658\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Corrugated Divider\", \"sku\": \"DIV-731\", \"quantity\": \"4\", \"unit_price\": \"75\", \"total_price\": \"300\"}, {\"sr_no\": \"2\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"14\", \"unit_price\": \"20\", \"total_price\": \"280\"}, {\"sr_no\": \"3\", \"item_description\": \"Instruction Leaflet\", \"sku\": \"LEAF-557\", \"quantity\": \"11\", \"unit_price\": \"75\", \"total_price\": \"825\"}], \"summary\": {\"total_quantity\": \"29\", \"sub_total\": \"1405\", \"tax\": \"0\", \"freight\": \"50\", \"grand_total\": \"1455\"}, \"notes\": \"Shipment can be split by item line\"}}}"}
50
+ {"file_name": "package_00150.png", "ground_truth": "{\"gt_parse\": {\"packaging\": {\"seller\": {\"company_name\": \"SilverBox Enterprises\", \"address\": \"18 Race Course Road, Chennai, TN 600032\", \"phone_number\": \"+91-94444-70981\"}, \"buyer\": {\"bill_to_name\": \"Riverside Retail Group\", \"bill_to_address\": \"72 Market Square, Chennai, TN 600001\", \"ship_to_name\": \"Riverside Retail Group\", \"ship_to_address\": \"18 Park Street, Pune, MH 411001\"}, \"document\": {\"package_number\": \"PKG00150\", \"order_date\": \"2026-08-13\", \"sales_order_number\": \"520683\", \"po_number\": \"PO-42794\"}, \"items\": [{\"sr_no\": \"1\", \"item_description\": \"Foam Insert\", \"sku\": \"FOM-560\", \"quantity\": \"4\", \"unit_price\": \"250\", \"total_price\": \"1000\"}, {\"sr_no\": \"2\", \"item_description\": \"Die Cut Insert\", \"sku\": \"DCI-725\", \"quantity\": \"15\", \"unit_price\": \"20\", \"total_price\": \"300\"}, {\"sr_no\": \"3\", \"item_description\": \"Bubble Wrap Roll\", \"sku\": \"BUB-908\", \"quantity\": \"17\", \"unit_price\": \"10\", \"total_price\": \"170\"}, {\"sr_no\": \"4\", \"item_description\": \"Barcode Sticker Roll\", \"sku\": \"BAR-244\", \"quantity\": \"16\", \"unit_price\": \"10\", \"total_price\": \"160\"}, {\"sr_no\": \"5\", \"item_description\": \"Mailer Box Large\", \"sku\": \"MBOX-LG\", \"quantity\": \"9\", \"unit_price\": \"175\", \"total_price\": \"1575\"}], \"summary\": {\"total_quantity\": \"61\", \"sub_total\": \"3205\", \"tax\": \"150\", \"freight\": \"50\", \"grand_total\": \"3405\"}, \"notes\": \"Handle cartons with care\"}}}"}
test/package_00101.png ADDED

Git LFS Details

  • SHA256: e2898cc6bf72370a1c9f148f2c65d2c1f701320995dcec2f3cd4305529e982d3
  • Pointer size: 130 Bytes
  • Size of remote file: 71.5 kB
test/package_00102.png ADDED

Git LFS Details

  • SHA256: 20c43b16d9fdb7c08d85b8cd95637998b39e12cc3bb2c9bbb7ccf9b3cfa80691
  • Pointer size: 130 Bytes
  • Size of remote file: 73.2 kB
test/package_00103.png ADDED

Git LFS Details

  • SHA256: 80a164165f04e4fe55daa2b117d38381f7e448c3e299eed2ba534e6656570ea3
  • Pointer size: 130 Bytes
  • Size of remote file: 66.3 kB
test/package_00104.png ADDED

Git LFS Details

  • SHA256: a4c023fd1be43dde4d49e7599b11996974089423c848fd2366b9aba37c4b1b07
  • Pointer size: 130 Bytes
  • Size of remote file: 78.6 kB
test/package_00105.png ADDED

Git LFS Details

  • SHA256: b13edbc29ff8f8a4806a3916930da2b6ebed577669a0fe5eac05cf0e562b8f01
  • Pointer size: 130 Bytes
  • Size of remote file: 75.1 kB
test/package_00106.png ADDED

Git LFS Details

  • SHA256: 6738658df6234de51daf3eb92aa004be3d4df2e780684ef20c884bc6dd95b5bd
  • Pointer size: 130 Bytes
  • Size of remote file: 68.2 kB
test/package_00107.png ADDED

Git LFS Details

  • SHA256: 6ab74bd439a74022da8f5c3f45272b3d7ea29ae323aa2038f436cb1e59beec7a
  • Pointer size: 130 Bytes
  • Size of remote file: 65.5 kB
test/package_00108.png ADDED

Git LFS Details

  • SHA256: 763f931df1ff1871fed0c3263b5a0e9dc955126509afdbe704c55882ad85fb7c
  • Pointer size: 130 Bytes
  • Size of remote file: 67.9 kB
test/package_00109.png ADDED

Git LFS Details

  • SHA256: c32dfcec2ddd992e1d0edad9668ff7bf23c197f6318426a872ffa8c491cd8aef
  • Pointer size: 130 Bytes
  • Size of remote file: 75.5 kB
test/package_00110.png ADDED

Git LFS Details

  • SHA256: 79dcf84c0b7aed9dcd25f4c25beac8d041eab1eae15768daa9477334e4b153a2
  • Pointer size: 130 Bytes
  • Size of remote file: 70.5 kB
test/package_00111.png ADDED

Git LFS Details

  • SHA256: a311723dc72cdcba64de35620253a844a332e608ba91f14dbbe1b85ddccea5ea
  • Pointer size: 130 Bytes
  • Size of remote file: 69.1 kB
test/package_00112.png ADDED

Git LFS Details

  • SHA256: 244b0bb47daff45867fdf20b21d03fd992e8faa162427d04672e7b94b111504e
  • Pointer size: 130 Bytes
  • Size of remote file: 73.8 kB
test/package_00113.png ADDED

Git LFS Details

  • SHA256: 707024621cdbd410e54635adb80a65d7128a9273e4756ddd2290c7f107e491f4
  • Pointer size: 130 Bytes
  • Size of remote file: 66.8 kB
test/package_00114.png ADDED

Git LFS Details

  • SHA256: 03d6e7c8462e2a4b0d0da95162e0191bf76d26f29c7d5e8554749c3d9b19bcc8
  • Pointer size: 130 Bytes
  • Size of remote file: 71.3 kB
test/package_00115.png ADDED

Git LFS Details

  • SHA256: 3724fffefe57fbcec9600038ee692712eb888e52e5cc98b5d4be7dc0b167e0b6
  • Pointer size: 130 Bytes
  • Size of remote file: 74.1 kB
test/package_00116.png ADDED

Git LFS Details

  • SHA256: c09b85d5498fc21abb9407f512ca6dfebc9211de16b338471a743adf67a81ee1
  • Pointer size: 130 Bytes
  • Size of remote file: 66.9 kB
test/package_00117.png ADDED

Git LFS Details

  • SHA256: 7d7a8bf0f5710776cbadc732e8743a5a61c1252dc56ea6262385373fed51bb63
  • Pointer size: 130 Bytes
  • Size of remote file: 67.8 kB
test/package_00118.png ADDED

Git LFS Details

  • SHA256: 18004ddcecd5c2e48d394fd306de3ccafa901a122eeb6c13bbb8d6a62ab666c4
  • Pointer size: 130 Bytes
  • Size of remote file: 73.3 kB
test/package_00119.png ADDED

Git LFS Details

  • SHA256: ddc78374184f37e0dc21300cbc2e16dafa9dfe1d9a2201175350811f731e6108
  • Pointer size: 130 Bytes
  • Size of remote file: 65 kB
test/package_00120.png ADDED

Git LFS Details

  • SHA256: 5be11f11a69aa0a005edf9f15decdf2274833b9f1e21ac7fd1ce284e4c61d310
  • Pointer size: 130 Bytes
  • Size of remote file: 70.3 kB
test/package_00121.png ADDED

Git LFS Details

  • SHA256: 9e0d41cc23c948ef56f556c4add934256dcaacddb523577adf46c18c64f29dea
  • Pointer size: 130 Bytes
  • Size of remote file: 62.5 kB
test/package_00122.png ADDED

Git LFS Details

  • SHA256: 43d6e8c0b250e6b493649accee71683139564893e487cb5d075511b2b7ba78d9
  • Pointer size: 130 Bytes
  • Size of remote file: 69.2 kB
test/package_00123.png ADDED

Git LFS Details

  • SHA256: adc056ab763d468f4e9a01484831b379e5345c56b4d964b5da742f57d0c30e0f
  • Pointer size: 130 Bytes
  • Size of remote file: 70.6 kB
test/package_00124.png ADDED

Git LFS Details

  • SHA256: b5c263ff42e37672be63b30768a809a6485d6e6acbf86e04195904f78f127be8
  • Pointer size: 130 Bytes
  • Size of remote file: 71.9 kB
test/package_00125.png ADDED

Git LFS Details

  • SHA256: 53b6bd71815dd7387978c7ad746a89e996b9e45327b927e6709f76cad24bb58d
  • Pointer size: 130 Bytes
  • Size of remote file: 70.9 kB
test/package_00126.png ADDED

Git LFS Details

  • SHA256: 7c1fd90d0261cd937597b812954185ee75dd3ac4e4e317634298a965309523d7
  • Pointer size: 130 Bytes
  • Size of remote file: 75.6 kB
test/package_00127.png ADDED

Git LFS Details

  • SHA256: 961e8f15ae8df40f6b372bcb91cdfb71109afd326bb543807a29178b69125491
  • Pointer size: 130 Bytes
  • Size of remote file: 75.8 kB
test/package_00128.png ADDED

Git LFS Details

  • SHA256: 16b3546a12ea1dd9991c332cb3b93cf4f90c3eb8aed16ddd654cc2df13b00cd7
  • Pointer size: 130 Bytes
  • Size of remote file: 78.1 kB
test/package_00129.png ADDED

Git LFS Details

  • SHA256: 353c57866dd8aa96def61b52104adac0a70ac8471700d6833f7bdc15afa19141
  • Pointer size: 130 Bytes
  • Size of remote file: 74.3 kB
test/package_00130.png ADDED

Git LFS Details

  • SHA256: 2b38e1da59d2cdc6988217aa79ece2fdeda5a0c238ef1dd0bd2405c1d8a3880c
  • Pointer size: 130 Bytes
  • Size of remote file: 71.3 kB
test/package_00131.png ADDED

Git LFS Details

  • SHA256: 9de238c224e2f7f404716c8b17341d635cd1a43c5474e26412935ca00d76b4a9
  • Pointer size: 130 Bytes
  • Size of remote file: 78.5 kB
test/package_00132.png ADDED

Git LFS Details

  • SHA256: 0a8fe6b8a2bbe1e500957d8a417a8e41250956e4b9dec4e2bdb79a166ff3deba
  • Pointer size: 130 Bytes
  • Size of remote file: 69.5 kB
test/package_00133.png ADDED

Git LFS Details

  • SHA256: 111c47458c2f93a14f6af16c94b7a7bae4e124b10447b47217274129fb4c9009
  • Pointer size: 130 Bytes
  • Size of remote file: 66.6 kB
test/package_00134.png ADDED

Git LFS Details

  • SHA256: 8423eb0eee5d99d6b056f78079a3e11dcc53889c1c1ae7127dc2c5f89112e842
  • Pointer size: 130 Bytes
  • Size of remote file: 75.4 kB
test/package_00135.png ADDED

Git LFS Details

  • SHA256: e20a65f364581593e0989c9c913e07752ea0f37a9fa61f70c8ceda5b66aff052
  • Pointer size: 130 Bytes
  • Size of remote file: 76 kB
test/package_00136.png ADDED

Git LFS Details

  • SHA256: b1dbf2153aea29fbf7b39b7c5dc8952d7e0108fd43ee10e8125ea26c2e0a4025
  • Pointer size: 130 Bytes
  • Size of remote file: 75.2 kB
test/package_00137.png ADDED

Git LFS Details

  • SHA256: 44cacc8623a396359337517429a40538b51510ba0d084e2326a2af44f2b8cf71
  • Pointer size: 130 Bytes
  • Size of remote file: 65.7 kB
test/package_00138.png ADDED

Git LFS Details

  • SHA256: d495fadf820460e0cc5e0c761cdb6a511ac4e84e64507470e890b55fdf58b87c
  • Pointer size: 130 Bytes
  • Size of remote file: 79 kB
test/package_00139.png ADDED

Git LFS Details

  • SHA256: f483a8a31ea579572f5643827ae0c25bc27ba52ac044dc6179d429b6f29a426c
  • Pointer size: 130 Bytes
  • Size of remote file: 69.6 kB
test/package_00140.png ADDED

Git LFS Details

  • SHA256: 5deb5ea797b113c8577c9b2e96e9b97f1b19b06c2b84756cf61c3e911175b1e3
  • Pointer size: 130 Bytes
  • Size of remote file: 63.8 kB
test/package_00141.png ADDED

Git LFS Details

  • SHA256: fe1cfb5cca5b14bb26315e37a7e71d0bbfe90ddbed81b481d5040c8f4932be60
  • Pointer size: 130 Bytes
  • Size of remote file: 74.9 kB
test/package_00142.png ADDED

Git LFS Details

  • SHA256: 8201640eed2aa4cf4a396767ac57eb8d274a5aae42dfa6b5703b52dd135f5a48
  • Pointer size: 130 Bytes
  • Size of remote file: 65.3 kB
test/package_00143.png ADDED

Git LFS Details

  • SHA256: 4599631c3a58914a8a2a9d652a7a188487aea666ece01c9bc7d305ec4f4abf24
  • Pointer size: 130 Bytes
  • Size of remote file: 78.4 kB
test/package_00144.png ADDED

Git LFS Details

  • SHA256: 69a9aef3c7cb6af3234b756a5c8322a305ff9da7ff980f49131edc3df7e5c14d
  • Pointer size: 130 Bytes
  • Size of remote file: 62.8 kB