-
Notifications
You must be signed in to change notification settings - Fork 2
/
inventory.sql
2101 lines (2094 loc) · 450 KB
/
inventory.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CREATE TABLE inventory(
inv_id SERIAL,
description VARCHAR(100) NOT NULL,
category VARCHAR(25) DEFAULT 'unknown',
date_recieved DATE DEFAULT CURRENT_DATE,
storage_location VARCHAR(4) NOT NULL,
quantity INTEGER DEFAULT 0,
remove BOOLEAN DEFAULT 'false',
available INTEGER DEFAULT 0,
PRIMARY KEY(inv_id)
);
CREATE TABLE "users"(
id uuid NOT NULL,
firstname VARCHAR(64),
lastname VARCHAR(64),
email VARCHAR(128),
password VARCHAR(60),
access INTEGER DEFAULT 4 ,
date_created DATE NOT NULL DEFAULT CURRENT_DATE,
PRIMARY KEY(id)
);
CREATE TABLE inventory_history(
hist_id SERIAL,
inv_id INTEGER NOT NULL,
description VARCHAR(100) NOT NULL,
category VARCHAR(25) NOT NULL,
quantity INTEGER NOT NULL,
date_modified DATE DEFAULT CURRENT_DATE,
storage_location VARCHAR(4) NOT NULL,
history VARCHAR(100),
PRIMARY KEY(hist_id),
FOREIGN KEY(inv_id) REFERENCES inventory(inv_id)
);
CREATE TABLE project(
proj_id SERIAL,
manager_id uuid NOT NULL REFERENCES users(id),
name VARCHAR(25) NOT NULL,
PRIMARY KEY(proj_id)
);
CREATE TABLE project_items(
proj_id INTEGER NOT NULL REFERENCES project(proj_id),
inv_id INTEGER NOT NULL REFERENCES inventory(inv_id),
reserved INTEGER DEFAULT 0,
PRIMARY KEY(proj_id,inv_id)
);
CREATE VIEW admin AS
SELECT project.proj_id, users.id, project.name, users.email
FROM project
INNER JOIN users ON users.id = project.manager_id
ORDER BY proj_id ASC;
CREATE OR REPLACE FUNCTION delete_if_zero()
RETURNS TRIGGER AS
$$
BEGIN
IF NEW.quantity = 0 THEN
NEW.remove = true;
END IF;
RETURN NEW;
END;
$$
LANGUAGE plpgsql;
CREATE TRIGGER check_update
BEFORE UPDATE ON inventory
FOR EACH ROW
EXECUTE PROCEDURE delete_if_zero();
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (2, 'Refined Metal Towels', 'Grocery', '2018-11-19', '308', 61333, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (4, 'Generic Fresh Table', 'Toys', '2018-04-06', '1357', 46002, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (5, 'Ergonomic Concrete Gloves', 'Electronics', '2018-09-22', '70', 97448, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (7, 'Refined Wooden Cheese', 'Garden', '2018-01-26', '886', 55839, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (8, 'Ergonomic Granite Cheese', 'Clothing', '2018-06-13', '1310', 40243, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (9, 'Intelligent Granite Gloves', 'Jewelery', '2018-05-28', '1748', 60215, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (10, 'Practical Fresh Pants', 'Toys', '2018-02-03', '1766', 43774, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (11, 'Refined Fresh Pizza', 'Music', '2018-08-17', '1982', 67905, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (12, 'Rustic Granite Pizza', 'Games', '2018-10-11', '1792', 12927, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (13, 'Generic Concrete Ball', 'Sports', '2018-03-14', '1247', 59206, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (14, 'Unbranded Concrete Car', 'Shoes', '2018-01-31', '915', 77782, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (15, 'Sleek Frozen Soap', 'Games', '2018-01-15', '1517', 82624, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (16, 'Rustic Plastic Pizza', 'Computers', '2018-09-26', '755', 35482, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (17, 'Handcrafted Plastic Fish', 'Shoes', '2018-01-05', '390', 77421, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (18, 'Awesome Cotton Shoes', 'Baby', '2017-12-10', '714', 2701, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (19, 'Awesome Rubber Gloves', 'Outdoors', '2018-07-07', '1610', 87467, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (20, 'Handmade Wooden Hat', 'Garden', '2018-02-26', '1524', 50633, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (21, 'Gorgeous Steel Table', 'Tools', '2018-08-10', '110', 73000, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (22, 'Gorgeous Plastic Keyboard', 'Beauty', '2018-06-21', '866', 81591, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (23, 'Sleek Concrete Chair', 'Music', '2018-10-12', '1433', 82527, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (24, 'Licensed Steel Chips', 'Beauty', '2018-08-30', '669', 50655, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (25, 'Practical Plastic Chips', 'Clothing', '2017-12-09', '152', 34056, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (26, 'Handmade Cotton Computer', 'Games', '2018-09-21', '25', 50765, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (27, 'Gorgeous Fresh Fish', 'Garden', '2018-08-18', '1207', 13876, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (28, 'Practical Metal Mouse', 'Sports', '2017-12-26', '752', 23587, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (29, 'Refined Rubber Chips', 'Sports', '2018-05-31', '1326', 24888, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (30, 'Generic Steel Car', 'Computers', '2018-01-31', '1370', 39682, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (31, 'Practical Frozen Chair', 'Clothing', '2017-12-22', '464', 47233, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (32, 'Fantastic Rubber Salad', 'Movies', '2018-09-26', '1210', 22776, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (33, 'Small Concrete Hat', 'Clothing', '2018-10-07', '380', 25368, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (34, 'Handmade Steel Salad', 'Electronics', '2018-07-09', '1003', 20700, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (35, 'Practical Steel Chicken', 'Baby', '2018-05-20', '207', 61703, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (36, 'Fantastic Plastic Fish', 'Grocery', '2018-01-13', '1022', 30347, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (37, 'Sleek Frozen Towels', 'Sports', '2018-11-18', '1231', 72000, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (38, 'Refined Concrete Bike', 'Industrial', '2018-01-24', '1790', 92624, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (39, 'Generic Granite Bike', 'Beauty', '2018-09-26', '875', 4645, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (40, 'Refined Concrete Bike', 'Industrial', '2018-10-24', '1465', 23242, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (41, 'Rustic Steel Pizza', 'Kids', '2018-02-09', '1688', 58918, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (42, 'Handcrafted Granite Chair', 'Music', '2017-12-19', '1838', 13127, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (43, 'Tasty Wooden Cheese', 'Industrial', '2018-06-17', '1168', 2150, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (44, 'Refined Metal Shirt', 'Movies', '2017-12-04', '880', 46704, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (45, 'Rustic Concrete Salad', 'Kids', '2018-03-23', '668', 94473, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (46, 'Small Wooden Mouse', 'Health', '2018-09-06', '1298', 93006, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (47, 'Intelligent Frozen Pizza', 'Tools', '2018-02-22', '1684', 82450, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (48, 'Ergonomic Granite Tuna', 'Automotive', '2018-10-15', '486', 25700, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (49, 'Handcrafted Soft Towels', 'Health', '2018-04-21', '920', 81865, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (50, 'Generic Concrete Ball', 'Tools', '2017-12-12', '952', 31057, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (51, 'Licensed Metal Table', 'Industrial', '2018-05-01', '1026', 88646, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (52, 'Gorgeous Plastic Towels', 'Beauty', '2018-06-09', '1553', 25854, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (53, 'Handmade Plastic Chips', 'Tools', '2018-08-07', '98', 8813, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (54, 'Ergonomic Rubber Ball', 'Beauty', '2017-12-05', '791', 4312, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (55, 'Licensed Plastic Salad', 'Sports', '2018-01-23', '1096', 62953, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (56, 'Fantastic Fresh Chips', 'Shoes', '2018-06-28', '1619', 86097, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (57, 'Small Granite Table', 'Tools', '2018-02-23', '1335', 43563, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (58, 'Intelligent Metal Fish', 'Electronics', '2018-08-05', '1116', 21693, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (59, 'Refined Frozen Fish', 'Toys', '2018-04-29', '146', 53271, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (60, 'Unbranded Metal Pizza', 'Health', '2018-09-21', '1284', 96799, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (61, 'Gorgeous Frozen Sausages', 'Movies', '2018-01-12', '1171', 42564, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (62, 'Gorgeous Plastic Towels', 'Health', '2018-02-28', '1696', 85632, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (63, 'Refined Metal Bacon', 'Industrial', '2018-10-27', '438', 77194, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (64, 'Small Fresh Chair', 'Health', '2018-01-25', '45', 31513, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (65, 'Licensed Plastic Mouse', 'Books', '2018-07-08', '16', 60350, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (66, 'Tasty Concrete Sausages', 'Beauty', '2018-05-26', '650', 85716, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (67, 'Fantastic Cotton Shoes', 'Grocery', '2018-03-17', '549', 8264, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (68, 'Fantastic Rubber Shirt', 'Sports', '2018-10-11', '284', 73184, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (69, 'Gorgeous Metal Pants', 'Automotive', '2018-07-03', '454', 70972, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (70, 'Refined Metal Bike', 'Automotive', '2018-03-07', '913', 18734, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (71, 'Gorgeous Fresh Keyboard', 'Shoes', '2018-10-14', '398', 10015, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (72, 'Handmade Metal Sausages', 'Shoes', '2018-02-26', '1329', 77810, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (73, 'Practical Wooden Keyboard', 'Kids', '2018-07-24', '676', 90406, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (74, 'Fantastic Concrete Keyboard', 'Electronics', '2018-04-15', '1992', 4610, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (75, 'Generic Fresh Mouse', 'Outdoors', '2018-09-21', '899', 26909, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (76, 'Rustic Frozen Shirt', 'Shoes', '2018-11-11', '1368', 69942, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (77, 'Ergonomic Frozen Shirt', 'Beauty', '2018-01-24', '19', 16295, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (78, 'Gorgeous Plastic Shirt', 'Kids', '2018-02-20', '1255', 14774, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (79, 'Handcrafted Wooden Bacon', 'Clothing', '2018-01-23', '1331', 80726, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (80, 'Incredible Rubber Chips', 'Toys', '2018-05-23', '1729', 60201, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (81, 'Generic Granite Towels', 'Toys', '2018-02-13', '212', 2309, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (82, 'Unbranded Wooden Ball', 'Books', '2017-12-03', '120', 68569, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (83, 'Refined Plastic Shoes', 'Toys', '2018-01-12', '1128', 89154, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (84, 'Tasty Granite Salad', 'Kids', '2018-11-09', '979', 89572, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (85, 'Unbranded Wooden Tuna', 'Computers', '2018-05-23', '920', 29858, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (86, 'Sleek Metal Shoes', 'Kids', '2018-01-10', '1008', 35704, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (87, 'Intelligent Fresh Soap', 'Automotive', '2018-10-12', '1448', 97366, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (88, 'Tasty Cotton Sausages', 'Kids', '2018-03-11', '685', 69407, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (89, 'Awesome Fresh Chair', 'Beauty', '2017-12-08', '1989', 27817, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (90, 'Licensed Wooden Shirt', 'Outdoors', '2017-12-24', '1734', 92132, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (91, 'Ergonomic Rubber Cheese', 'Kids', '2018-09-26', '660', 98268, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (92, 'Handcrafted Concrete Keyboard', 'Kids', '2018-08-16', '1103', 48730, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (93, 'Handmade Plastic Tuna', 'Music', '2018-05-08', '1055', 54678, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (94, 'Handcrafted Steel Shoes', 'Computers', '2018-07-14', '1934', 64745, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (95, 'Sleek Concrete Table', 'Kids', '2018-05-01', '1744', 7344, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (105, 'Small Wooden Pizza', 'Books', '2018-06-15', '1749', 83674, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (115, 'Gorgeous Steel Chicken', 'Home', '2018-11-08', '1299', 71224, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (125, 'Gorgeous Concrete Chips', 'Electronics', '2018-08-21', '1850', 21714, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (135, 'Practical Wooden Cheese', 'Toys', '2018-10-09', '614', 20564, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (147, 'Intelligent Frozen Pants', 'Kids', '2018-11-13', '1093', 86962, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (158, 'Intelligent Soft Bike', 'Garden', '2018-07-05', '405', 62708, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (168, 'Handcrafted Wooden Soap', 'Clothing', '2018-06-12', '1463', 86342, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (181, 'Awesome Wooden Pizza', 'Music', '2018-03-06', '1393', 15665, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (191, 'Intelligent Steel Chicken', 'Health', '2018-05-04', '229', 28936, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (201, 'Incredible Granite Chair', 'Kids', '2018-09-07', '76', 63739, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (211, 'Rustic Steel Computer', 'Garden', '2017-12-27', '1782', 21708, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (221, 'Incredible Rubber Salad', 'Electronics', '2018-07-08', '1025', 96873, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (231, 'Incredible Rubber Tuna', 'Music', '2018-08-22', '967', 82619, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (241, 'Incredible Plastic Tuna', 'Toys', '2018-06-14', '1734', 21512, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (251, 'Unbranded Rubber Tuna', 'Sports', '2018-10-21', '457', 63764, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (261, 'Incredible Metal Shoes', 'Home', '2018-02-24', '1496', 10953, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (271, 'Gorgeous Plastic Shoes', 'Computers', '2018-01-14', '1176', 51450, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (280, 'Awesome Rubber Ball', 'Industrial', '2018-09-09', '314', 92305, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (291, 'Practical Concrete Chicken', 'Music', '2018-05-22', '477', 95285, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (302, 'Generic Wooden Cheese', 'Games', '2018-04-21', '1958', 22505, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (312, 'Tasty Plastic Bike', 'Games', '2018-05-08', '648', 10728, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (322, 'Handmade Fresh Keyboard', 'Outdoors', '2018-02-22', '423', 90406, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (332, 'Generic Metal Car', 'Clothing', '2018-03-04', '806', 82998, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (342, 'Ergonomic Plastic Pizza', 'Movies', '2018-10-13', '578', 14806, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (352, 'Licensed Concrete Hat', 'Grocery', '2018-11-09', '1986', 87294, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (362, 'Refined Wooden Computer', 'Games', '2018-11-27', '1702', 49768, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (372, 'Awesome Steel Pizza', 'Shoes', '2018-06-16', '289', 80004, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (382, 'Handmade Rubber Cheese', 'Grocery', '2018-09-24', '94', 63992, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (392, 'Awesome Wooden Chair', 'Baby', '2018-01-27', '1301', 80653, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (403, 'Handmade Granite Bacon', 'Sports', '2018-03-29', '1437', 56807, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (413, 'Practical Metal Car', 'Kids', '2018-07-27', '81', 91400, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (423, 'Rustic Concrete Cheese', 'Beauty', '2018-04-25', '1974', 6947, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (434, 'Licensed Granite Sausages', 'Clothing', '2018-05-03', '1212', 1905, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (444, 'Intelligent Metal Mouse', 'Clothing', '2018-02-21', '723', 59408, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (454, 'Incredible Steel Chicken', 'Health', '2018-09-24', '728', 62291, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (465, 'Licensed Fresh Chips', 'Movies', '2018-02-07', '1706', 87092, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (475, 'Unbranded Wooden Computer', 'Movies', '2018-04-26', '942', 2106, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (485, 'Fantastic Steel Car', 'Grocery', '2018-04-15', '192', 45054, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (495, 'Sleek Concrete Mouse', 'Toys', '2018-06-03', '4', 8525, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (505, 'Licensed Concrete Fish', 'Computers', '2017-12-14', '343', 82807, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (515, 'Unbranded Cotton Ball', 'Industrial', '2018-10-30', '1945', 59966, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (526, 'Incredible Frozen Gloves', 'Music', '2018-09-22', '352', 68400, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (536, 'Practical Cotton Table', 'Home', '2017-12-28', '1782', 75426, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (546, 'Unbranded Soft Shoes', 'Garden', '2018-05-14', '843', 52698, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (556, 'Unbranded Fresh Gloves', 'Industrial', '2018-10-30', '1443', 7422, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (566, 'Tasty Granite Gloves', 'Clothing', '2018-01-09', '964', 32872, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (576, 'Licensed Rubber Tuna', 'Outdoors', '2018-10-20', '428', 70608, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (586, 'Incredible Concrete Fish', 'Games', '2018-02-03', '324', 89131, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (596, 'Unbranded Wooden Pants', 'Clothing', '2018-06-27', '877', 15539, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (606, 'Tasty Rubber Soap', 'Kids', '2018-05-27', '1448', 79853, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (616, 'Sleek Soft Bacon', 'Automotive', '2018-01-09', '860', 48505, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (626, 'Unbranded Cotton Soap', 'Sports', '2017-12-19', '1250', 21804, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (636, 'Handmade Metal Towels', 'Computers', '2018-07-26', '181', 47366, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (647, 'Refined Frozen Hat', 'Toys', '2018-10-25', '366', 24299, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (657, 'Small Frozen Cheese', 'Health', '2018-03-01', '1968', 80955, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (667, 'Incredible Wooden Pants', 'Industrial', '2018-09-02', '844', 10622, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (677, 'Handcrafted Fresh Soap', 'Books', '2018-09-15', '1530', 64530, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (687, 'Generic Frozen Cheese', 'Outdoors', '2018-01-02', '808', 45513, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (697, 'Gorgeous Frozen Car', 'Sports', '2018-02-15', '175', 6495, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (709, 'Generic Granite Bike', 'Kids', '2018-07-11', '358', 9765, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (720, 'Fantastic Wooden Cheese', 'Books', '2018-11-22', '832', 48951, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (731, 'Small Soft Shoes', 'Books', '2018-06-10', '1133', 10478, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (741, 'Sleek Metal Chair', 'Industrial', '2018-11-10', '1373', 13208, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (751, 'Ergonomic Soft Bacon', 'Automotive', '2018-03-18', '1345', 73182, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (762, 'Intelligent Metal Bike', 'Garden', '2018-02-08', '539', 55367, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (772, 'Tasty Plastic Computer', 'Clothing', '2018-02-28', '1089', 33480, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (782, 'Incredible Fresh Table', 'Movies', '2018-08-03', '888', 88150, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (792, 'Incredible Plastic Ball', 'Shoes', '2018-06-28', '970', 36869, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (802, 'Awesome Frozen Sausages', 'Baby', '2018-04-26', '1045', 40530, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (812, 'Awesome Wooden Cheese', 'Clothing', '2018-03-05', '887', 81806, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (822, 'Rustic Plastic Cheese', 'Beauty', '2017-12-27', '45', 68116, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (833, 'Generic Fresh Table', 'Clothing', '2018-08-30', '990', 82284, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (844, 'Handcrafted Steel Hat', 'Games', '2018-09-24', '1868', 26232, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (854, 'Unbranded Rubber Cheese', 'Computers', '2018-10-27', '1092', 77770, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (864, 'Practical Wooden Bike', 'Games', '2018-10-25', '69', 31613, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (876, 'Fantastic Frozen Computer', 'Health', '2018-10-30', '1926', 24643, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (886, 'Refined Granite Bike', 'Shoes', '2018-05-21', '913', 12097, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (896, 'Intelligent Soft Towels', 'Tools', '2018-03-16', '1248', 98825, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (906, 'Small Plastic Ball', 'Garden', '2018-01-19', '1785', 78690, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (916, 'Refined Steel Car', 'Toys', '2018-08-05', '1189', 31483, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (925, 'Sleek Fresh Car', 'Toys', '2018-12-02', '1394', 33023, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (935, 'Awesome Rubber Tuna', 'Music', '2017-12-14', '1718', 38687, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (945, 'Gorgeous Wooden Shoes', 'Music', '2018-10-31', '334', 13173, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (955, 'Fantastic Plastic Sausages', 'Industrial', '2018-11-14', '974', 49816, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (965, 'Small Steel Car', 'Music', '2018-05-30', '292', 65567, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (975, 'Handmade Cotton Shoes', 'Shoes', '2018-12-02', '1499', 46890, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (985, 'Incredible Fresh Shirt', 'Computers', '2018-04-04', '345', 55023, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (995, 'Unbranded Cotton Car', 'Kids', '2018-02-22', '417', 12492, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (96, 'Awesome Rubber Bacon', 'Automotive', '2018-05-20', '1220', 85007, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (106, 'Handmade Soft Chicken', 'Games', '2018-03-23', '1949', 35002, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (118, 'Awesome Rubber Car', 'Outdoors', '2018-05-30', '1947', 59007, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (128, 'Intelligent Metal Mouse', 'Beauty', '2018-05-22', '1129', 87809, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (138, 'Small Concrete Mouse', 'Kids', '2018-03-08', '1105', 35228, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (148, 'Refined Concrete Pants', 'Jewelery', '2018-07-06', '1478', 4195, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (160, 'Tasty Plastic Chips', 'Outdoors', '2018-03-29', '1276', 5224, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (167, 'Practical Concrete Cheese', 'Games', '2018-05-20', '1378', 67720, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (177, 'Generic Metal Cheese', 'Books', '2018-09-01', '1263', 22637, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (188, 'Awesome Frozen Chips', 'Tools', '2018-03-14', '322', 28064, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (198, 'Unbranded Concrete Towels', 'Toys', '2017-12-05', '751', 4258, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (209, 'Tasty Steel Mouse', 'Jewelery', '2018-10-30', '46', 52813, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (219, 'Incredible Concrete Bike', 'Music', '2018-10-20', '1893', 13822, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (229, 'Tasty Steel Sausages', 'Health', '2018-06-20', '526', 19290, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (239, 'Practical Steel Cheese', 'Toys', '2017-12-22', '1703', 48237, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (250, 'Gorgeous Wooden Bacon', 'Books', '2018-08-18', '1791', 31135, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (260, 'Gorgeous Fresh Tuna', 'Home', '2018-03-22', '1172', 84210, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (270, 'Fantastic Steel Pizza', 'Movies', '2018-01-25', '419', 10140, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (281, 'Tasty Metal Mouse', 'Baby', '2018-05-19', '1798', 37936, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (290, 'Handcrafted Granite Chair', 'Industrial', '2018-07-15', '1276', 49989, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (300, 'Unbranded Wooden Table', 'Home', '2018-08-22', '463', 3562, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (310, 'Incredible Steel Salad', 'Beauty', '2018-10-02', '585', 28378, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (320, 'Incredible Concrete Pizza', 'Music', '2018-04-08', '725', 17855, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (330, 'Unbranded Fresh Shirt', 'Computers', '2018-05-06', '645', 95789, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (340, 'Licensed Metal Mouse', 'Shoes', '2018-01-05', '1444', 51419, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (350, 'Unbranded Plastic Pants', 'Outdoors', '2018-01-01', '735', 39257, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (360, 'Rustic Plastic Table', 'Games', '2018-02-09', '925', 70000, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (370, 'Ergonomic Granite Chips', 'Beauty', '2018-04-15', '1628', 7881, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (380, 'Sleek Steel Pants', 'Home', '2018-09-21', '1788', 55395, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (390, 'Rustic Concrete Table', 'Movies', '2018-06-20', '165', 20817, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (400, 'Sleek Steel Pants', 'Automotive', '2018-10-15', '932', 83798, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (410, 'Ergonomic Cotton Computer', 'Kids', '2018-07-13', '719', 94996, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (420, 'Rustic Plastic Car', 'Sports', '2018-02-12', '1758', 44714, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (430, 'Small Wooden Sausages', 'Jewelery', '2018-08-15', '1509', 84430, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (440, 'Incredible Frozen Salad', 'Movies', '2018-03-25', '1341', 49922, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (450, 'Rustic Steel Bike', 'Movies', '2018-02-09', '1185', 13836, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (460, 'Fantastic Soft Salad', 'Health', '2018-11-01', '236', 81149, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (471, 'Unbranded Granite Ball', 'Beauty', '2017-12-07', '508', 28476, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (482, 'Small Cotton Salad', 'Toys', '2017-12-27', '1512', 85014, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (493, 'Ergonomic Granite Computer', 'Clothing', '2018-06-27', '72', 67497, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (503, 'Handmade Wooden Fish', 'Health', '2018-05-31', '989', 13618, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (513, 'Refined Cotton Fish', 'Music', '2018-04-03', '1712', 41457, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (523, 'Small Metal Keyboard', 'Sports', '2018-06-24', '1283', 76513, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (533, 'Handcrafted Wooden Car', 'Grocery', '2018-03-28', '1741', 95147, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (543, 'Awesome Concrete Computer', 'Music', '2018-04-23', '895', 26678, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (553, 'Incredible Soft Pizza', 'Automotive', '2017-12-10', '663', 6037, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (563, 'Sleek Wooden Pants', 'Garden', '2018-06-04', '153', 46978, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (573, 'Refined Plastic Chair', 'Electronics', '2018-06-16', '1961', 56357, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (583, 'Generic Metal Pizza', 'Books', '2018-08-10', '415', 38556, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (594, 'Handcrafted Granite Chicken', 'Toys', '2018-11-17', '707', 18086, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (604, 'Tasty Steel Soap', 'Books', '2018-01-26', '1308', 59450, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (614, 'Unbranded Soft Fish', 'Sports', '2017-12-20', '1780', 99091, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (624, 'Handmade Cotton Bike', 'Music', '2018-06-20', '420', 4073, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (634, 'Tasty Metal Fish', 'Sports', '2018-11-15', '1703', 86995, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (645, 'Intelligent Concrete Hat', 'Electronics', '2018-03-01', '1765', 802, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (655, 'Incredible Steel Soap', 'Automotive', '2018-06-24', '998', 10430, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (665, 'Sleek Soft Tuna', 'Beauty', '2018-03-09', '448', 64919, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (675, 'Ergonomic Rubber Pants', 'Games', '2017-12-10', '667', 24195, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (685, 'Awesome Concrete Hat', 'Automotive', '2018-07-28', '1087', 5636, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (695, 'Sleek Plastic Mouse', 'Industrial', '2018-05-16', '1382', 91903, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (705, 'Tasty Rubber Chicken', 'Games', '2018-10-25', '844', 26993, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (716, 'Tasty Cotton Chicken', 'Industrial', '2018-10-18', '1351', 49332, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (726, 'Unbranded Metal Tuna', 'Automotive', '2018-04-29', '606', 60257, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (736, 'Handcrafted Fresh Computer', 'Jewelery', '2018-01-21', '569', 917, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (746, 'Fantastic Granite Pants', 'Baby', '2018-09-08', '1410', 21733, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (756, 'Generic Soft Mouse', 'Books', '2018-08-09', '1974', 15371, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (766, 'Ergonomic Plastic Keyboard', 'Beauty', '2018-01-05', '1494', 18789, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (776, 'Licensed Wooden Soap', 'Tools', '2018-10-20', '1198', 2218, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (786, 'Awesome Cotton Sausages', 'Baby', '2018-08-07', '1733', 16656, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (796, 'Ergonomic Soft Fish', 'Sports', '2018-02-22', '1789', 12028, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (806, 'Small Concrete Cheese', 'Industrial', '2018-11-11', '1550', 78887, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (816, 'Practical Fresh Pizza', 'Music', '2018-06-07', '336', 80135, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (826, 'Rustic Frozen Tuna', 'Electronics', '2018-09-06', '971', 61177, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (836, 'Incredible Granite Tuna', 'Electronics', '2018-11-27', '1885', 92838, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (846, 'Sleek Wooden Pants', 'Clothing', '2018-04-04', '925', 68112, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (857, 'Sleek Fresh Table', 'Grocery', '2018-05-08', '1486', 66586, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (872, 'Handmade Fresh Mouse', 'Jewelery', '2018-12-01', '658', 88827, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (882, 'Small Steel Shirt', 'Jewelery', '2018-08-04', '145', 11579, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (892, 'Practical Concrete Ball', 'Music', '2018-07-05', '258', 90775, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (902, 'Refined Soft Chair', 'Electronics', '2018-08-20', '1270', 11851, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (912, 'Tasty Granite Chips', 'Books', '2018-07-14', '1742', 8550, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (922, 'Ergonomic Rubber Soap', 'Grocery', '2017-12-23', '1361', 28028, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (932, 'Generic Steel Pizza', 'Sports', '2018-10-16', '1202', 78524, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (942, 'Generic Steel Salad', 'Health', '2018-01-20', '1305', 60635, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (952, 'Handmade Fresh Tuna', 'Industrial', '2018-06-16', '1635', 24382, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (962, 'Rustic Frozen Mouse', 'Clothing', '2018-06-13', '997', 3492, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (972, 'Licensed Metal Towels', 'Grocery', '2017-12-30', '800', 66695, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (982, 'Generic Metal Pants', 'Automotive', '2018-03-07', '453', 34477, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (992, 'Rustic Metal Sausages', 'Kids', '2018-03-02', '952', 81325, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (97, 'Handmade Steel Ball', 'Outdoors', '2018-06-20', '154', 97330, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (107, 'Intelligent Steel Ball', 'Shoes', '2018-08-27', '1234', 63976, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (116, 'Gorgeous Metal Gloves', 'Books', '2018-11-29', '1533', 30694, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (126, 'Gorgeous Fresh Keyboard', 'Movies', '2018-10-23', '301', 68026, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (137, 'Gorgeous Frozen Pizza', 'Sports', '2018-02-20', '1080', 61636, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (145, 'Tasty Granite Keyboard', 'Movies', '2018-07-06', '914', 65440, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (155, 'Ergonomic Steel Salad', 'Baby', '2018-06-23', '156', 1559, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (165, 'Awesome Frozen Chair', 'Garden', '2017-12-23', '1346', 55983, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (175, 'Rustic Fresh Tuna', 'Kids', '2018-08-11', '555', 97821, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (185, 'Awesome Granite Towels', 'Shoes', '2018-04-21', '1068', 31792, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (194, 'Unbranded Frozen Car', 'Shoes', '2018-08-24', '1048', 33907, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (204, 'Sleek Cotton Towels', 'Tools', '2017-12-14', '573', 48711, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (214, 'Fantastic Concrete Shirt', 'Jewelery', '2018-05-07', '1418', 89182, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (224, 'Gorgeous Cotton Bacon', 'Beauty', '2018-09-17', '281', 56614, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (234, 'Licensed Concrete Tuna', 'Toys', '2018-07-24', '1121', 34936, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (244, 'Incredible Wooden Towels', 'Industrial', '2018-09-25', '766', 22176, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (254, 'Ergonomic Granite Bacon', 'Jewelery', '2018-04-09', '417', 24354, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (264, 'Tasty Plastic Keyboard', 'Sports', '2018-09-26', '803', 56449, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (274, 'Gorgeous Rubber Ball', 'Clothing', '2018-06-01', '1403', 56050, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (284, 'Practical Granite Table', 'Industrial', '2018-05-09', '512', 41871, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (294, 'Fantastic Cotton Tuna', 'Kids', '2018-05-12', '1298', 29000, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (304, 'Fantastic Cotton Bike', 'Grocery', '2018-07-31', '1310', 76301, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (314, 'Handmade Concrete Chicken', 'Shoes', '2018-01-09', '462', 81408, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (324, 'Awesome Steel Shoes', 'Movies', '2018-09-24', '412', 78419, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (334, 'Generic Soft Cheese', 'Jewelery', '2018-02-23', '970', 67048, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (345, 'Generic Concrete Chips', 'Beauty', '2018-11-04', '473', 1780, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (355, 'Handcrafted Fresh Shoes', 'Industrial', '2018-03-29', '949', 21830, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (365, 'Handcrafted Fresh Mouse', 'Music', '2018-05-29', '758', 76802, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (375, 'Handcrafted Concrete Tuna', 'Clothing', '2018-10-26', '189', 4747, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (385, 'Practical Steel Computer', 'Automotive', '2018-01-03', '720', 37025, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (395, 'Refined Soft Salad', 'Clothing', '2018-07-11', '1337', 70015, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (405, 'Tasty Soft Bacon', 'Grocery', '2018-03-12', '1863', 82589, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (412, 'Tasty Soft Keyboard', 'Clothing', '2018-02-27', '1185', 80635, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (422, 'Intelligent Soft Keyboard', 'Industrial', '2018-06-16', '274', 94877, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (432, 'Licensed Rubber Car', 'Health', '2018-11-11', '741', 56043, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (442, 'Incredible Frozen Bike', 'Electronics', '2018-05-31', '1110', 70919, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (452, 'Tasty Cotton Bacon', 'Kids', '2018-05-24', '1960', 17046, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (462, 'Intelligent Wooden Pizza', 'Kids', '2018-11-08', '662', 57513, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (472, 'Small Metal Tuna', 'Health', '2018-11-22', '942', 98191, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (481, 'Handcrafted Wooden Car', 'Computers', '2018-07-28', '942', 36707, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (491, 'Handmade Steel Chips', 'Industrial', '2018-02-18', '1085', 10833, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (501, 'Generic Plastic Computer', 'Outdoors', '2017-12-03', '1474', 10878, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (511, 'Awesome Fresh Pants', 'Sports', '2018-10-22', '1192', 57745, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (522, 'Incredible Rubber Chair', 'Tools', '2018-01-30', '1972', 53430, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (532, 'Handmade Concrete Shoes', 'Outdoors', '2018-06-11', '796', 20925, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (542, 'Awesome Wooden Pants', 'Games', '2017-12-22', '884', 51285, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (552, 'Licensed Rubber Salad', 'Home', '2018-03-16', '351', 3940, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (562, 'Practical Cotton Bacon', 'Baby', '2018-07-02', '691', 75688, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (572, 'Intelligent Plastic Towels', 'Kids', '2018-04-30', '1934', 58023, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (582, 'Licensed Wooden Pizza', 'Kids', '2018-11-11', '727', 83771, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (592, 'Gorgeous Fresh Sausages', 'Clothing', '2018-09-24', '1802', 39464, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (602, 'Handmade Cotton Towels', 'Computers', '2018-06-06', '815', 35337, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (612, 'Incredible Fresh Fish', 'Computers', '2018-03-13', '903', 51275, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (622, 'Licensed Wooden Sausages', 'Electronics', '2018-04-02', '1870', 52188, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (632, 'Rustic Frozen Ball', 'Shoes', '2018-06-11', '323', 15003, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (642, 'Incredible Fresh Keyboard', 'Kids', '2018-01-28', '1018', 44364, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (652, 'Handmade Wooden Salad', 'Games', '2018-05-22', '20', 16615, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (662, 'Small Metal Cheese', 'Kids', '2018-05-04', '1623', 2314, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (672, 'Intelligent Frozen Cheese', 'Jewelery', '2018-03-06', '1469', 31170, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (681, 'Sleek Steel Salad', 'Shoes', '2018-03-04', '488', 15504, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (691, 'Incredible Fresh Cheese', 'Jewelery', '2018-03-26', '357', 21854, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (701, 'Rustic Fresh Gloves', 'Jewelery', '2018-05-31', '116', 49459, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (711, 'Gorgeous Granite Fish', 'Jewelery', '2017-12-28', '1649', 68653, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (721, 'Practical Metal Soap', 'Computers', '2018-05-24', '880', 80902, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (730, 'Fantastic Cotton Gloves', 'Electronics', '2018-07-25', '637', 61966, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (739, 'Tasty Soft Bacon', 'Toys', '2018-05-20', '1634', 38998, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (748, 'Generic Rubber Keyboard', 'Books', '2018-03-14', '1187', 47504, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (758, 'Tasty Wooden Car', 'Garden', '2018-03-09', '1510', 87435, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (768, 'Intelligent Granite Fish', 'Tools', '2018-11-20', '666', 2379, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (778, 'Generic Granite Pants', 'Garden', '2017-12-07', '919', 57746, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (788, 'Refined Fresh Shoes', 'Grocery', '2018-08-05', '927', 35776, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (798, 'Fantastic Frozen Soap', 'Music', '2018-04-28', '236', 93526, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (808, 'Incredible Wooden Pizza', 'Beauty', '2018-11-08', '906', 50239, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (818, 'Licensed Frozen Shirt', 'Shoes', '2017-12-12', '1532', 94751, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (828, 'Fantastic Metal Bacon', 'Kids', '2018-10-24', '1757', 94851, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (838, 'Ergonomic Concrete Pants', 'Industrial', '2018-03-31', '390', 76185, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (848, 'Handcrafted Rubber Towels', 'Games', '2017-12-25', '1737', 6143, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (858, 'Generic Soft Fish', 'Home', '2017-12-21', '262', 90434, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (868, 'Handmade Wooden Table', 'Garden', '2017-12-29', '422', 31005, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (877, 'Tasty Concrete Bike', 'Beauty', '2018-04-24', '1566', 52167, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (889, 'Handcrafted Steel Pants', 'Garden', '2018-11-27', '1129', 24028, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (900, 'Handmade Wooden Table', 'Health', '2018-04-09', '40', 50095, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (910, 'Ergonomic Soft Fish', 'Grocery', '2018-06-30', '1836', 14335, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (920, 'Intelligent Concrete Soap', 'Sports', '2018-11-10', '1957', 28723, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (930, 'Incredible Steel Sausages', 'Clothing', '2018-05-12', '477', 64770, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (940, 'Ergonomic Plastic Gloves', 'Garden', '2018-09-24', '1395', 4183, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (949, 'Tasty Soft Bike', 'Grocery', '2018-03-16', '1815', 93576, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (959, 'Handcrafted Plastic Pizza', 'Jewelery', '2018-02-09', '404', 64930, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (969, 'Refined Concrete Ball', 'Books', '2018-09-15', '1133', 57032, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (979, 'Handmade Cotton Chair', 'Outdoors', '2018-07-17', '331', 18788, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (989, 'Awesome Granite Fish', 'Shoes', '2018-05-15', '772', 72493, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (1000, 'Generic Frozen Shirt', 'Shoes', '2018-04-15', '198', 13575, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (98, 'Unbranded Plastic Tuna', 'Computers', '2018-04-12', '652', 46122, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (109, 'Licensed Fresh Bike', 'Music', '2018-08-13', '1962', 61104, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (119, 'Incredible Concrete Car', 'Books', '2018-07-15', '1708', 78959, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (129, 'Licensed Steel Tuna', 'Automotive', '2017-12-29', '943', 97179, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (139, 'Handmade Wooden Bacon', 'Grocery', '2017-12-09', '1028', 86333, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (149, 'Generic Plastic Towels', 'Movies', '2018-11-11', '848', 57507, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (157, 'Generic Soft Chips', 'Garden', '2018-09-27', '228', 53578, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (169, 'Practical Frozen Chips', 'Health', '2018-06-12', '832', 82441, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (180, 'Handcrafted Rubber Keyboard', 'Computers', '2018-11-03', '782', 86213, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (190, 'Handmade Rubber Pizza', 'Computers', '2018-07-15', '160', 88481, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (200, 'Handmade Wooden Towels', 'Garden', '2018-01-07', '238', 18283, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (210, 'Tasty Wooden Towels', 'Sports', '2018-08-10', '1125', 48852, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (222, 'Sleek Cotton Mouse', 'Outdoors', '2018-10-26', '903', 8383, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (232, 'Small Steel Tuna', 'Jewelery', '2018-01-11', '1975', 83483, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (242, 'Handmade Fresh Soap', 'Movies', '2018-06-28', '698', 64334, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (252, 'Licensed Fresh Salad', 'Outdoors', '2018-10-31', '1258', 64583, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (262, 'Awesome Cotton Keyboard', 'Toys', '2018-04-10', '141', 33397, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (272, 'Refined Metal Chair', 'Books', '2018-05-15', '1641', 82805, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (282, 'Incredible Concrete Bacon', 'Movies', '2018-07-04', '1374', 30160, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (292, 'Generic Wooden Bike', 'Books', '2018-07-01', '143', 43919, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (301, 'Small Plastic Hat', 'Sports', '2018-05-17', '1994', 28571, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (311, 'Fantastic Soft Sausages', 'Garden', '2018-02-18', '1491', 61030, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (321, 'Sleek Rubber Chicken', 'Games', '2018-02-24', '245', 65013, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (331, 'Practical Fresh Keyboard', 'Garden', '2018-05-01', '1922', 1632, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (341, 'Licensed Granite Soap', 'Grocery', '2018-07-17', '1248', 23583, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (351, 'Practical Plastic Car', 'Industrial', '2018-10-28', '1616', 32470, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (361, 'Licensed Steel Table', 'Garden', '2017-12-13', '404', 28850, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (371, 'Handcrafted Fresh Computer', 'Jewelery', '2018-09-10', '1272', 8072, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (381, 'Refined Wooden Sausages', 'Music', '2018-01-28', '1233', 89009, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (391, 'Handmade Concrete Shirt', 'Jewelery', '2017-12-25', '242', 53344, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (401, 'Sleek Plastic Soap', 'Shoes', '2018-02-17', '418', 12939, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (414, 'Unbranded Plastic Pizza', 'Grocery', '2018-07-12', '1586', 3663, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (425, 'Intelligent Plastic Bike', 'Outdoors', '2018-05-24', '1620', 21237, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (435, 'Tasty Fresh Cheese', 'Garden', '2018-08-18', '1750', 10463, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (445, 'Fantastic Soft Pants', 'Kids', '2018-02-24', '1815', 20449, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (456, 'Licensed Fresh Hat', 'Sports', '2018-10-18', '1502', 94962, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (466, 'Handcrafted Frozen Table', 'Computers', '2018-07-28', '1319', 10863, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (476, 'Handmade Rubber Shirt', 'Books', '2018-09-03', '1228', 39618, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (486, 'Sleek Wooden Chair', 'Health', '2018-08-06', '448', 83260, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (496, 'Handmade Steel Hat', 'Games', '2018-02-13', '314', 2392, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (506, 'Intelligent Granite Shoes', 'Sports', '2018-01-30', '586', 1190, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (517, 'Refined Plastic Gloves', 'Shoes', '2018-02-25', '529', 27736, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (527, 'Handcrafted Wooden Ball', 'Industrial', '2018-10-26', '179', 32641, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (537, 'Sleek Plastic Keyboard', 'Beauty', '2018-04-02', '81', 28163, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (547, 'Generic Steel Tuna', 'Books', '2018-07-10', '1596', 43612, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (557, 'Unbranded Soft Pizza', 'Tools', '2018-11-21', '1170', 40147, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (567, 'Licensed Concrete Chips', 'Beauty', '2018-07-21', '1392', 69485, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (577, 'Licensed Granite Shoes', 'Tools', '2018-11-01', '1868', 94275, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (587, 'Incredible Cotton Towels', 'Garden', '2018-11-24', '971', 72052, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (597, 'Gorgeous Wooden Shoes', 'Movies', '2018-08-06', '1446', 25353, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (607, 'Ergonomic Plastic Sausages', 'Garden', '2018-06-04', '1799', 353, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (617, 'Licensed Cotton Keyboard', 'Garden', '2018-02-15', '1113', 39687, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (627, 'Sleek Metal Computer', 'Garden', '2018-04-24', '333', 43903, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (637, 'Incredible Steel Mouse', 'Grocery', '2018-04-13', '231', 45161, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (648, 'Refined Fresh Salad', 'Outdoors', '2018-11-13', '927', 99399, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (658, 'Tasty Concrete Computer', 'Home', '2018-10-06', '1295', 80959, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (668, 'Awesome Concrete Salad', 'Kids', '2018-05-24', '317', 84713, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (678, 'Intelligent Cotton Shoes', 'Sports', '2018-08-17', '1875', 9742, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (688, 'Intelligent Fresh Fish', 'Toys', '2018-09-16', '988', 86886, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (699, 'Practical Granite Gloves', 'Books', '2018-10-28', '486', 1616, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (708, 'Generic Fresh Pizza', 'Books', '2018-06-14', '209', 19792, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (718, 'Licensed Wooden Towels', 'Health', '2018-02-10', '619', 11564, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (728, 'Practical Frozen Soap', 'Games', '2017-12-22', '1406', 35023, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (740, 'Generic Plastic Ball', 'Games', '2018-08-21', '1455', 76450, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (750, 'Handmade Concrete Pizza', 'Electronics', '2017-12-21', '624', 74370, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (760, 'Intelligent Cotton Salad', 'Garden', '2018-04-23', '482', 21324, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (771, 'Generic Rubber Chips', 'Health', '2018-08-06', '1397', 88492, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (781, 'Handmade Granite Ball', 'Books', '2018-09-25', '568', 24941, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (791, 'Small Wooden Ball', 'Jewelery', '2018-11-19', '1436', 58597, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (801, 'Fantastic Soft Shirt', 'Movies', '2018-07-26', '827', 62109, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (811, 'Incredible Concrete Mouse', 'Computers', '2018-11-28', '1705', 17605, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (821, 'Handmade Wooden Car', 'Tools', '2018-05-11', '883', 68608, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (832, 'Practical Rubber Mouse', 'Books', '2018-03-22', '1249', 52721, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (842, 'Incredible Soft Ball', 'Industrial', '2018-04-30', '234', 35515, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (853, 'Small Concrete Computer', 'Baby', '2018-03-24', '1256', 34559, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (863, 'Awesome Plastic Bacon', 'Games', '2018-10-16', '1606', 65603, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (873, 'Ergonomic Fresh Salad', 'Automotive', '2018-04-24', '1839', 71397, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (884, 'Licensed Steel Soap', 'Movies', '2018-10-05', '36', 98591, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (894, 'Sleek Fresh Tuna', 'Health', '2018-10-04', '195', 36155, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (904, 'Practical Granite Pants', 'Jewelery', '2018-10-12', '430', 88918, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (914, 'Sleek Metal Bacon', 'Garden', '2018-02-01', '711', 56018, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (924, 'Gorgeous Plastic Sausages', 'Computers', '2018-10-31', '1713', 12714, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (934, 'Refined Plastic Fish', 'Home', '2018-01-23', '1584', 70452, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (944, 'Awesome Soft Sausages', 'Clothing', '2017-12-04', '381', 4943, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (954, 'Incredible Metal Ball', 'Electronics', '2018-07-02', '543', 28976, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (964, 'Intelligent Fresh Chips', 'Movies', '2018-09-12', '939', 93841, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (974, 'Refined Granite Keyboard', 'Books', '2018-10-04', '1820', 40328, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (984, 'Incredible Frozen Ball', 'Jewelery', '2018-06-27', '767', 95057, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (994, 'Awesome Fresh Hat', 'Beauty', '2018-05-21', '94', 7134, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (99, 'Small Fresh Bacon', 'Tools', '2018-08-20', '1938', 4783, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (108, 'Awesome Frozen Car', 'Outdoors', '2018-06-17', '318', 10559, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (117, 'Handcrafted Plastic Bacon', 'Baby', '2018-07-23', '226', 93459, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (127, 'Tasty Granite Chips', 'Jewelery', '2018-09-05', '1856', 87250, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (136, 'Licensed Soft Pizza', 'Beauty', '2018-11-04', '858', 56495, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (146, 'Sleek Frozen Shoes', 'Movies', '2018-08-23', '763', 51893, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (156, 'Handcrafted Plastic Fish', 'Computers', '2018-09-09', '1300', 27773, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (166, 'Handcrafted Frozen Cheese', 'Beauty', '2018-11-17', '357', 36801, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (176, 'Practical Cotton Salad', 'Home', '2018-05-21', '1203', 51024, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (186, 'Fantastic Plastic Gloves', 'Toys', '2018-11-21', '1484', 21616, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (196, 'Handmade Steel Pants', 'Computers', '2018-11-03', '1096', 16184, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (206, 'Unbranded Plastic Gloves', 'Shoes', '2018-04-24', '800', 80640, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (216, 'Intelligent Steel Shirt', 'Beauty', '2018-08-08', '1579', 33074, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (226, 'Small Fresh Bike', 'Shoes', '2017-12-07', '847', 41017, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (236, 'Tasty Wooden Hat', 'Sports', '2018-11-19', '1640', 69915, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (247, 'Awesome Soft Tuna', 'Jewelery', '2018-09-22', '405', 10577, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (257, 'Practical Steel Mouse', 'Movies', '2018-11-23', '116', 22862, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (266, 'Tasty Metal Sausages', 'Books', '2018-11-02', '1627', 8126, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (276, 'Licensed Plastic Fish', 'Toys', '2018-08-05', '23', 49554, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (286, 'Handcrafted Rubber Salad', 'Clothing', '2018-11-09', '942', 16325, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (297, 'Ergonomic Steel Salad', 'Movies', '2018-11-14', '3', 8149, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (305, 'Sleek Metal Shirt', 'Jewelery', '2017-12-16', '781', 60846, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (315, 'Handmade Steel Fish', 'Beauty', '2018-11-26', '523', 10760, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (326, 'Generic Cotton Tuna', 'Garden', '2017-12-19', '1249', 18356, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (336, 'Licensed Metal Gloves', 'Automotive', '2018-08-19', '1523', 12811, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (346, 'Incredible Steel Fish', 'Health', '2018-09-24', '845', 32639, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (356, 'Gorgeous Plastic Car', 'Baby', '2018-02-22', '653', 20715, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (366, 'Refined Soft Towels', 'Electronics', '2018-05-27', '1481', 89268, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (376, 'Fantastic Soft Chair', 'Outdoors', '2018-08-17', '1869', 4169, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (387, 'Small Frozen Chips', 'Health', '2018-09-12', '1619', 99452, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (397, 'Handcrafted Wooden Ball', 'Books', '2018-08-02', '1845', 48102, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (407, 'Rustic Concrete Shoes', 'Sports', '2018-10-03', '916', 33478, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (417, 'Refined Fresh Tuna', 'Baby', '2018-03-11', '1005', 51752, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (427, 'Incredible Rubber Computer', 'Automotive', '2018-03-17', '1808', 44482, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (437, 'Intelligent Rubber Car', 'Automotive', '2018-09-28', '1948', 71434, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (446, 'Incredible Plastic Bike', 'Health', '2018-10-08', '1875', 39679, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (455, 'Rustic Steel Gloves', 'Computers', '2018-06-11', '114', 23047, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (464, 'Practical Cotton Hat', 'Music', '2018-02-11', '1619', 54331, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (474, 'Sleek Wooden Bike', 'Games', '2017-12-14', '1576', 77762, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (484, 'Tasty Rubber Mouse', 'Clothing', '2018-08-22', '420', 96671, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (494, 'Refined Frozen Computer', 'Tools', '2018-02-16', '71', 87069, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (504, 'Licensed Granite Chair', 'Clothing', '2018-11-03', '751', 60339, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (514, 'Incredible Rubber Sausages', 'Grocery', '2018-11-02', '1084', 25420, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (524, 'Handmade Plastic Table', 'Jewelery', '2017-12-08', '1457', 21047, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (534, 'Intelligent Steel Chips', 'Home', '2018-11-03', '1003', 36854, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (544, 'Generic Soft Shirt', 'Tools', '2018-04-10', '5', 43581, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (554, 'Licensed Wooden Towels', 'Baby', '2018-07-28', '438', 38719, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (564, 'Licensed Granite Bike', 'Health', '2018-09-27', '481', 48519, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (574, 'Handmade Concrete Bike', 'Shoes', '2018-06-11', '839', 66306, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (584, 'Generic Granite Mouse', 'Automotive', '2018-08-21', '1313', 10399, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (593, 'Gorgeous Frozen Keyboard', 'Garden', '2018-02-11', '384', 2660, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (603, 'Sleek Metal Computer', 'Electronics', '2018-05-03', '671', 46630, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (613, 'Unbranded Wooden Chair', 'Health', '2018-08-14', '1789', 1523, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (623, 'Handmade Soft Sausages', 'Health', '2018-07-05', '1582', 97768, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (633, 'Awesome Fresh Sausages', 'Beauty', '2018-03-06', '1418', 1646, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (643, 'Fantastic Plastic Salad', 'Books', '2018-07-27', '453', 84690, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (653, 'Generic Concrete Tuna', 'Beauty', '2018-04-27', '387', 70886, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (663, 'Incredible Wooden Shirt', 'Electronics', '2018-05-30', '1165', 32644, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (673, 'Handmade Soft Computer', 'Sports', '2018-01-19', '1460', 62611, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (683, 'Sleek Cotton Shoes', 'Health', '2018-09-16', '660', 8328, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (693, 'Unbranded Wooden Soap', 'Music', '2018-01-02', '1491', 272, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (703, 'Handcrafted Frozen Gloves', 'Garden', '2018-01-11', '1697', 83336, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (712, 'Sleek Concrete Ball', 'Computers', '2018-04-29', '1926', 99941, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (722, 'Generic Plastic Fish', 'Grocery', '2017-12-17', '1996', 15897, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (732, 'Handcrafted Granite Cheese', 'Games', '2018-07-25', '1935', 98195, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (742, 'Gorgeous Concrete Ball', 'Computers', '2018-05-16', '825', 60721, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (752, 'Intelligent Wooden Hat', 'Shoes', '2018-05-27', '306', 40687, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (761, 'Sleek Granite Tuna', 'Kids', '2018-06-15', '1208', 77310, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (770, 'Unbranded Steel Gloves', 'Toys', '2018-11-05', '1212', 18199, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (779, 'Handcrafted Concrete Table', 'Jewelery', '2018-08-19', '671', 3905, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (789, 'Generic Soft Table', 'Grocery', '2018-05-11', '189', 95198, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (799, 'Small Cotton Keyboard', 'Clothing', '2018-08-27', '733', 41516, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (809, 'Gorgeous Granite Keyboard', 'Sports', '2018-10-30', '361', 91487, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (819, 'Licensed Steel Towels', 'Outdoors', '2018-03-08', '1043', 24505, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (829, 'Rustic Wooden Gloves', 'Movies', '2018-08-03', '583', 20850, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (839, 'Handcrafted Cotton Bike', 'Tools', '2018-04-02', '274', 49871, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (849, 'Awesome Metal Shoes', 'Games', '2018-07-23', '1612', 87110, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (859, 'Licensed Concrete Shirt', 'Clothing', '2018-06-19', '966', 8759, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (867, 'Intelligent Plastic Chips', 'Health', '2018-07-17', '1756', 43067, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (879, 'Awesome Rubber Sausages', 'Books', '2017-12-04', '827', 16940, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (888, 'Handmade Concrete Pants', 'Sports', '2018-11-11', '1184', 61892, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (897, 'Intelligent Frozen Soap', 'Music', '2018-06-07', '612', 68826, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (907, 'Tasty Frozen Keyboard', 'Health', '2018-06-13', '1778', 97622, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (917, 'Generic Steel Towels', 'Sports', '2018-08-29', '1924', 93703, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (927, 'Awesome Concrete Bacon', 'Automotive', '2018-01-12', '1526', 59556, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (937, 'Handmade Soft Pizza', 'Computers', '2018-05-09', '679', 1865, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (948, 'Incredible Fresh Cheese', 'Tools', '2018-05-12', '1919', 30148, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (958, 'Sleek Plastic Keyboard', 'Movies', '2018-08-29', '54', 15676, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (968, 'Intelligent Steel Tuna', 'Books', '2018-10-20', '1726', 65763, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (978, 'Sleek Metal Keyboard', 'Industrial', '2018-03-25', '241', 36642, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (988, 'Practical Metal Car', 'Movies', '2018-09-06', '1475', 7382, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (998, 'Ergonomic Cotton Car', 'Home', '2018-05-27', '92', 57993, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (100, 'Refined Wooden Fish', 'Jewelery', '2018-07-10', '252', 28979, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (110, 'Intelligent Granite Sausages', 'Grocery', '2018-08-01', '1863', 10286, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (120, 'Handmade Wooden Bacon', 'Grocery', '2018-01-24', '429', 56416, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (130, 'Intelligent Cotton Towels', 'Movies', '2018-07-20', '1115', 27001, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (140, 'Fantastic Plastic Towels', 'Baby', '2018-04-16', '1410', 35305, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (150, 'Handmade Granite Chips', 'Shoes', '2018-08-09', '1830', 38543, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (159, 'Intelligent Soft Gloves', 'Grocery', '2018-05-12', '195', 48336, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (170, 'Awesome Soft Salad', 'Clothing', '2018-05-12', '1274', 71596, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (182, 'Unbranded Steel Chips', 'Beauty', '2018-01-26', '447', 56479, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (192, 'Generic Steel Bacon', 'Movies', '2017-12-21', '392', 36362, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (202, 'Sleek Frozen Keyboard', 'Sports', '2018-05-29', '1086', 47678, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (213, 'Awesome Metal Tuna', 'Clothing', '2018-08-03', '1207', 97440, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (223, 'Practical Wooden Sausages', 'Automotive', '2018-04-27', '1842', 86877, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (233, 'Sleek Concrete Pizza', 'Baby', '2017-12-25', '473', 33349, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (243, 'Small Concrete Soap', 'Computers', '2018-01-27', '1687', 36097, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (253, 'Generic Fresh Ball', 'Books', '2018-10-03', '8', 2112, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (263, 'Practical Granite Computer', 'Health', '2018-03-29', '1837', 59234, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (273, 'Gorgeous Plastic Soap', 'Grocery', '2018-08-13', '888', 68148, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (283, 'Incredible Concrete Mouse', 'Games', '2018-02-24', '1596', 85093, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (293, 'Gorgeous Metal Ball', 'Electronics', '2018-12-02', '1251', 54023, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (303, 'Refined Frozen Shoes', 'Clothing', '2018-07-22', '103', 45703, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (313, 'Fantastic Cotton Shoes', 'Health', '2018-08-01', '1139', 66240, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (323, 'Licensed Steel Fish', 'Home', '2018-08-02', '511', 97048, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (333, 'Awesome Steel Hat', 'Shoes', '2018-07-11', '72', 80755, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (343, 'Rustic Metal Table', 'Computers', '2018-05-27', '1395', 19649, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (353, 'Awesome Steel Gloves', 'Movies', '2018-10-17', '1802', 85731, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (363, 'Ergonomic Plastic Shirt', 'Tools', '2018-01-06', '760', 46718, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (373, 'Handmade Rubber Cheese', 'Health', '2018-11-30', '173', 54393, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (383, 'Fantastic Cotton Soap', 'Movies', '2018-05-06', '650', 31911, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (394, 'Generic Soft Fish', 'Toys', '2018-04-29', '1740', 2802, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (404, 'Fantastic Metal Cheese', 'Electronics', '2018-10-28', '868', 76619, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (415, 'Rustic Fresh Fish', 'Automotive', '2018-09-11', '1623', 86054, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (426, 'Unbranded Metal Bacon', 'Toys', '2018-11-25', '1365', 61372, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (436, 'Handcrafted Soft Ball', 'Automotive', '2018-09-05', '1273', 68345, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (447, 'Unbranded Plastic Cheese', 'Shoes', '2018-05-12', '566', 1617, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (457, 'Sleek Metal Mouse', 'Movies', '2018-10-31', '393', 10949, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (467, 'Handcrafted Granite Pants', 'Jewelery', '2017-12-16', '1871', 93666, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (477, 'Tasty Concrete Ball', 'Shoes', '2018-05-06', '1948', 71192, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (487, 'Incredible Metal Shoes', 'Garden', '2018-06-07', '1219', 96903, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (497, 'Unbranded Granite Fish', 'Home', '2018-11-18', '1865', 83031, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (507, 'Licensed Fresh Cheese', 'Clothing', '2017-12-07', '61', 38018, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (518, 'Refined Granite Soap', 'Games', '2018-09-18', '1336', 97267, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (528, 'Licensed Wooden Fish', 'Shoes', '2018-08-29', '1100', 77948, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (538, 'Practical Soft Chicken', 'Tools', '2018-08-21', '758', 31882, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (548, 'Incredible Frozen Bacon', 'Automotive', '2018-09-16', '690', 40502, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (558, 'Generic Concrete Sausages', 'Tools', '2018-08-02', '1197', 28297, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (568, 'Generic Granite Chicken', 'Jewelery', '2018-05-08', '707', 95156, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (578, 'Refined Granite Table', 'Automotive', '2018-09-02', '677', 75609, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (589, 'Intelligent Frozen Towels', 'Shoes', '2018-09-26', '912', 49571, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (599, 'Rustic Soft Ball', 'Home', '2018-11-26', '1225', 25877, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (610, 'Tasty Fresh Chair', 'Health', '2018-10-21', '893', 69954, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (620, 'Sleek Granite Towels', 'Clothing', '2018-09-26', '320', 90194, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (630, 'Licensed Cotton Table', 'Outdoors', '2018-10-09', '247', 53069, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (640, 'Small Wooden Bike', 'Outdoors', '2018-10-03', '1784', 17734, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (650, 'Generic Plastic Shirt', 'Games', '2018-06-01', '513', 20452, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (660, 'Rustic Soft Fish', 'Books', '2018-07-18', '1689', 66448, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (671, 'Practical Metal Cheese', 'Industrial', '2018-11-09', '802', 38896, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (682, 'Gorgeous Frozen Shoes', 'Shoes', '2017-12-22', '1958', 32341, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (692, 'Fantastic Fresh Chips', 'Toys', '2018-09-30', '69', 35745, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (702, 'Rustic Granite Pants', 'Books', '2018-05-02', '632', 99611, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (713, 'Sleek Fresh Salad', 'Garden', '2018-03-21', '328', 55056, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (723, 'Gorgeous Steel Soap', 'Kids', '2018-01-03', '1014', 82632, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (733, 'Small Metal Pants', 'Toys', '2018-08-01', '465', 94384, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (743, 'Generic Frozen Bacon', 'Shoes', '2018-06-01', '725', 70841, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (753, 'Generic Granite Computer', 'Games', '2018-05-09', '1964', 29882, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (763, 'Small Plastic Cheese', 'Automotive', '2018-08-25', '1916', 76594, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (773, 'Intelligent Cotton Shirt', 'Garden', '2018-01-09', '82', 72021, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (783, 'Tasty Cotton Keyboard', 'Toys', '2017-12-08', '1828', 87777, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (793, 'Sleek Metal Shoes', 'Jewelery', '2018-02-22', '924', 37475, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (804, 'Generic Concrete Towels', 'Automotive', '2018-03-23', '1869', 62761, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (815, 'Incredible Granite Tuna', 'Garden', '2018-04-14', '1736', 82532, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (825, 'Ergonomic Soft Chair', 'Electronics', '2018-01-19', '1049', 33770, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (835, 'Awesome Rubber Chips', 'Sports', '2017-12-22', '54', 26728, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (845, 'Fantastic Granite Keyboard', 'Outdoors', '2018-05-15', '1527', 781, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (855, 'Sleek Fresh Cheese', 'Games', '2017-12-17', '706', 57147, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (865, 'Generic Frozen Fish', 'Games', '2018-05-08', '1358', 58126, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (875, 'Rustic Metal Cheese', 'Outdoors', '2018-03-10', '1255', 50611, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (885, 'Handcrafted Wooden Fish', 'Home', '2017-12-23', '722', 74988, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (895, 'Ergonomic Wooden Hat', 'Tools', '2018-05-15', '162', 69776, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (905, 'Practical Frozen Towels', 'Books', '2018-08-21', '548', 52691, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (915, 'Rustic Concrete Cheese', 'Outdoors', '2018-11-14', '633', 72343, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (926, 'Rustic Plastic Salad', 'Baby', '2017-12-25', '663', 20829, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (936, 'Handmade Wooden Bacon', 'Games', '2018-06-15', '1162', 17088, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (946, 'Rustic Steel Pants', 'Toys', '2018-07-04', '1337', 28077, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (956, 'Handcrafted Wooden Salad', 'Health', '2018-05-15', '1424', 20046, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (966, 'Sleek Concrete Mouse', 'Jewelery', '2018-09-01', '1968', 84287, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (976, 'Rustic Cotton Keyboard', 'Home', '2018-10-19', '1412', 69503, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (986, 'Gorgeous Soft Bacon', 'Movies', '2018-07-18', '1029', 24377, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (996, 'Gorgeous Wooden Chair', 'Electronics', '2018-07-09', '1164', 81987, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (101, 'Generic Wooden Keyboard', 'Electronics', '2018-04-12', '1953', 82337, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (111, 'Rustic Wooden Mouse', 'Grocery', '2018-07-01', '1292', 2143, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (121, 'Intelligent Steel Keyboard', 'Music', '2018-06-11', '171', 7748, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (131, 'Handcrafted Concrete Fish', 'Toys', '2018-02-15', '1002', 66140, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (141, 'Sleek Wooden Car', 'Automotive', '2018-03-04', '1125', 23492, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (151, 'Handmade Concrete Sausages', 'Jewelery', '2018-09-04', '1657', 71342, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (161, 'Fantastic Steel Shirt', 'Outdoors', '2018-07-14', '473', 67408, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (171, 'Small Wooden Hat', 'Movies', '2018-02-23', '1105', 33113, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (178, 'Handmade Fresh Cheese', 'Baby', '2018-10-23', '508', 67107, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (187, 'Practical Soft Bacon', 'Shoes', '2018-03-19', '1476', 99013, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (197, 'Small Wooden Fish', 'Music', '2018-01-31', '1015', 97384, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (207, 'Gorgeous Soft Mouse', 'Jewelery', '2018-08-25', '120', 68672, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (217, 'Handcrafted Fresh Keyboard', 'Beauty', '2018-11-23', '1110', 44659, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (227, 'Unbranded Concrete Pizza', 'Industrial', '2018-03-29', '132', 99493, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (237, 'Gorgeous Frozen Chicken', 'Shoes', '2018-03-11', '926', 75852, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (246, 'Sleek Wooden Fish', 'Tools', '2018-05-23', '943', 18772, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (256, 'Unbranded Rubber Soap', 'Beauty', '2018-01-17', '1280', 48294, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (265, 'Gorgeous Granite Shirt', 'Baby', '2018-02-01', '102', 77044, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (275, 'Handcrafted Granite Bacon', 'Books', '2018-02-25', '103', 87714, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (285, 'Handmade Frozen Salad', 'Automotive', '2018-09-23', '1571', 5913, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (296, 'Awesome Metal Fish', 'Beauty', '2018-02-16', '110', 74170, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (306, 'Refined Plastic Keyboard', 'Health', '2018-04-21', '685', 92842, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (316, 'Intelligent Metal Car', 'Tools', '2018-10-15', '768', 7721, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (325, 'Refined Fresh Shirt', 'Home', '2018-07-06', '932', 33640, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (335, 'Ergonomic Concrete Table', 'Jewelery', '2018-05-04', '282', 40504, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (344, 'Tasty Granite Sausages', 'Toys', '2018-01-12', '1913', 15590, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (354, 'Rustic Soft Pizza', 'Clothing', '2018-02-16', '1955', 93848, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (364, 'Licensed Plastic Sausages', 'Health', '2018-10-05', '479', 17733, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (374, 'Refined Rubber Salad', 'Outdoors', '2018-07-04', '371', 36776, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (384, 'Tasty Steel Shoes', 'Sports', '2018-01-15', '1579', 79273, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (393, 'Sleek Concrete Table', 'Movies', '2018-04-04', '434', 40479, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (402, 'Handcrafted Soft Sausages', 'Industrial', '2018-01-19', '1637', 14533, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (411, 'Awesome Granite Car', 'Music', '2018-09-24', '604', 92658, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (421, 'Ergonomic Cotton Mouse', 'Industrial', '2018-10-29', '365', 21020, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (431, 'Handcrafted Wooden Bike', 'Grocery', '2018-10-24', '1827', 5679, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (441, 'Gorgeous Wooden Tuna', 'Outdoors', '2017-12-08', '230', 8663, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (451, 'Sleek Soft Sausages', 'Tools', '2018-04-22', '691', 89126, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (461, 'Gorgeous Cotton Gloves', 'Automotive', '2018-08-11', '117', 15127, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (470, 'Tasty Wooden Gloves', 'Outdoors', '2018-07-18', '1488', 67017, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (480, 'Handmade Metal Fish', 'Games', '2018-11-02', '95', 76502, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (490, 'Rustic Frozen Hat', 'Automotive', '2018-06-14', '320', 6897, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (500, 'Small Steel Ball', 'Kids', '2018-04-05', '1760', 11469, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (510, 'Awesome Metal Salad', 'Kids', '2018-03-10', '1208', 71973, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (520, 'Small Concrete Cheese', 'Toys', '2018-08-18', '1571', 43199, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (530, 'Incredible Frozen Chicken', 'Games', '2018-01-23', '1440', 28144, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (540, 'Sleek Rubber Soap', 'Sports', '2018-09-09', '272', 859, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (550, 'Intelligent Fresh Chair', 'Books', '2018-10-07', '84', 73764, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (560, 'Rustic Rubber Bacon', 'Automotive', '2018-10-30', '995', 38242, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (570, 'Handcrafted Granite Pizza', 'Music', '2018-02-06', '676', 13090, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (580, 'Handmade Cotton Towels', 'Beauty', '2018-04-25', '956', 74528, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (590, 'Tasty Wooden Chicken', 'Beauty', '2018-11-10', '455', 11230, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (600, 'Licensed Fresh Ball', 'Shoes', '2018-02-21', '1304', 17249, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (609, 'Unbranded Granite Chips', 'Movies', '2018-01-02', '873', 29726, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (618, 'Sleek Rubber Tuna', 'Kids', '2018-01-02', '1826', 40777, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (628, 'Sleek Plastic Shirt', 'Shoes', '2018-05-10', '1893', 71746, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (638, 'Gorgeous Granite Fish', 'Health', '2018-09-29', '358', 5514, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (646, 'Gorgeous Rubber Computer', 'Games', '2018-11-19', '1137', 8087, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (656, 'Ergonomic Rubber Towels', 'Computers', '2018-01-10', '1528', 38832, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (666, 'Unbranded Rubber Chair', 'Home', '2018-08-02', '1385', 80564, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (676, 'Gorgeous Cotton Chicken', 'Home', '2017-12-21', '1647', 99592, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (686, 'Intelligent Rubber Bike', 'Grocery', '2018-11-08', '1462', 13871, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (696, 'Practical Steel Sausages', 'Automotive', '2018-05-16', '1301', 83717, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (706, 'Practical Metal Chair', 'Shoes', '2018-02-11', '548', 81237, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (715, 'Refined Rubber Ball', 'Baby', '2018-03-29', '1837', 84053, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (725, 'Unbranded Fresh Pizza', 'Home', '2018-09-03', '804', 86209, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (735, 'Unbranded Cotton Tuna', 'Computers', '2018-09-20', '362', 15700, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (745, 'Handmade Steel Tuna', 'Kids', '2018-08-21', '611', 30943, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (755, 'Handcrafted Soft Shoes', 'Kids', '2018-06-25', '1237', 8147, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (765, 'Refined Fresh Towels', 'Jewelery', '2018-10-12', '1580', 67088, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (775, 'Incredible Steel Mouse', 'Music', '2018-10-20', '880', 75715, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (785, 'Awesome Cotton Computer', 'Tools', '2017-12-15', '16', 92460, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (795, 'Unbranded Cotton Bacon', 'Industrial', '2018-08-27', '251', 1575, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (805, 'Handcrafted Granite Bacon', 'Garden', '2018-07-16', '275', 19159, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (814, 'Unbranded Wooden Ball', 'Games', '2018-02-05', '95', 57429, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (824, 'Refined Metal Computer', 'Health', '2018-02-23', '1249', 47374, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (834, 'Intelligent Plastic Keyboard', 'Garden', '2018-11-13', '1020', 62927, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (843, 'Fantastic Rubber Computer', 'Jewelery', '2018-03-20', '1570', 26668, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (851, 'Generic Wooden Mouse', 'Electronics', '2018-10-30', '1398', 73397, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (861, 'Refined Metal Shoes', 'Automotive', '2018-10-15', '1102', 42912, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (869, 'Ergonomic Concrete Hat', 'Garden', '2018-06-07', '405', 14656, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (878, 'Generic Granite Bacon', 'Baby', '2018-06-01', '570', 55038, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (887, 'Practical Wooden Salad', 'Jewelery', '2018-11-10', '1756', 45357, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (898, 'Handmade Concrete Bike', 'Toys', '2018-08-16', '434', 84029, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (908, 'Ergonomic Metal Car', 'Industrial', '2018-10-31', '1091', 51069, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (918, 'Rustic Wooden Computer', 'Health', '2018-10-23', '345', 88139, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (928, 'Sleek Plastic Car', 'Home', '2018-03-23', '1982', 61099, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (938, 'Unbranded Granite Soap', 'Grocery', '2018-05-20', '1184', 4762, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (947, 'Incredible Rubber Mouse', 'Health', '2018-07-03', '1029', 87586, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (957, 'Small Plastic Towels', 'Games', '2018-08-25', '1930', 65860, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (967, 'Refined Wooden Salad', 'Movies', '2018-03-20', '692', 81968, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (977, 'Handmade Frozen Pizza', 'Toys', '2018-03-19', '521', 23918, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (987, 'Awesome Fresh Ball', 'Jewelery', '2018-11-13', '1627', 31706, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (997, 'Fantastic Granite Salad', 'Automotive', '2018-02-11', '518', 1757, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (102, 'Incredible Rubber Soap', 'Kids', '2018-07-29', '1843', 47138, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (112, 'Ergonomic Soft Fish', 'Clothing', '2018-09-18', '1982', 47932, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (122, 'Rustic Soft Chair', 'Beauty', '2018-09-30', '1140', 88259, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (132, 'Incredible Rubber Shirt', 'Electronics', '2017-12-09', '637', 60161, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (142, 'Small Fresh Bacon', 'Jewelery', '2018-05-04', '1390', 25646, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (152, 'Handcrafted Rubber Cheese', 'Books', '2018-03-06', '457', 25323, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (162, 'Handcrafted Fresh Gloves', 'Sports', '2018-03-26', '453', 35080, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (172, 'Handmade Soft Tuna', 'Sports', '2017-12-08', '12', 54867, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (179, 'Licensed Frozen Shirt', 'Sports', '2018-10-15', '619', 71329, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (189, 'Rustic Cotton Cheese', 'Computers', '2018-11-13', '127', 65404, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (199, 'Ergonomic Plastic Chair', 'Clothing', '2018-01-01', '215', 19236, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (208, 'Practical Steel Towels', 'Movies', '2018-08-18', '1227', 58189, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (218, 'Handcrafted Concrete Hat', 'Beauty', '2018-10-15', '1131', 54045, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (228, 'Generic Granite Pizza', 'Tools', '2018-01-30', '349', 71616, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (238, 'Licensed Granite Table', 'Baby', '2018-01-05', '1399', 97365, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (248, 'Incredible Soft Computer', 'Baby', '2018-10-25', '10', 98472, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (258, 'Handcrafted Plastic Tuna', 'Sports', '2018-11-27', '1934', 60195, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (267, 'Rustic Granite Tuna', 'Home', '2018-04-21', '24', 33101, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (277, 'Gorgeous Frozen Bike', 'Electronics', '2018-04-06', '735', 41307, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (287, 'Generic Steel Tuna', 'Sports', '2018-05-14', '191', 84263, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (295, 'Small Wooden Pizza', 'Kids', '2018-05-08', '122', 42282, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (307, 'Gorgeous Frozen Shirt', 'Home', '2018-03-11', '193', 95681, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (317, 'Gorgeous Frozen Towels', 'Home', '2018-09-28', '1414', 28799, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (327, 'Generic Frozen Computer', 'Tools', '2018-11-28', '1958', 62646, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (337, 'Incredible Granite Keyboard', 'Outdoors', '2018-09-23', '1683', 58440, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (347, 'Practical Metal Pizza', 'Industrial', '2018-01-28', '1187', 14823, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (357, 'Handmade Granite Chair', 'Jewelery', '2018-07-27', '459', 70996, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (367, 'Handcrafted Steel Bike', 'Industrial', '2018-05-06', '901', 22892, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (377, 'Fantastic Concrete Towels', 'Outdoors', '2018-06-09', '1383', 89529, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (386, 'Licensed Plastic Fish', 'Shoes', '2018-03-26', '271', 76090, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (396, 'Tasty Soft Chips', 'Electronics', '2018-05-14', '1005', 80690, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (406, 'Generic Metal Fish', 'Movies', '2018-03-19', '377', 96778, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (416, 'Licensed Frozen Fish', 'Toys', '2018-02-19', '607', 6733, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (424, 'Awesome Metal Computer', 'Toys', '2017-12-12', '1459', 32288, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (433, 'Gorgeous Rubber Pizza', 'Beauty', '2018-11-19', '1814', 95644, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (443, 'Gorgeous Soft Pizza', 'Music', '2017-12-27', '338', 78708, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (453, 'Small Steel Bike', 'Health', '2018-11-08', '267', 5825, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (463, 'Refined Metal Soap', 'Movies', '2018-07-19', '120', 15741, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (473, 'Licensed Concrete Bacon', 'Tools', '2017-12-12', '1692', 34274, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (483, 'Handmade Plastic Salad', 'Kids', '2018-02-12', '685', 4684, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (492, 'Gorgeous Concrete Pants', 'Movies', '2018-08-22', '1681', 86811, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (502, 'Rustic Fresh Car', 'Music', '2018-05-10', '889', 80912, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (512, 'Generic Granite Chicken', 'Garden', '2018-09-01', '872', 43636, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (521, 'Ergonomic Wooden Mouse', 'Clothing', '2018-03-05', '571', 96518, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (531, 'Practical Metal Computer', 'Movies', '2018-11-18', '797', 38099, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (541, 'Licensed Plastic Tuna', 'Jewelery', '2018-01-12', '504', 44771, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (551, 'Licensed Frozen Bike', 'Shoes', '2018-10-14', '1119', 24368, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (561, 'Awesome Frozen Gloves', 'Toys', '2018-11-10', '1566', 40080, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (571, 'Handmade Metal Bike', 'Industrial', '2018-04-30', '1197', 67932, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (581, 'Generic Plastic Sausages', 'Jewelery', '2017-12-21', '1315', 97957, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (591, 'Incredible Fresh Tuna', 'Grocery', '2018-02-20', '219', 40913, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (601, 'Intelligent Steel Shirt', 'Automotive', '2018-10-03', '90', 15847, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (611, 'Rustic Wooden Soap', 'Baby', '2018-08-04', '1199', 75973, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (621, 'Sleek Cotton Bacon', 'Toys', '2018-10-18', '1163', 24374, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (631, 'Sleek Plastic Cheese', 'Games', '2018-05-14', '1807', 78211, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (641, 'Generic Frozen Soap', 'Electronics', '2018-05-08', '908', 116, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (651, 'Handcrafted Cotton Towels', 'Home', '2018-04-15', '1514', 36570, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (661, 'Ergonomic Rubber Shirt', 'Books', '2018-07-13', '77', 79793, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (670, 'Unbranded Frozen Shoes', 'Shoes', '2018-09-05', '1188', 31957, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (680, 'Refined Fresh Fish', 'Games', '2018-10-07', '951', 36060, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (690, 'Licensed Soft Pizza', 'Games', '2018-07-30', '1442', 84159, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (700, 'Tasty Metal Salad', 'Music', '2018-08-01', '609', 23818, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (710, 'Tasty Granite Table', 'Tools', '2018-10-08', '780', 88390, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (719, 'Intelligent Soft Soap', 'Computers', '2018-02-07', '499', 59537, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (729, 'Intelligent Concrete Pizza', 'Beauty', '2018-04-05', '1379', 85095, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (738, 'Handcrafted Wooden Mouse', 'Health', '2018-10-12', '71', 98583, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (747, 'Licensed Granite Shirt', 'Games', '2017-12-12', '1644', 75560, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (757, 'Incredible Fresh Chair', 'Movies', '2018-02-13', '1985', 63811, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (767, 'Fantastic Fresh Soap', 'Garden', '2018-03-19', '139', 25501, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (777, 'Ergonomic Cotton Tuna', 'Games', '2018-04-02', '501', 70899, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (787, 'Incredible Granite Bacon', 'Automotive', '2018-08-03', '635', 42585, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (797, 'Unbranded Cotton Car', 'Grocery', '2018-06-07', '1638', 39709, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (807, 'Intelligent Wooden Bike', 'Industrial', '2018-02-28', '154', 7283, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (817, 'Intelligent Soft Ball', 'Beauty', '2018-02-25', '1931', 80862, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (827, 'Practical Granite Sausages', 'Jewelery', '2018-05-06', '446', 65303, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (837, 'Licensed Steel Computer', 'Outdoors', '2018-09-20', '75', 96804, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (847, 'Sleek Granite Gloves', 'Electronics', '2018-06-27', '337', 81800, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (856, 'Practical Granite Pizza', 'Computers', '2017-12-08', '780', 31194, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (866, 'Small Metal Pizza', 'Home', '2018-05-20', '1363', 64744, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (874, 'Licensed Plastic Keyboard', 'Kids', '2018-03-14', '1155', 98815, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (883, 'Handmade Metal Salad', 'Clothing', '2018-06-27', '888', 31531, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (893, 'Practical Fresh Salad', 'Home', '2018-11-10', '633', 21867, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (903, 'Incredible Soft Chair', 'Shoes', '2018-10-17', '1041', 84483, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (913, 'Handcrafted Concrete Tuna', 'Clothing', '2018-03-06', '1633', 22912, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (923, 'Rustic Metal Chips', 'Industrial', '2018-01-24', '766', 59554, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (933, 'Small Frozen Table', 'Home', '2018-10-26', '123', 89619, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (943, 'Refined Concrete Table', 'Grocery', '2018-04-23', '202', 63917, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (953, 'Sleek Wooden Mouse', 'Games', '2018-07-15', '347', 26334, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (963, 'Small Soft Chair', 'Music', '2018-08-11', '936', 89697, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (973, 'Unbranded Frozen Bacon', 'Jewelery', '2018-05-16', '1733', 97403, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (983, 'Sleek Soft Bike', 'Grocery', '2018-10-31', '1353', 89025, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (993, 'Rustic Metal Pants', 'Home', '2018-10-31', '1698', 11379, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (103, 'Gorgeous Soft Sausages', 'Books', '2018-09-05', '1675', 27016, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (113, 'Refined Fresh Mouse', 'Computers', '2018-04-26', '389', 73395, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (123, 'Ergonomic Plastic Hat', 'Computers', '2018-03-12', '1170', 61171, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (133, 'Awesome Concrete Chair', 'Computers', '2018-05-12', '1690', 22770, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (143, 'Handmade Frozen Ball', 'Jewelery', '2018-06-05', '1952', 17169, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (153, 'Small Wooden Hat', 'Computers', '2018-08-26', '1348', 78323, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (163, 'Small Concrete Bacon', 'Books', '2018-10-30', '506', 35705, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (173, 'Small Steel Mouse', 'Automotive', '2017-12-31', '1036', 3743, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (183, 'Incredible Wooden Table', 'Outdoors', '2018-07-04', '428', 66930, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (193, 'Fantastic Granite Mouse', 'Health', '2018-02-05', '1671', 56542, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (203, 'Tasty Granite Shoes', 'Computers', '2018-06-15', '1768', 98881, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (212, 'Practical Metal Pants', 'Grocery', '2018-04-27', '948', 35595, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (220, 'Ergonomic Wooden Tuna', 'Movies', '2018-08-12', '29', 76206, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (230, 'Intelligent Concrete Salad', 'Sports', '2018-08-25', '38', 82543, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (240, 'Unbranded Frozen Table', 'Music', '2018-01-08', '1658', 86604, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (249, 'Gorgeous Steel Chair', 'Electronics', '2018-08-09', '65', 26069, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (259, 'Refined Wooden Ball', 'Clothing', '2017-12-21', '302', 13425, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (269, 'Licensed Concrete Shoes', 'Music', '2018-05-15', '707', 6490, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (279, 'Incredible Metal Chicken', 'Computers', '2018-01-25', '687', 87809, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (289, 'Small Steel Fish', 'Kids', '2018-06-28', '538', 20899, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (299, 'Ergonomic Metal Chips', 'Shoes', '2017-12-28', '632', 63740, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (309, 'Ergonomic Fresh Bike', 'Garden', '2018-04-03', '285', 57536, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (319, 'Gorgeous Fresh Ball', 'Clothing', '2018-01-03', '1189', 88272, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (329, 'Tasty Granite Mouse', 'Home', '2018-09-14', '623', 63735, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (339, 'Generic Fresh Ball', 'Industrial', '2018-05-29', '141', 21428, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (349, 'Practical Frozen Gloves', 'Health', '2018-09-29', '1390', 92203, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (359, 'Licensed Soft Pants', 'Sports', '2018-06-14', '312', 22067, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (368, 'Rustic Plastic Mouse', 'Movies', '2018-11-13', '114', 29791, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (378, 'Awesome Plastic Car', 'Games', '2018-08-16', '232', 93923, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (388, 'Sleek Fresh Cheese', 'Automotive', '2018-05-14', '423', 84462, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (398, 'Generic Soft Pizza', 'Health', '2018-06-11', '1648', 93133, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (408, 'Gorgeous Wooden Hat', 'Jewelery', '2018-05-27', '1215', 67564, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (418, 'Ergonomic Fresh Ball', 'Toys', '2018-06-27', '1876', 2189, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (428, 'Gorgeous Metal Towels', 'Grocery', '2018-06-16', '685', 91256, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (438, 'Rustic Rubber Pants', 'Electronics', '2018-07-20', '314', 74044, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (448, 'Awesome Granite Ball', 'Garden', '2018-04-22', '532', 62969, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (458, 'Refined Plastic Soap', 'Garden', '2018-04-01', '1032', 70766, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (468, 'Gorgeous Frozen Tuna', 'Baby', '2018-05-18', '1718', 40872, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (478, 'Tasty Plastic Tuna', 'Electronics', '2018-10-17', '1401', 38242, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (488, 'Generic Rubber Hat', 'Automotive', '2018-11-28', '151', 67871, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (498, 'Rustic Rubber Chicken', 'Shoes', '2017-12-04', '148', 2740, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (508, 'Intelligent Concrete Gloves', 'Outdoors', '2018-05-16', '293', 31420, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (516, 'Fantastic Fresh Mouse', 'Books', '2018-04-08', '1492', 66329, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (525, 'Incredible Cotton Towels', 'Health', '2018-09-27', '1085', 57727, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (535, 'Intelligent Fresh Tuna', 'Movies', '2018-09-03', '1579', 63485, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (545, 'Incredible Granite Ball', 'Shoes', '2018-06-14', '236', 50963, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (555, 'Small Plastic Pizza', 'Kids', '2018-05-16', '292', 38982, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (565, 'Ergonomic Steel Sausages', 'Baby', '2018-05-26', '637', 89230, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (575, 'Gorgeous Plastic Soap', 'Industrial', '2018-07-17', '911', 80036, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (585, 'Handmade Cotton Chips', 'Health', '2018-07-29', '1120', 97598, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (595, 'Incredible Granite Sausages', 'Music', '2018-03-21', '1608', 71889, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (605, 'Small Soft Computer', 'Books', '2018-01-21', '108', 62957, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (615, 'Small Rubber Hat', 'Toys', '2018-06-22', '728', 72749, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (625, 'Licensed Rubber Salad', 'Automotive', '2018-12-01', '1841', 79311, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (635, 'Unbranded Cotton Ball', 'Home', '2017-12-30', '707', 60085, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (644, 'Practical Cotton Car', 'Sports', '2018-06-20', '161', 75479, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (654, 'Sleek Steel Towels', 'Automotive', '2018-05-11', '1008', 38023, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (664, 'Small Rubber Computer', 'Garden', '2018-06-28', '169', 79388, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (674, 'Intelligent Cotton Computer', 'Games', '2018-07-03', '933', 55476, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (684, 'Fantastic Steel Bike', 'Toys', '2018-04-16', '700', 80207, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (694, 'Intelligent Frozen Pants', 'Health', '2018-02-22', '1836', 7350, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (704, 'Fantastic Concrete Computer', 'Automotive', '2018-08-23', '789', 19196, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (714, 'Generic Metal Chair', 'Sports', '2018-07-15', '742', 72733, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (724, 'Rustic Granite Fish', 'Shoes', '2018-11-14', '1571', 52494, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (734, 'Intelligent Concrete Shirt', 'Games', '2018-10-22', '131', 19533, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (744, 'Fantastic Cotton Pants', 'Home', '2018-01-03', '1004', 72105, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (754, 'Generic Wooden Cheese', 'Outdoors', '2018-05-09', '1326', 27767, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (764, 'Fantastic Rubber Fish', 'Electronics', '2018-08-30', '778', 25016, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (774, 'Fantastic Cotton Pizza', 'Shoes', '2018-02-05', '76', 63235, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (784, 'Intelligent Fresh Pizza', 'Automotive', '2018-05-27', '918', 66082, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (794, 'Ergonomic Frozen Pants', 'Outdoors', '2018-10-15', '637', 95566, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (803, 'Ergonomic Concrete Car', 'Computers', '2018-11-29', '751', 56639, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (813, 'Small Plastic Chicken', 'Kids', '2018-07-17', '1589', 14190, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (823, 'Handcrafted Frozen Pizza', 'Electronics', '2018-03-10', '999', 78867, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (831, 'Gorgeous Concrete Computer', 'Industrial', '2018-08-29', '586', 47399, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (840, 'Handcrafted Frozen Chicken', 'Shoes', '2018-03-10', '320', 50043, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (850, 'Awesome Steel Bike', 'Grocery', '2018-08-11', '186', 14561, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (860, 'Small Fresh Mouse', 'Industrial', '2018-01-02', '1354', 67977, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (870, 'Rustic Frozen Shirt', 'Games', '2018-08-25', '1311', 25888, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (880, 'Licensed Frozen Ball', 'Computers', '2018-08-09', '682', 50881, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (890, 'Intelligent Rubber Computer', 'Home', '2018-04-19', '314', 26143, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (899, 'Awesome Soft Keyboard', 'Toys', '2018-05-02', '88', 54106, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (909, 'Sleek Fresh Keyboard', 'Baby', '2018-08-23', '401', 3043, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (919, 'Licensed Plastic Salad', 'Electronics', '2018-06-30', '17', 57482, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (929, 'Tasty Plastic Tuna', 'Sports', '2018-02-20', '1108', 6397, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (939, 'Ergonomic Concrete Ball', 'Clothing', '2018-08-15', '67', 87223, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (950, 'Awesome Fresh Cheese', 'Books', '2018-08-30', '114', 551, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (960, 'Fantastic Steel Computer', 'Tools', '2018-04-25', '235', 72760, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (970, 'Licensed Granite Chair', 'Industrial', '2018-04-14', '550', 1302, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (980, 'Small Fresh Shoes', 'Music', '2018-03-20', '1885', 18210, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (990, 'Sleek Wooden Chips', 'Kids', '2018-01-30', '885', 40379, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (999, 'Awesome Rubber Sausages', 'Books', '2018-07-30', '158', 61413, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (104, 'Incredible Metal Salad', 'Baby', '2018-03-07', '1284', 63543, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (114, 'Handmade Rubber Cheese', 'Movies', '2018-03-15', '112', 97762, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (124, 'Sleek Metal Car', 'Electronics', '2018-05-08', '316', 92363, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (134, 'Incredible Cotton Tuna', 'Garden', '2018-12-02', '1387', 51168, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (144, 'Generic Soft Chips', 'Garden', '2018-10-27', '1858', 11913, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (154, 'Incredible Rubber Bacon', 'Beauty', '2018-03-31', '271', 33950, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (164, 'Licensed Wooden Shoes', 'Games', '2018-04-30', '777', 99775, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (174, 'Awesome Soft Keyboard', 'Garden', '2017-12-05', '1263', 29326, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (184, 'Ergonomic Steel Shoes', 'Books', '2018-02-09', '1095', 60483, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (195, 'Intelligent Plastic Chicken', 'Home', '2018-11-23', '639', 94376, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (205, 'Practical Cotton Shoes', 'Shoes', '2018-06-27', '1511', 88338, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (215, 'Refined Steel Fish', 'Automotive', '2018-01-09', '579', 77327, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (225, 'Practical Steel Table', 'Baby', '2018-05-16', '303', 20340, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (235, 'Sleek Soft Towels', 'Jewelery', '2018-10-05', '538', 67029, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (245, 'Sleek Plastic Gloves', 'Health', '2018-03-06', '137', 63563, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (255, 'Rustic Fresh Ball', 'Garden', '2018-05-15', '809', 3378, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (268, 'Tasty Rubber Sausages', 'Shoes', '2018-06-04', '1596', 78019, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (278, 'Generic Cotton Fish', 'Music', '2018-03-13', '1697', 26672, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (288, 'Handcrafted Metal Towels', 'Kids', '2018-08-15', '1363', 10140, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (298, 'Incredible Granite Keyboard', 'Electronics', '2018-03-30', '89', 91960, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (308, 'Practical Granite Chair', 'Sports', '2018-01-24', '1900', 14995, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (318, 'Gorgeous Frozen Computer', 'Electronics', '2017-12-08', '1578', 14526, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (328, 'Sleek Concrete Pizza', 'Books', '2018-05-01', '1415', 6888, false, 0);
INSERT INTO public.inventory (inv_id, description, category, date_recieved, storage_location, quantity, remove, available) VALUES (338, 'Rustic Metal Bacon', 'Automotive', '2018-08-29', '1769', 35522, false, 0);