-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdump.sql
3999 lines (3977 loc) · 175 KB
/
dump.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
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Хост: localhost
-- Время создания: Мар 18 2016 г., 10:54
-- Версия сервера: 5.5.47-0ubuntu0.14.04.1
-- Версия PHP: 5.5.9-1ubuntu4.14
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- База данных: `tamaranga`
--
-- --------------------------------------------------------
--
-- Структура таблицы `items`
--
CREATE TABLE IF NOT EXISTS `items` (
`id` int(11) unsigned NOT NULL DEFAULT '0',
`title` varchar(150) NOT NULL DEFAULT '',
`price` decimal(11,2) unsigned NOT NULL DEFAULT '0.00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Дамп данных таблицы `items`
--
INSERT INTO `items` (`id`, `title`, `price`) VALUES
(1, 'rockwell shopseries 18-volt cordless drill/driver kit', 289724.20),
(2, 'buffalo tools sportsman work table', 559563.55),
(3, 'black & decker 7-1/4" 15-amp circular saw, cs1015', 390013.65),
(4, 'black & decker 30-piece bullet screwdriving and drilling set, 71-130', 284176.73),
(5, 'dewalt power tools dck290l2 20 volt max lithium ion hammerdrill-impact driver co', 335329.41),
(6, 'lumberjack tools tta2000 2in industrail series tenon cutter', 496878.45),
(7, 'porter cable 371k compact belt sander', 885462.88),
(8, 'bosch 4395-01 orbital action jigsaw', 850305.51),
(9, 'dewalt power tools 7-. 25inch worm drive circular saw dws535', 118236.10),
(10, 'black and decker 20v max lithium drill and circular saw kit, bdcd220rs', 557995.18),
(11, 'black & decker 9.6v-18v multi voltage fast charger, fsmvc', 309909.10),
(12, 'swisher 28 ton 8.75 gross torque log splitter, lsrb875281350', 482447.02),
(13, 'black & decker 12-volt matrix drill, bdcdmt112', 907212.64),
(14, 'rsr electronics zd98 soldering station', 749121.87),
(15, 'hitachi 18v lithium-ion cordless impact driver', 215490.02),
(16, 'master magnetics 07047 neodymium disc magnets - 3-pack', 634497.54),
(17, 'wagner 0283022c ht775 heat gun', 41662.23),
(18, 'dremel 4200 rotary tool with ez change, 4200-6/40', 402207.91),
(19, 'skil sb18c sb18a 18v ni-cd battery', 73245.78),
(20, 'fry technologies cookson elect am53945 flo-temp lead-free solid wire solder', 563236.81),
(21, 'legacy mfg 3/8 x 100 flex air hose yellow', 957364.94),
(22, 'black & decker 6.5a .5" vsr 2-speed hammer drill, dr670', 965097.31),
(23, 'atd tools atd-10836 3. 6-volt cordless rechargeable screwdriver kit', 719149.67),
(24, 'black & decker 5.2a 3.25" planer kit, 7698k', 187501.02),
(25, 'dewalt dc750ka 9. 6-volt cordless drill/driver kit', 570260.64),
(26, 'black and decker 3/8" 5-amp variable speed drill with keyless chuck, dr260b', 970439.60),
(27, 'black & decker 3-speed rtx rotary tool with bonus spring clamps, rtx-6', 189322.81),
(28, 'paasche air brush millenium dbl action airbrush kit', 122710.90),
(29, 'black and decker reciprocating saw, rs600k', 981193.80),
(30, 'irwin industrial tool 372956p5 5-count 9" 6 tpi nail embedded reciprocating saw', 368203.50),
(31, 'skil 4v max lithium-ion screwdriver, 2354-06', 556279.63),
(32, 'surebonder full size high temperature glue gun', 462806.74),
(33, 'otc 4813 171 piece heat shrink tubing set', 20205.57),
(34, 'ultra steel 6v cordless drill', 251364.62),
(35, 'skil 9296-01 4.5in paddle switch angle grinder', 574340.37),
(36, 'all purpose stik mini glue sticks, .27" x 4", 100/pkg', 991993.89),
(37, 'apex tool group, llc-tools 8125n soldering gun tip', 235872.13),
(38, 'comstar 10-100 copper lock no-heat solder - 2 oz.', 630315.49),
(39, 'hitachi 7 disc grinder', 169885.58),
(40, 'hitachi 4 gallon twin stack air compressor', 900303.98),
(41, 'ingersoll rand 1/2 air impact wrench 231ha', 553352.88),
(42, 'alton 2 gallon pancake air compressor', 318772.67),
(43, 'eclipse 900-066n 50w soldering station', 70916.54),
(44, 'bostitch air regulator and gauge, npt, #iregulator', 749828.40),
(45, 'bostitch air regulator and gauge, threaded, #mregulator', 974225.81),
(46, 'black & decker 1/4 sheet finisher sander, fs540', 182431.68),
(47, 'century drill and tool phillips power screwdriving bit set', 160425.06),
(48, 'bostitch 100 ft air compressor hose prozhoze, 3/8" x 100, pro-38100', 392582.43),
(49, 'lincoln lubrication ac2440 120-volt corded grease gun', 371851.44),
(50, 'hitachi 3 1/2" full-head plastic collated framing strip nailer', 971348.11),
(51, 'gmc power equipment 4.6 gallon gmc syclone 4620a ultra quiet and oil free air compressor', 459364.63),
(52, 'eclipse 902-135 solder tip for 900-066n solder station 4mm diameter angled chisel', 776309.75),
(53, 'allied tools 72-piece rotary tool set', 647920.84),
(54, 'lumberjack tools hsk2 home series 2-piece starter kit', 707999.00),
(55, 'hitachi 17 piece split point black oxide shield drill bit set', 997554.50),
(56, 'bostitch 6 gallon, 135 psi, air compressor, btfp02006', 91138.80),
(57, 'numax 23-gauge 1" micro pinner', 259007.36),
(58, 'stanley fatmax 12v cordless drill, fmc010lb', 135205.23),
(59, 'black & decker 41-piece project kit with 3.6v lithium screwdriver, ldx120pk', 214636.77),
(60, 'multi-temp hybrid cordless glue gun', 507853.75),
(61, 'dewalt power tools . 38inch heavy-duty vsr pistol grip drill with keyless chuck dwd', 396355.77),
(62, 'premiere pads premiere pads 50 "400" series stainless steel scrubbers large pad50', 41572.74),
(63, 'plews 05-025 4-inch needle nose grease gun adapter', 948246.08),
(64, 'apex tool group, llc-tools 7135w soldering gun tip', 837644.73),
(65, 'dualsaw destroyer cs650 saw, refurbished', 907806.40),
(66, 'paasche air brush millenium dbl action airbrush kit', 376836.32),
(67, 'black & decker lithium saw, lps7000', 512840.40),
(68, 'crawford storehorse 36" sawhorse w/top protector', 803553.48),
(69, 'professional woodworker 7390 multifunction tool with 4 accessories', 387666.11),
(70, 'rockwell shopseries 7 amp 1/2" hammer drill', 945466.83),
(71, 'black & decker 58-piece project kit with 12v lithium drill/driver, ldx172pk', 850180.37),
(72, 'hitachi 18-volt lithium-ion 3 tool combo kit', 255431.68),
(73, '12-volt lith-ion drill w/ bonus case & 150-piece socket set', 728501.83),
(74, 'skil 4-1/2 angle grinders - 4 1/2 angle grinder with metal front 6 amp', 124128.59),
(75, 'kawasaki heavy duty 0.5 6.6a hammer drill', 241233.79),
(76, 'master magnetics 07047 neodymium disc magnets - 3-pack', 583081.58),
(77, 'superior tool 2" pvc pipe cutter', 828246.80),
(78, 'powermate 30 gallon cast iron oil lubricated belt drive industrial air compressor', 487051.31),
(79, 'speare tools adjustable speaker-cutter hole saw, ab 1610', 609321.15),
(80, 'lincoln lubrication ac2440 120-volt corded grease gun', 786349.47),
(81, 'bostitch 29-piece screwdriving set, bsa229sdm', 76673.09),
(82, 'gyros 45-20265 high speed steel wire gauge drill bit no.65 set of 2', 443106.11),
(83, 'weller analog soldering station, wes51', 15606.65),
(84, 'vermont american 7 to 7-1/4 masonry circular saw blades 28052', 146294.18),
(85, 'bosch 1006vsr 3/8" corded drill', 707198.89),
(86, 'stalwart portable air compressor kit with light', 989353.03),
(87, 'black & decker matrix trim saw head attachment, bdcmtts', 550578.65),
(88, 'freeman pf3p6galck freeman ultimate finishing kit with 6 gallon compressor, 3 nailers, canvas carry', 208154.78),
(89, 'astro pneumatic grease gun mini 3oz cap w/ needle nozzle', 93162.13),
(90, 'mayhew tools mayhew tools - catspaw deck wrecker cats paw deck wrecker: 479-41104 - cats paw deck wr', 468053.16),
(91, 'hitachi 35 piece hi-torq impact rated torsion bit set', 458952.43),
(92, 'north american tool 51872 80-piece mini rotary tool kit', 834692.68),
(93, 'mayflower 20511 8 inch electric heat sealer', 592106.97),
(94, 'wagner heat gun kit, ht1100', 777615.56),
(95, 'western enterprises 1/4 npt x 3 long male brass regulator nipple cga 540', 467.23),
(96, 'hitachi 12v peak li-ion 2 speed drill/driver', 417585.32),
(97, 'mk diamond mk-370exp 7-inch wet cutting tile saw', 597293.28),
(98, 'fry technologies cookson elect am62964 lead-free rosin core solder', 832675.19),
(99, 'bostitch 6 amp orbital jig saw and bonus jig saw blade bundle', 245338.28),
(100, 'black & decker 2.4v direct plug screwdriver, dp240', 944899.79),
(101, 'eclipse 900-230 flux bottle pack - 2-pack', 42553.17),
(102, 'black & decker 6v high performance screwdriver, pd600', 194475.22),
(103, 'ad tech hi-temp project pro mini size glue gun', 730664.24),
(104, 'fry technologies cookson elect am32406 general purpose acid core solder', 514276.70),
(105, 'dewalt dck413s2 12-volt li-ion 4-tool combo kit', 724783.25),
(106, 'lumberjack tools trh2000 2in home series tenon cutter', 699953.47),
(107, 'irwin 7-piece drive set, 1885553', 662878.99),
(108, 'black & decker 20-volt lithium drill and 133 pieces home project kit, ld120pk', 54305.91),
(109, 'bostitch industrial air tool plug, 1/4 npt, btfp72318', 457774.53),
(110, 'buffalo tools 1500 watt heat gun', 606408.72),
(111, 'black & decker 20-volt matrix drill and flashlight combo kit, bdcdmt120fl', 141375.72),
(112, 'irwin industrial tool 372956p5 5-count 9" 6 tpi nail embedded reciprocating saw', 470677.46),
(113, 'wen 5.2 amp electric pole saw', 251747.10),
(114, 'worx semi automatic sd driver, wx254l', 238350.18),
(115, 'bostitch 6 gallon, 135 psi, air compressor, btfp02006', 699721.21),
(116, 'crawford adjustable height roller stand', 169042.23),
(117, 'dewalt power tools dck290l2 20 volt max lithium ion hammerdrill-impact driver co', 424869.33),
(118, 'lincoln industrial grease gun cordless with case', 374109.23),
(119, 'gmc power equipment 1.6 gallon gmc syclone 1610a ultra quiet and oil-free air compressor', 313415.65),
(120, 'bostitch 15 amp 7 1/4" heavy duty circular saw with bonus circular saw blade', 923119.18),
(121, 'dewalt dwt-dck212s2 12v max drill, driver, recip combo kit', 796206.84),
(122, 'jgb enterprises 001-0121-050i eagle air 300 no. red jackhammer hose cpld chicago fittings crimped', 642019.38),
(123, 'campbell hausfeld 62-piece air tool kit', 906944.28),
(124, 'eclipse 900-015 helping hands soldering aid', 354436.62),
(125, 'titan professional workbench', 883959.36),
(126, 'ingersoll rand 0.5 port ptfe diaphragm pump with polypropylene seat', 9446.87),
(127, 'black & decker smart select linefinder orbital jigsaw, js670v', 307904.74),
(128, 'i-bond cordless hot glue gun, pink', 869197.37),
(129, 'bostitch air regulator and gauge, npt, #iregulator', 338508.60),
(130, '12-volt lith-ion drill w/ bonus case & 150-piece socket set', 42681.05),
(131, 'primefit 17-piece air compressor accessory kit', 542283.64),
(132, 'bon-aire 12 volt all in one compressor in a bag, yellow', 758108.78),
(133, 'eclipse 902-133 solder tip for 900-066n solder station 1.0 mm dia pencil tip', 676713.67),
(134, 'vermont american 10 60 tpi 10x titanium carbide circular saw blades 27833', 991669.95),
(135, 'skil 2350-01 4-volt lithium-ion screwdriver and led flashlight', 342495.21),
(136, 'hitachi 3 1/2" full-head plastic collated framing strip nailer', 306619.97),
(137, 'buffalo tools 4.8v cordless screwdriver', 752054.80),
(138, 'wagan cordless spotlight compressor', 910813.54),
(139, 'stanley fatmax 7a hammer drill, fme140', 748583.29),
(140, 'bostitch gravity feed spray air gun, 1/4 npt, btmt72393', 185860.90),
(141, 'professional woodworker pneumatic brad nailer and air stapler combo tool kit', 294640.64),
(142, 'mini glue sticks 4" 25/pkg-opal/glitter', 965503.02),
(143, 'bosch 4100-09 10" 4.4 hp worksite table saw', 723027.56),
(144, 'dremel multi-max mm40 tool kit, mm40-01', 98678.93),
(145, 'metabo w8-115qwc compact class professional series angle grinder, 4 1/2" wheel', 285757.51),
(146, 'black & decker matrix trim saw head attachment, bdcmtts', 793821.57),
(147, 'bosch 4395-01 orbital action jigsaw', 770883.62),
(148, '12-volt lith-ion drill w/ bonus case & 150-piece socket set', 640519.72),
(149, '12-volt lith-ion max drill w/bonus tools set & bag', 893554.23),
(150, 'black & decker 18v hiper drill and accessory set, hpd18ak-2', 293798.50),
(151, 'motor trend cpm-0610 110-volt ac home air compressor', 659525.84),
(152, 'black & decker 7.2-volt lithium drill/driver, ldx172c', 601502.08),
(153, 'ingersoll rand 705-93 trigger', 189619.19),
(154, 'black & decker 4-volt max gyro screwdriver, bdcs40g', 488835.12),
(155, 'dual-temp mini glue gun kit, red dual-temp mini glue gun kit, red', 466050.62),
(156, 'skil 4v max lithium-ion screwdriver, 2354-06', 483886.65),
(157, 'rockwell shopseries 12 amp 7 1/4" circular saw', 890620.84),
(158, 'california air tools 10 gallon ultra quiet and oil-free 2.0 hp steel tank air compressor', 187397.32),
(159, 'rockwell shopseries 7 amp 1/2" hammer drill', 345437.41),
(160, 'homak 2 door mobile cabinet with shelves', 838240.63),
(161, 'vim products hbr3 double ended 1/4-inch hex bit ratchet', 924847.21),
(162, 'bostitch 50 ft air compressor hose prozhoze, 3/8" x 50, pro-3850', 997796.29),
(163, 'dremel ez407sa-01 ez drum mandrel', 608852.85),
(164, 'black & decker matrix sanding head attachment, bdcmts', 131952.15),
(165, 'black & decker matrix impact driver head attachment, bdcmti', 710392.99),
(166, 'bosch 4100-09 10" 4.4 hp worksite table saw', 884855.71),
(167, 'black & decker 109-piece basic project set, 71-0109', 929023.78),
(168, 'weller sp23lk general duty soldering iron kit', 255349.21),
(169, 'campbell hausfeld 2-1/2 finish nailer (16 gauge)', 649908.30),
(170, 'gmc power equipment 1.6 gallon gmc syclone 1650a ultra quiet and oil-free air compressor', 862489.78),
(171, 'stalwart 8-in-1 multipurpose lighted magnetic driver with bits', 748392.52),
(172, 'ad tech hi-temp project pro mini size glue gun', 443530.28),
(173, 'century drill and tool reciprocating saw blade (set of 4)', 496235.96),
(174, 'stack-on steel diy workbench so-382b', 604693.63),
(175, 'stanley fatmax 20-volt lithium cordless hammer drill, fmc620la', 255808.37),
(176, 'eclipse 900-099 soldering stand w/reel holder', 346114.29),
(177, 'bostitch 29-piece screwdriving set, bsa229sdm', 923929.06),
(178, 'warp brothers fcp-12 flex-o-glaze cleaner and polisher - 12 oz.', 727173.56),
(179, 'tennsco corp. plastic laminate top workbench with shelf, rails & riser', 618796.71),
(180, 'qep glass cutting blade', 212470.18),
(181, 'buffalo tools 4.8v cordless screwdriver', 853554.02),
(182, 'master magnetics 7269 36-inch retrieval magnet', 242821.68),
(183, 'drill america 3/16-1/2x16ths step drill bit', 510987.82),
(184, 'custom accessories 59008 250-psi compressor', 676587.43),
(185, '26-piece drill and drive set', 818849.14),
(186, 'hitachi 18v lithium ion driver drill', 226465.87),
(187, 'campbell hausfeld 34-piece gravity feed spray gun kit', 358075.10),
(188, 'rikon 1.2 amp 120 v 16 scroll saw', 423600.17),
(189, 'hitachi 9" 6 tpi wood/nail reciprocating blade, 25pk', 941221.87),
(190, 'black & decker matrix trim saw head attachment, bdcmtts', 37802.32),
(191, 'ultra steel 3.0 amp jig saw', 140712.72),
(192, 'black and decker 3.6 volt lithium ion screwdriver, li3100', 99079.69),
(193, 'chicago power tools power drill accessory set, 75-piece', 881732.87),
(194, 'powermate proforce 10 gallon portable air tank', 546144.86),
(195, 'california air tools 4.6 gallon ultra quiet and oil-free 2.0 hp aluminum twin tank air compressor', 39050.58),
(196, 'eclipse ss-206e temperature controlled soldering station with analog display', 182561.30),
(197, 'stanley bostitch gr25-2 glueshot dual melt high/low temperature glue gun', 477628.23),
(198, 'hoover ch82010 ground command super heavy-duty air mover, 12 a, 30 lbs, black', 676601.79),
(199, 'bosch/rotozip/skil 2354-01 4-volt lithium ion cordless screwdriver', 681144.56),
(200, 'black & decker vs jig saw, js515', 188373.09),
(201, 'hitachi 3.25 framing nailers nr83a2', 638646.04),
(202, 'black and decker dragster 3" x 21" belt sander, ds321', 254516.96),
(203, 'black & decker 7.2-volt lithium drill/driver, ldx172c', 266268.65),
(204, 'kawasaki heavy duty 0.5 6.6a hammer drill', 479686.06),
(205, 'bostitch air compressor blowgun, btfp72330', 477737.15),
(206, 'fry technologies cookson elect am33505 50/50 solder solid wire', 563489.24),
(207, 'dremel ez lock starter kit', 374194.36),
(208, 'ingersoll rand hammer pin', 185805.83),
(209, 'bostitch air tool inline lubricator, 1/4 npt, btfp72641', 581503.71),
(210, 'weller analog soldering station, wes51', 252010.47),
(211, 'wen apex pro 12v 3/8 lithium ion cordless drill/driver', 842792.34),
(212, 'ridgid tube cutter wheels - f158 10-15-20 thin whl (set of 12)', 198078.96),
(213, 'drill america cone carbide burr 1/4 shank', 787574.05),
(214, 'rockwell shopseries 12-volt cordless drill/driver kit', 224738.75),
(215, 'bostitch 6 amp orbital jig saw and bonus jig saw blade bundle', 698850.10),
(216, 'lumberjack tools ttr0500 1/2in pro series tenon cutter', 986387.10),
(217, 'vermont american 7 to 7-1/4 masonry circular saw blades 28052', 829295.58),
(218, 'irwin industrial tool 372956p5 5-count 9" 6 tpi nail embedded reciprocating saw', 936650.48),
(219, 'dremel 4200 rotary tool with ez change, 4200-6/40', 760788.39),
(220, 'bostitch 100 ft air compressor hose prozhoze, 3/8" x 100, pro-38100', 26054.85),
(221, 'bosch ros10 5" palm-grip random orbit sander', 732541.94),
(222, 'all power 3.5 peak hp, 6-gallon air compressor with accessories', 71791.13),
(223, 'bosch 7292-02 2 amp 1/4 sheet palm sander', 196998.50),
(224, 'arrow fastener plier type stapler', 954098.09),
(225, 'california air tools 4.6 gallon ultra quiet and oil-free 2.0 hp aluminum twin tank air compressor', 905094.90),
(226, 'bostitch 7 amp 4.5" angle grinder, bte820k', 933071.28),
(227, 'ingersoll rand 0.5 port ptfe diaphragm pump with polypropylene seat', 19811.28),
(228, 'astro pneumatic grease gun mini 3oz cap w/ needle nozzle', 184091.52),
(229, 'wagan emergency impact wrench kit', 445974.67),
(230, 'hitachi 3 1/2" full-head plastic collated framing strip nailer', 995531.12),
(231, 'bostitch 26 gallon, 150 psi, 1.8hp air compressor , btfp02028', 222647.84),
(232, 'black & decker 4-volt max gyro screwdriver, bdcs40g', 600535.24),
(233, 'black and decker pivot screwdriver, pd400lg', 320257.60),
(234, 'aaa 250psi 6-in-1 air compressor', 982722.75),
(235, 'titan 16048 48 piece quick-disconnect drill and power bit set with portable bit cases', 26691.33),
(236, 'black & decker 4-amp corded drill/driver', 126452.60),
(237, 'bostitch 37-piece quick load screwdriving set, bsa237qlm', 694333.20),
(238, 'dremel universal carbide flush cut blade, mm485', 514336.97),
(239, 'cgw abrasives z-thru flap discs - 4 1/2 x 7/8 z-80 t27 z-thru flap disc', 493457.78),
(240, 'dremel minimite rotary tool w/bonus tools set & bag', 412051.89),
(241, 'stalwart grease gun with accessories', 907217.26),
(242, 'ingersoll rand 0.5 port ptfe diaphragm pump with polypropylene seat', 842926.82),
(243, 'stack-on 66" steel workbench', 580933.01),
(244, 'gmc power equipment 1.6 gallon gmc syclone 1650a ultra quiet and oil-free air compressor', 627637.29),
(245, 'black & decker 30-piece bullet screwdriving and drilling set, 71-130', 265451.19),
(246, 'fry technologies cookson elect am32406 general purpose acid core solder', 448557.82),
(247, 'gyros 40-00470 powerpro variable speed rotary tool tool only', 573482.62),
(248, 'rockwell shopseries 4.3 amp belt/disk sander', 360554.97),
(249, 'campbell hausfeld air compressor oil - 16 ounce', 92282.78),
(250, 'wilmar electric impact gun set 1/2 dr', 292440.20),
(251, 'dewalt power tools 18 volt compact lithium ion drill driver & impact driver comb', 699529.58),
(252, 'imaginisce i-bond mini glue sticks, clear', 913812.76),
(253, 'rockwell shopseries 1.5 amp corner sander kit', 236236.18),
(254, 'powryte 3/8" air impact wrench, 100101a', 344075.93),
(255, 'kawasaki 10 circular saw blade - 60t', 666034.33),
(256, 'black and decker 1/2" 7-amp variable speed drill, dr560', 883112.44),
(257, 'hitachi 18v lithium ion driver drill', 549844.67),
(258, 'black and decker dwdcd780c2 20v max lithium ion compact drill driver kit', 591179.76),
(259, '26-piece drill and drive set', 785100.86),
(260, 'kawasaki 10 piece screw extractor and drill bit set', 749385.97),
(261, 'black & decker 20-volt matrix drill, bdcdmt120', 686232.41),
(262, 'dremel multi-vise, 2500-01', 117609.26),
(263, 'bosch 2250-01 14.4 volt single speed cordless drill and driver', 345571.12),
(264, 'bostitch low-profile paper tape framing nailer, lpf33pt', 365528.27),
(265, 'skil 1810 1/4" fixed base router', 929396.19),
(266, 'campbell hausfeld general purpose spray gun', 991766.77),
(267, 'bostitch air compressor ball drain valve, btfp72327', 891259.59),
(268, 'dremel sanding/grinding mini accessory kit, 686-02', 638870.69),
(269, 'eclipse ss-206e temperature controlled soldering station with analog display', 673452.04),
(270, 'lumberjack tools hsk2 home series 2-piece starter kit', 646411.34),
(271, 'hitachi 18v lithium ion driver drill', 107518.47),
(272, 'bostitch 15 amp 7 1/4" heavy duty circular saw, bte300k', 415040.83),
(273, 'gmc power equipment 6.3 gallon gmc syclone 6310 ultra quiet and oil-free air compressor', 596775.82),
(274, 'dewalt dcf610s2r drills / drivers , power tools, n/a', 150546.28),
(275, 'bosch 4395-01 orbital action jigsaw', 89113.38),
(276, 'ridgid tube cutter wheels - f158 10-15-20 thin whl (set of 12)', 554206.29),
(277, 'bosch 94500 rip fence jigsaw', 538880.42),
(278, 'forney 72727 wire wheel brush coarse crimped with 1/4-inch hex shank 2-inch-by-.012-inch', 275024.22),
(279, 'astro pneumatic 1/4 micro mini air ratchet', 864928.35),
(280, 'black & decker 7.25" 12.0a circular saw, cs1014', 457300.96),
(281, 'bostitch 37-piece quick load screwdriving set, bsa237qlm', 581037.13),
(282, 'dewalt power tools . 38inch heavy-duty vsr pistol grip drill with keyless chuck dwd', 535737.75),
(283, 'weller sp23l featherweight soldering iron', 188807.94),
(284, 'eclipse 902-134 solder tip for 900-066n solder station', 847684.40),
(285, 'master magnetics 07047 neodymium disc magnets - 3-pack', 856061.95),
(286, 'fpc dual-temp glue gun kit', 461740.93),
(287, 'dremel minimite rotary tool w/bonus tools set & bag', 770883.22),
(288, 'black and decker 12v max lithium ion cordless drill, ldx112c', 442786.36),
(289, 'freud 12 44t diablo general purpose chop/slide miter saw blade d1244x', 168352.22),
(290, 'campbell hausfeld tl1103 5/8-inch stroke air hammer', 180373.21),
(291, 'titan 16048 48 piece quick-disconnect drill and power bit set with portable bit cases', 320018.17),
(292, 'lumberjack tools hsbk1 home series beginners kit', 260639.81),
(293, 'microflex mxbd-1000-pf black dragon x-small latex fully textured gloves', 592172.88),
(294, 'forney 72727 wire wheel brush coarse crimped with 1/4-inch hex shank 2-inch-by-.012-inch', 37433.55),
(295, 'dsr schumacher psj-2212 pro series 2200 amp jump starter', 995550.69),
(296, 'campbell hausfeld 62-piece air tool kit', 697807.96),
(297, 'black & decker matrix sanding head attachment, bdcmts', 834355.36),
(298, 'powryte 3/8" x 50 hybrid air hose', 377679.61),
(299, 'black & decker 20-volt matrix drill and flashlight combo kit, bdcdmt120fl', 125293.23),
(300, 'wagner ht1000 heat tool wagner ht1000 heat tool', 188061.58),
(301, 'ingersoll rand ring / gasket kit for ss5 electric units', 296987.09),
(302, 'allied tools 72-piece rotary tool set', 799403.43),
(303, 'irwin 7-piece drive set, 1885553', 336795.49),
(304, 'california air tools 5 gallon pressure pot with hvlp spray gun and hose', 205265.08),
(305, 'skil 1810 1/4" fixed base router', 456332.50),
(306, 'drill america flame carbide burr 1/4 shank', 166560.85),
(307, 'hitachi 4 1/2" 5 amp angle grinder', 570161.89),
(308, 'porter cable 371k compact belt sander', 609281.11),
(309, 'rockwell shopseries 4-1/2" angle grinder', 386141.24),
(310, 'dremel universal drywall jab saw blade, mm435', 412909.57),
(311, 'rikon 1.2 amp 120 v 16 scroll saw', 793254.82),
(312, 'eclipse pz2x1-15/16 bit pozidrive size 2 1-15/16in long 1/4in hex', 850305.15),
(313, 'ad tech ultimate strength mini 8" glue sticks, 24 ct', 996663.47),
(314, 'bosch cs5 7-1/4" 15-amp circular saw', 704836.38),
(315, 'stanley fatmax 20-volt lithium cordless hammer drill, fmc620la', 623904.28),
(316, 'i-bond cordless hot glue gun, pink', 344892.81),
(317, 'buffalo tools stainless steel work table', 835105.35),
(318, 'skil 5995-01 18-volt 5-3/8" circular saw', 843031.33),
(319, 'arrow fastener plier type stapler', 478783.16),
(320, 'dremel sm600 3" multi-purpose flush cut carbide wheel', 416044.63),
(321, 'dremel 7700-1/15 7.2-volt multipro cordless rotary kit with 15 accessories', 98922.83),
(322, 'bon-aire 12 volt all in one compressor in a bag, yellow', 877892.42),
(323, 'campbell hausfeld 1/2" pneumatic socket set', 314896.58),
(324, 'fry technologies cookson elect am33955 95/5 lead-free solid wire solder', 550064.15),
(325, 'buffalo tools ps07499 24-piece router bit set', 850265.39),
(326, 'ingersoll rand 244a 1/2-inch drive super duty impact wrench', 789522.11),
(327, 'great neck saw 17612 soldering iron', 507173.19),
(328, 'rsr electronics zd98 soldering station', 364507.17),
(329, 'powermate proforce 10 gallon portable air tank', 288045.50),
(330, 'lumberjack tools trh1000 1-inch home series tenon cutter', 740401.96),
(331, 'astro pneumatic grease gun mini 3oz cap w/ needle nozzle', 914434.51),
(332, 'bosch 4395-01 orbital action jigsaw', 604391.08),
(333, 'diteq gasket core drills accessories', 333523.82),
(334, 'ez kote a016-0046-0300 airless paint spray 3300 psi coupled femalexfemale', 847309.87),
(335, 'surebonder full size high temperature glue gun', 726058.63),
(336, 'rockwell shopseries 1.5 amp corner sander kit', 687935.27),
(337, 'dremel 7300-n/5 4.8v minimite cordless rotary tool', 715963.83),
(338, 'ultra steel 4-piece 18v cordless power tool kit', 638769.76),
(339, 'black & decker 12-volt matrix drill, bdcdmt112', 252942.24),
(340, 'ad tech ultimate strength mini 8" glue sticks, 24 ct', 808454.93),
(341, 'stalwart flexible drive shaft', 206824.43),
(342, 'bosch 1375a 4-1/2" angle grinder', 365300.74),
(343, 'black & decker 12-volt matrix drill, bdcdmt112', 428905.62),
(344, 'rotozip ss355-10 rotosaw', 365631.74),
(345, 'black and decker power tools gco.12sfb 12-volt cordless drill with stud sensor and st', 644121.86),
(346, 'stanley heavy duty aluminum stapler, tr150hl', 111958.95),
(347, 'fpc corporation hot melt glue sticks fprdt20', 422472.68),
(348, 'wagner ht3500 heat gun', 547237.54),
(349, 'dmt 8 inch duosharp plus benchstone fine coarse wm8fc-wb', 913007.84),
(350, 'allied tools 72-piece rotary tool set', 226142.41),
(351, 'rubbermaid wall washer replacement pads, white rcps299', 423998.58),
(352, 'campbell hausfeld exteme duty 3/8 air ratchet', 211487.25),
(353, 'campbell hausfeld 17-piece pneumatic accessory kit', 104273.49),
(354, 'dremel two speed rotary tool kit with 15 accessories 200-1-15', 918355.00),
(355, 'century drill and tool reciprocating saw blade', 369405.60),
(356, 'powryte 3/8" air ratchet wrench, 100105a', 830550.28),
(357, 'contractors tornado double blade dual saw', 659403.76),
(358, 'bosch 5580-01 7-1/4" 13 amp skilsaw circular saw', 19603.00),
(359, 'campbell hausfeld air compressor oil - 16 ounce', 89327.15),
(360, 'high-temp cordless glue gun, white', 147350.01),
(361, 'masterflow 12v 3-in-1 turbo-boost air compressor / inflator / deflator', 428970.43),
(362, 'black and decker pivot screwdriver, pd400lg', 786323.60),
(363, 'durofix-ac delco power tools dearm602-4 . 5 inch digital torque measuring adaptor', 131249.71),
(364, 'numax 3-in-1 flooring nailer', 370633.55),
(365, 'black & decker 20v smart select cordless drill', 220566.26),
(366, 'surebonder cordless high temperature glue gun', 332221.92),
(367, 'hitachi 4.5 x 5.5 sv12sg perforfeltpad', 292279.95),
(368, 'crafter gift pack-12 pieces', 187394.29),
(369, 'stalwart mouse sander set, blue, 28pc', 593146.47),
(370, 'hitachi 18-volt lithium-ion 3 tool combo kit', 736118.75),
(371, 'prevost isc 061201 safety coupler 1/4 in m style', 721455.08),
(372, 'eclipse 900-015 helping hands soldering aid', 607083.04),
(373, 'kawasaki 4.5 7.5a vs angle grinder', 366558.45),
(374, 'bostitch 50 foot air hose, 1/4 npt, btfp72334', 125889.13),
(375, 'black & decker 18v cordless drill set, gco18sfb', 303052.12),
(376, 'freud 12 44t diablo general purpose chop/slide miter saw blade d1244x', 668643.29),
(377, 'freud 12 44t diablo general purpose chop/slide miter saw blade d1244x', 558204.02),
(378, 'dremel 7300-n/5 4.8v minimite cordless rotary tool', 70796.99),
(379, 'i-bond cordless hot glue gun, pink', 916141.93),
(380, 'hoover ch82010 ground command super heavy-duty air mover, 12 a, 30 lbs, black', 339258.83),
(381, 'campbell hausfeld dual action sander', 233192.76),
(382, 'hoover ch82010 ground command super heavy-duty air mover, 12 a, 30 lbs, black', 428008.69),
(383, 'gorilla rack 4 ft. heavy-duty workbench', 80672.10),
(384, 'black & decker 1/4 sheet finisher sander, fs540', 512803.48),
(385, 'bostitch air regulator and gauge, threaded, #mregulator', 60009.57),
(386, 'bostitch 1-1/2 air pressure gauge, 1/4 or 1/8 npt(m), btfp72328', 383794.45),
(387, 'contractors tornado double blade dual saw', 446652.29),
(388, 'arrow fastener plier type stapler', 876333.52),
(389, 'hitachi 14-piece titanium drill bit set', 200632.80),
(390, 'stanley bostitch gr25-2 glueshot dual melt high/low temperature glue gun', 805903.08),
(391, 'hitachi 4 gallon twin stack air compressor', 560554.59),
(392, 'all purpose stik mini glue sticks, .27" x 4", 100/pkg', 554565.92),
(393, 'rsr electronics zd98 soldering station', 532203.91),
(394, 'bostitch 8.5 amp orbital reciprocating saw and bonus saw blade set bundle', 180822.55),
(395, 'bon-aire 12 volt all in one compressor in a bag, yellow', 351830.56),
(396, 'great neck 4.8v cordless screwdriver, 4 bits, 200rpm', 865136.07),
(397, 'hitachi 4 1/2" 5 amp angle grinder', 96763.67),
(398, 'morris products 2 carbide tipped high speed steel hole saw cutters', 348114.53),
(399, 'speare tools adjustable quick-cutter hole saw, ab 1027', 822485.41),
(400, 'hitachi 12v peak 2 tool li-ion drill combo kit with carrying bag', 221531.27),
(401, 'hitachi 18 v post li-ion driver drill', 106233.63),
(402, 'skil 1400-02 multi-tasker 2.0a oscillating tool kit', 963738.92),
(403, 'century drill and tool reciprocating saw blade (set of 4)', 493939.41),
(404, 'buffalo tools ps07499 24-piece router bit set', 205946.96),
(405, 'skil 2260-01 18-volt cordless 3/8-inch drill/driver kit', 791736.16),
(406, 'arrow fastener powershot heavy duty forward action stapler', 125259.54),
(407, 'powryte 3/8" x 50 hybrid air hose', 267944.91),
(408, 'black & decker 7.5-amp reciprocating saw', 100914.54),
(409, 'black & decker 7.5-amp reciprocating saw', 879509.90),
(410, 'rockwell rk3440k versacut circular saw kit', 874049.72),
(411, 'stanley sharpshooter stapler, tr250a', 492117.21),
(412, 'bostitch 50 ft air compressor hose prozhoze, 3/8" x 50, pro-3850', 716401.57),
(413, 'stanley tr45 light duty staple gun', 500091.88),
(414, 'black & decker 68-piece project kit with 20v lithium drill/driver, li2000pk', 353092.89),
(415, 'hitachi 12v peak 2 tool li-ion combo kit with carrying bag', 185675.92),
(416, 'bostitch air compressor ball drain valve, btfp72327', 178185.88),
(417, 'powryte 3/8" x 50" pvc air hose', 893101.34),
(418, 'campbell hausfeld dual action sander', 243699.29),
(419, 'bosch power tools 3/16 x 6 bluegranite industrial hammer drill bits hcbg04', 577283.03),
(420, 'black & decker workmate 425 550-pound capacity portable work bench, wm425', 453657.52),
(421, 'skil 2260-01 18-volt cordless 3/8-inch drill/driver kit', 356874.97),
(422, 'stalwart portable air compressor kit with light', 730437.36),
(423, 'gmc power equipment 1.6 gallon gmc syclone 1610a ultra quiet and oil-free air compressor', 334402.58),
(424, 'bostitch 18v lithium drill/impact combo kit and bonus 25-piece impact set bundle', 782803.55),
(425, 'wen apex pro apex pro 10 table saw with stand', 510366.30),
(426, 'dewalt dc750ka 9. 6-volt cordless drill/driver kit', 650804.00),
(427, 'hitachi 5/8" hammer drill', 122395.95),
(428, 'bosch 94500 rip fence jigsaw', 854982.41),
(429, 'surebonder wide crown pneumatic stapler', 84137.02),
(430, 'surebonder wide crown pneumatic stapler', 674635.44),
(431, 'sold & shipped by wayfair.com', 421606.37),
(432, 'bosch ros10 5" palm-grip random orbit sander', 526195.74),
(433, 'powryte high speed cut-off air tool, 100106a', 137931.72),
(434, 'black & decker 17-piece workbench drill bit set, 15097', 327985.97),
(435, 'black & decker random orbit sander, ro100', 851974.28),
(436, 'ingersoll rand ring / gasket kit for ss5 electric units', 106918.36),
(437, 'california air tools 1.6 gallon ultra quiet and oil-free 1/2 hp aluminum tank air compressor', 814241.21),
(438, 'hitachi 83-piece drill and driver bit set', 427179.27),
(439, 'mr. heater stay a while deluxe', 607265.39),
(440, 'black and decker dragster 3" x 21" belt sander, ds321', 767146.71),
(441, 'hitachi 1/4" x 100 polyurethane air hose with automotive plug and coupler', 480424.36),
(442, 'lincoln industrial fully automatic pneumatic grease gun', 20963.13),
(443, 'bostitch 26 gallon, 150 psi, 1.8hp air compressor , btfp02028', 984781.48),
(444, 'eclipse 902-135 solder tip for 900-066n solder station 4mm diameter angled chisel', 403179.44),
(445, 'forney 72732 wire cup brush fine crimped with 1/4-inch hex shank 3-inch-by-.008-inch', 386372.01),
(446, 'great neck saw 80134 36-piece rotary tool set', 252174.96),
(447, 'ad tech ultimate strength mini 8" glue sticks, 24 ct', 411463.43),
(448, 'black & decker 20v max lithium drill/driver, ldx220sb', 389744.42),
(449, 'hitachi 12v peak 2 tool li-ion drill combo kit with carrying bag', 770360.51),
(450, 'fs-curtis ct5 5-hp 60-gallon vertical two-stage air compressor with thermal overload in place of sta', 645052.09),
(451, 'bostitch 6.5 amp 3/8" drill, bte100k and bonus drill bit bundle', 813584.94),
(452, 'arrow fastener plier type stapler', 1438.09),
(453, 'rockwell shopseries 18-volt cordless drill/driver kit', 682656.84),
(454, 'wen apex pro apex pro 10 table saw with stand', 200297.77),
(455, 'ultra steel 3.0 amp jig saw', 654774.76),
(456, 'campbell hausfeld air compressor oil - 16 ounce', 929045.10),
(457, 'campbell hausfeld 17-piece air accessory kit', 664600.96),
(458, 'black and decker reciprocating saw, rs600k', 337239.58),
(459, 'hitachi power tools c12lch 12" co.mpound miter saw with digital display and laser m', 475893.48),
(460, 'campbell hausfeld 3.5 round-head framing nailer kit (21 degree)', 239157.12),
(461, 'titan 22958 mini air compressor', 820305.60),
(462, 'black & decker 5.2 amp 3/8" drill and driver with storage bag, dr260bozr', 160894.21),
(463, 'black & decker 1/4 sheet finisher sander, fs540', 310331.17),
(464, 'eclipse 900-259 mini soldering station', 329611.63),
(465, 'fry technologies cookson elect am33505 50/50 solder solid wire', 748776.93),
(466, 'fry technologies cookson elect am53945 flo-temp lead-free solid wire solder', 751479.11),
(467, 'hitachi power tools c12lch 12" co.mpound miter saw with digital display and laser m', 919580.26),
(468, 'lumberjack tools tac2000 2-inch commercial series tenon cutter', 918623.29),
(469, 'bostitch .5" vsr 2-speed hammerdrill/drill and bonus 5-piece masonry set bundle', 266174.71),
(470, 'speare tools adjustable speaker-cutter hole saw, ab 1610', 174887.26),
(471, 'hitachi 4 1/2" 5 amp angle grinder', 396477.34),
(472, 'crawford adjustable height roller stand', 872081.40),
(473, 'ad tech designer series lo temp mini glue gun, multi-color', 841093.52),
(474, 'black & decker 109-piece basic project set, 71-0109', 694869.13),
(475, 'skil 2364-02 7.2-volt lithium-ion 2-speed drill/driver', 317297.28),
(476, 'gyros 45-20265 high speed steel wire gauge drill bit no.65 set of 2', 721338.93),
(477, 'titan professional workbench', 190161.52),
(478, 'speare tools adjustable quick-cutter hole saw, ab 1027', 231141.29),
(479, 'hitachi 9" 6 tpi wood/nail reciprocating blade, 25pk', 288920.84),
(480, 'hitachi 12v peak 2 tool li-ion drill combo kit with carrying bag', 52920.53),
(481, 'hitachi power tools c12lch 12" co.mpound miter saw with digital display and laser m', 536916.81),
(482, 'ingersoll rand 80 gallon type-30 reciprocating air compressor', 452368.55),
(483, 'black and decker pivot screwdriver, pd400lg', 433587.48),
(484, 'kawasaki 14.4v 20 piece cordless drill kit in black', 561927.47),
(485, 'buffalo tools pro series 12 piece router bit set', 623835.68),
(486, 'bostitch air regulator and gauge, threaded, #mregulator', 18942.47),
(487, 'dewalt power tools . 38inch heavy-duty vsr pistol grip drill with keyless chuck dwd', 81282.95),
(488, 'bostitch .5" vsr 2-speed hammerdrill/drill and bonus 5-piece masonry set bundle', 452520.17),
(489, 'dremel 8300-01 12v cordless multi-max oscillating kit, refurbished', 685551.03),
(490, 'hyundai hpc11090 11-gal air compressor kit', 397706.15),
(491, 'crawford adjustable height roller stand', 698600.89),
(492, 'bostitch air regulator & gauge kit, 1/4 npt, btfp72326', 41709.63),
(493, 'bostitch gravity feed spray air gun, 1/4 npt, btmt72393', 240713.53),
(494, 'black & decker 5.2a 3.25" planer kit, 7698k', 359251.23),
(495, 'black & decker 17-piece workbench drill bit set, 15097', 872956.76),
(496, 'vermont american 10 40 tpi 10x titanium carbide circular saw blades 27831', 876791.36),
(497, 'bostitch 26 gallon, 150 psi, 1.8hp air compressor , btfp02028', 740611.73),
(498, 'speare tools adjustable quick-cutter hole saw, ab 1027', 738140.21),
(499, 'skil 5480-01 7-1/4-inch skilsaw circular saw', 992321.08),
(500, 'century drill and tool reciprocating saw blade', 412106.13),
(501, 'buffalo tools ps07499 24-piece router bit set', 824581.82),
(502, 'swisher 28 ton 8.75 gross torque log splitter, lsrb875281350', 287383.08),
(503, 'black & decker 58-piece project kit with 12v lithium drill/driver, ldx172pk', 113178.52),
(504, 'alton 2 gallon pancake air compressor', 307414.68),
(505, 'hitachi 18v lithium-ion 1/2" cordless hammer drill', 175401.54),
(506, 'rockwell shopseries 12-volt cordless drill/driver kit', 490724.46),
(507, 'high-temp cordless glue gun, white', 393208.07),
(508, 'black and decker power tools gco.12sfb 12-volt cordless drill with stud sensor and st', 708023.38),
(509, 'rockwell shopseries 4-1/2" angle grinder', 742276.94),
(510, 'freeman pf3p6galck freeman ultimate finishing kit with 6 gallon compressor, 3 nailers, canvas carry', 9773.67),
(511, 'hitachi power tools c12lch 12" co.mpound miter saw with digital display and laser m', 380218.67),
(512, 'ad tech 2-temp full size cordless glue gun', 445901.13),
(513, 'black & decker 6v high performance screwdriver, pd600', 404694.59),
(514, 'gyros 40-00470 powerpro variable speed rotary tool tool only', 37736.49),
(515, 'skil 2260-01 18-volt cordless 3/8-inch drill/driver kit', 395163.98),
(516, 'black & decker 7750a 4-1/2-inch small angle grinder', 961378.24),
(517, 'bosch power tools 3/16 x 6 bluegranite industrial hammer drill bits hcbg04', 987326.10),
(518, 'freud 12 44t diablo general purpose chop/slide miter saw blade d1244x', 207484.72),
(519, 'legacy mfg straight-on tapered chuck inflator w/ 12 in. hose, brass indicator bar, 10-90 psi', 224598.67),
(520, 'qep glass cutting blade', 886619.86),
(521, 'lumberjack tools trh1000 1-inch home series tenon cutter', 904335.80),
(522, 'diteq gasket core drills accessories', 858925.12),
(523, 'black & decker matrix sanding head attachment, bdcmts', 346727.78),
(524, 'ad tech multi-temp mini size 4" glue sticks, 100 ct', 654918.29),
(525, 'plews & edelmann lever-action grease gun, 6" extension, 6, 000psi, 14oz cartridge', 610856.36),
(526, 'great neck saw 17612 soldering iron', 409106.92),
(527, 'hitachi 12v peak 2 tool li-ion combo kit with carrying bag', 955240.14),
(528, 'fry technologies cookson elect am53945 flo-temp lead-free solid wire solder', 203949.87),
(529, 'kd tools engraver electric vibro', 470061.42),
(530, 'skil 74102 10in 200 tooth steel circular saw blade', 288232.88),
(531, 'black & decker 20-volt lithium drill and 133 pieces home project kit, ld120pk', 116405.14),
(532, 'black and decker dwdcd780c2 20v max lithium ion compact drill driver kit', 826493.72),
(533, 'wagner ht1000 heat tool', 606178.19),
(534, 'bosch 6335-01 7 amp 1/2" corded drill', 405715.99),
(535, 'kawasaki composite air hammer kit', 497452.15),
(536, 'fpc corporation surebonder dual melt high/low temperature glue gun fprdt270', 488711.29),
(537, 'lincoln industrial 18 volt cordless grease gun w/ 2 batteries', 806947.08),
(538, 'fry technologies cookson elect am53945 flo-temp lead-free solid wire solder', 392649.88),
(539, 'weller sp40l lightweight soldering iron', 238039.90),
(540, 'imaginisce i-bond mini glue sticks, clear', 483937.12),
(541, 'powermate 6 gallon proforce pancake air compressor with extra value kit', 563449.52),
(542, 'ultra steel 1.5 amp palm sander', 930538.30),
(543, 'campbell hausfeld air compressor oil - 16 ounce', 701663.33),
(544, 'black & decker 109-piece basic project set, 71-0109', 119032.73),
(545, 'wen apex pro apex pro 10 table saw with stand', 890889.32),
(546, 'fs-curtis ct5 5-hp 60-gallon vertical two-stage air compressor with thermal overload in place of sta', 320855.00),
(547, 'mk diamond mk-370exp 7-inch wet cutting tile saw', 40133.30),
(548, 'surebonder full size low temperature glue gun', 240707.45),
(549, 'powermate 6 gallon proforce pancake air compressor with extra value kit', 660826.53),
(550, 'dremel sanding/grinding mini accessory kit, 686-02', 75982.04),
(551, 'eclipse pz2x1-15/16 bit pozidrive size 2 1-15/16in long 1/4in hex', 731804.76),
(552, 'hitachi 18v lithium-ion cordless impact driver w/120-pc drill/drive set', 800810.89),
(553, 'crawford storehorse folding sawhorse', 793527.38),
(554, 'jflint products 306 mr hard water- power tool system', 719301.36),
(555, 'imaginisce i-bond mini glue sticks, clear', 513017.10),
(556, 'powermate 10 gallon proforce oil free vertical air compressor', 332454.36),
(557, 'irwin 7-piece drive set, 1885553', 808507.63),
(558, 'buffalo tools electric 110v 3/8 vsr drill', 170690.64),
(559, 'retractable screw-holder with magnetic tip', 412249.99),
(560, 'skil 2364-02 7.2-volt lithium-ion 2-speed drill/driver', 162918.76),
(561, 'aaa 300psi air compressor', 912010.79),
(562, 'stanley fatmax 20-volt lithium cordless hammer drill, fmc620la', 63401.48),
(563, 'rockwell shopseries 18-volt cordless drill/driver kit', 917787.09),
(564, 'porter cable 352vs 3" x 21" variable speed belt sander', 424659.32),
(565, 'numax 2" brad nailer', 12076.65),
(566, 'skil 9295-01 4-1/2" angle grinder', 89274.07),
(567, 'skil 2364-02 7.2-volt lithium-ion 2-speed drill/driver', 662218.50),
(568, 'black & decker 18v hiper drill and accessory set, hpd18ak-2', 442318.47),
(569, 'rockwell shopseries 18-volt cordless drill/driver kit', 795019.80),
(570, 'legacy mfg 3/8 x 100 flex air hose yellow', 1469.13),
(571, 'bostitch 18v lithium .25" hex chuck impact driver kit, btc440lb', 390902.99),
(572, 'powryte 3/8" air drill, 100114a', 871509.46),
(573, 'black & decker 20v max lithium drill/driver, ldx220sb', 271551.72),
(574, 'skil 3410-02 10" table saw', 217375.01),
(575, 'irwin 7-piece drive set, 1885553', 396548.70),
(576, 'surebonder ultra-full size dual temperature glue gun', 44235.50),
(577, 'black & decker matrix impact driver head attachment, bdcmti', 6444.19),
(578, 'bostitch 50 foot air hose, 1/4 npt, btfp72334', 59073.49),
(579, 'bostitch 3/8" air ratchet, btmt72392', 48361.26),
(580, 'dremel universal multi-knife blade, mm430', 336160.67),
(581, 'campbell hausfeld tl1103 5/8-inch stroke air hammer', 582545.79),
(582, 'black & decker 1375w heat gun', 544725.32),
(583, 'blair 11108-3 11000 series rotobroach cutters - 3/8-inch - 3-pack', 521746.86),
(584, 'superior tool 2" pvc pipe cutter', 12549.70),
(585, 'bostitch .5" vsr 2-speed hammerdrill/drill and bonus 5-piece masonry set bundle', 718127.22),
(586, 'bostitch 6 gallon, 135 psi, air compressor, btfp02006', 301462.30),
(587, 'century drill and tool jig saw blade (set of 5) (set of 5)', 343346.67),
(588, 'buffalo tools 1500 watt heat gun', 932546.22),
(589, 'powryte 3/8" air ratchet wrench, 100105a', 855945.41),
(590, 'black and decker dwdcd780c2 20v max lithium ion compact drill driver kit', 608849.84),
(591, 'speare tools adjustable speaker-cutter hole saw, ab 1610', 906218.28),
(592, 'wagan hi speed air compressor', 695560.25),
(593, 'powermate 10 gallon proforce oil free vertical air compressor', 973080.59),
(594, 'bosch power tools 29 piece high speed steel drill set with metal case 96029', 801710.19),
(595, 'striker adjustable garage parking sensor', 681269.33),
(596, 'black & decker 160 psi air station inflator', 298886.83),
(597, 'eclipse 900-015 helping hands soldering aid', 822513.69),
(598, 'edsal heavy-duty workbench, ub400', 262073.20),
(599, 'skil 120v 1-3/4 hp fixed base router, 1817', 453586.53),
(600, 'metabo w8-115qwc compact class professional series angle grinder, 4 1/2" wheel', 142280.24),
(601, 'dual-temp mini glue gun kit, red dual-temp mini glue gun kit, red', 810577.08),
(602, 'dremel 560 drywall cutting bit', 12248.12),
(603, 'black & decker lithium-ion smartdriver with exclusive magnetic screw-holder', 546093.23),
(604, 'campbell hausfeld 17-piece pneumatic accessory kit', 263058.76),
(605, 'black & decker 20v max lithium drill/driver, ldx220sb', 238823.86),
(606, 'black & decker 20-volt matrix drill, bdcdmt120', 484486.18),
(607, 'wen apex pro 12v 3/8 lithium ion cordless drill/driver', 658007.65),
(608, 'aaa 300psi air compressor', 14417.25),
(609, 'bostitch low-profile paper tape framing nailer, lpf33pt', 694526.66),
(610, 'masterflow 12v portable air compressor / inflator', 387430.68),
(611, 'black and decker inc dcf895d2 20v max brushless . 25 inch hex 3-speed . 25 inch impact driver', 641862.32),
(612, 'wagan hi speed air compressor', 9976.08),
(613, 'hitachi 18v lithium-ion impact wrench (tool body only)', 960929.70),
(614, 'gmc power equipment 6.3 gallon gmc syclone 6310 ultra quiet and oil-free air compressor', 715527.74),
(615, 'campbell hausfeld 13 gallon electric oil free horizontal air compressor', 270385.09),
(616, 'stalwart mouse sander set, blue, 28pc', 49196.33),
(617, 'campbell hausfeld 2 brad nailer (18 guage)', 936542.68),
(618, 'lumberjack tools hsk3 home series 3-piece master kit', 854797.03),
(619, 'wagner ht3500 heat gun', 803330.83),
(620, 'chicago power tools power drill accessory set, 75-piece', 911143.30),
(621, 'guardair the inforcer air gun w/60 aluminum ext. & contractor nozzle', 702178.93),
(622, 'ingersoll rand 705-93 trigger', 426839.16),
(623, 'campbell hausfeld 1 gallon air compressor', 954391.72),
(624, 'campbell hausfeld 62 piece air tool kit', 358181.34),
(625, 'hitachi 35 piece hi-torq impact rated torsion bit set', 55104.11),
(626, 'hitachi 0.63 hammer drill 6.0 amp', 982682.05),
(627, 'black & decker lithium-ion smartdriver with exclusive magnetic screw-holder', 679603.76),
(628, 'superior tool 2" pvc pipe cutter', 426534.70),
(629, 'ad-tech: high-temp glue sticks, 5/16" x 4", 100pk', 541576.06),
(630, 'striker adjustable garage parking sensor', 909046.17),
(631, 'microflex mxbd-1000-pf black dragon x-small latex fully textured gloves', 61205.33),
(632, 'dixon valve air chief industrial quick connect fittings - dc25 septls238dc25', 97251.31),
(633, 'skil 4-position orbital jigsaw with laser guide, 4495-02', 262220.44),
(634, 'dremel universal multi-knife blade, mm430', 941833.85),
(635, 'rsr electronics zd98 soldering station', 444693.78),
(636, 'great neck 4.8v cordless screwdriver, 4 bits, 200rpm', 738956.57),
(637, 'hitachi 12v peak li-ion 2 speed drill/driver', 499100.68),
(638, 'black and decker 1/2" 7-amp variable speed drill, dr560', 495125.85),
(639, 'alphafry soldering paste flux & brush am51011', 901863.69),
(640, 'wagan cordless spotlight compressor', 292887.63),
(641, 'gyros 45-20265 high speed steel wire gauge drill bit no.65 set of 2', 519005.06),
(642, 'ad tech multi-temp standard 10" glue sticks, 24 ct', 608693.75),
(643, 'eclipse 900-206 helping hands with solder iron holder - 2.5x', 38901.06),
(644, 'forney 72725 wire wheel brush coarse crimped with 1/4-inch hex shank 1-1/2-inch-by-.012-inch', 31048.48),
(645, 'porter cable 1/2 18v cordless driver', 744387.58),
(646, 'wagan heavy-duty air compressor', 693013.95),
(647, '12-volt lith-ion max drill w/bonus tools set & bag', 146145.49),
(648, 'california air tools 5 gallon pressure pot with hvlp spray gun and hose', 859928.66),
(649, 'dremel 8v max cordless rotary tool, 8100-n/21', 851563.63),
(650, 'hanson #8 torx bit', 407995.29),
(651, 'metabo w8-115qwc compact class professional series angle grinder, 4 1/2" wheel', 694921.97),
(652, 'qep tile tools 60089 7" portable tile saw', 565080.19),
(653, 'rockwell shopseries 13 amp 7 1/4" circular saw', 255175.04),
(654, 'campbell hausfeld 3.5 round-head framing nailer kit (21 degree)', 950109.33),
(655, '12-volt lith-ion drill w/ bonus case & 150-piece socket set', 226883.45),
(656, 'bostitch prozhoze, 3/8" x 100, hopb38100', 95947.77),
(657, 'black and decker 3/8" 5-amp variable speed drill with keyless chuck, dr260b', 868603.82),
(658, 'black & decker 4-amp corded drill/driver', 742338.16),
(659, 'mini glue sticks 4" 25/pkg-gold/silver', 752593.07),
(660, 'black & decker 68-piece project kit with 20v lithium drill/driver, li2000pk', 975700.12),
(661, 'proxxon engraving tool', 991927.33),
(662, 'weller sp80l medium duty soldering iron', 22331.77),
(663, 'worx semi automatic sd driver, wx254l', 878615.83),
(664, 'black & decker 5.2a 3.25" planer kit, 7698k', 187411.19),
(665, 'irwin 30-piece drive set, 1885554', 672172.19),
(666, 'wagan emergency impact wrench kit', 106393.60),
(667, 'california air tools 10 gallon ultra quiet and oil-free 2.0 hp steel tank air compressor', 16176.62),
(668, 'hitachi 18v lithium-ion 1/2" hammer drill (tool body only)', 435791.56),
(669, 'primefit garage inflator with air accessory kit and storage case', 905037.81),
(670, 'bostitch 1/4 universal air coupler, btfp72321', 170388.88),
(671, 'bostitch 6.5 amp 3/8" drill, bte100k and bonus drill bit bundle', 189482.41),
(672, 'stanley fatmax 12v cordless drill, fmc010lb', 512772.06),
(673, 'swisher 28 ton 8.75 gross torque log splitter, lsrb875281350', 602925.03),
(674, 'got air heavy duty portable air compressor, pump, inflator', 233397.39),
(675, 'bostitch 6.5 amp 3/8" drill, bte100k', 158093.82),
(676, 'campbell hausfeld lever safety blowgun kit', 605593.37),
(677, 'great neck saw 17612 soldering iron', 341018.86),
(678, 'mr. heater stay a while deluxe', 655909.08),
(679, 'skil 3410-02 10 in. table saw with floor stand', 795271.61),
(680, 'bosch 2240-01 12 volt cordless drill and driver', 777656.45),
(681, 'paasche air brush millenium dbl action airbrush kit', 511338.94),
(682, 'masterflow 12v portable air compressor / inflator', 871586.59),
(683, 'ingersoll rand ring / gasket kit for ss5 electric units', 923012.09),
(684, 'skil 3410-02 10" table saw', 525240.73),
(685, 'skil 10 count u shank jigsaw blade set 94910', 664084.82),
(686, 'dewalt speed tip 14 piece titanium drill bit set dw1341', 260096.46),
(687, 'legacy mfg 3/8 x 100 flex air hose yellow', 94524.46),
(688, 'gyros 45-20265 high speed steel wire gauge drill bit no.65 set of 2', 267298.16),
(689, 'hot glue gun helpers kit-7 pieces', 496267.79),
(690, 'dremel 4000-1/26 120v variable speed rotary tool', 38236.50),
(691, 'rockford 1-gallon air compressor', 136192.57),
(692, 'hitachi 18v lithium ion 6 1/2" circular saw (tool body only)', 860882.93),
(693, 'hitachi 14-piece titanium drill bit set', 159534.42),
(694, 'campbell hausfeld 62 piece air tool kit', 797563.74),
(695, 'skil 3410-02 10" table saw', 613602.16),
(696, 'kawasaki 14.4v 20 piece cordless drill kit in black', 751378.34),
(697, 'black & decker 7.5-amp reciprocating saw', 302251.93),
(698, 'audiopipe 76b8prt nippon battery powered cordless soldering iron 8 watts', 848953.87);
INSERT INTO `items` (`id`, `title`, `price`) VALUES
(699, 'bostitch gravity feed spray air gun, 1/4 npt, btmt72393', 770004.14),
(700, 'skil 3410-02 10 in. table saw with floor stand', 164533.73),
(701, 'bosch power tools 29 piece high speed steel drill set with metal case 96029', 535338.46),
(702, 'wagner 0283022c ht775 heat gun', 847999.77),
(703, 'all purpose stik mini glue sticks, .27" x 4", 100/pkg', 900623.15),
(704, 'irwin industrial tool 372956p5 5-count 9" 6 tpi nail embedded reciprocating saw', 826425.88),
(705, 'paasche air brush millenium dbl action airbrush kit', 816986.25),
(706, 'ad tech hi-temp project pro mini size glue gun', 269882.77),
(707, 'dremel carving/engraving mini accessory kit, 689-03', 572510.16),
(708, 'eclipse pz2x1-15/16 bit pozidrive size 2 1-15/16in long 1/4in hex', 57811.02),
(709, 'irwin industrial tool 372956p5 5-count 9" 6 tpi nail embedded reciprocating saw', 588339.62),
(710, 'buffalo tools ps07215 18-volt cordless drill kit', 178327.85),
(711, 'allied tools 72-piece rotary tool set', 577176.18),
(712, 'campbell hausfeld 3.5 round-head framing nailer kit (21 degree)', 730935.26),
(713, 'california air tools 1.6 gallon ultra quiet and oil-free 1.0 hp aluminum tank air compressor', 360353.11),
(714, 'skil 7-1/4" 40-tooth carbide tipped circular saw blade, 75740w', 390479.28),
(715, 'primefit 25-piece air compressor accessory kit', 12034.31),
(716, 'weller welwes51 analog soldering station with power unit, soldering pencil, stand and sponge', 499722.03),
(717, 'lumberjack tools tta2000 2in industrail series tenon cutter', 851470.22),
(718, 'imaginisce i-bond mini glue sticks, clear', 578010.93),
(719, 'hitachi 18v lithium-ion cordless impact driver w/120-pc drill/drive set', 426715.28),
(720, 'wen wen 10 15 amp sliding compound miter saw', 918358.10),
(721, 'bostitch 6.5 amp 3/8" drill, bte100k and bonus drill bit bundle', 706426.38),
(722, 'titan master drill & bit 204pc set w/4fold cs', 64511.27),
(723, 'skil 4-position orbital jigsaw with laser guide, 4495-02', 541611.53),
(724, 'kawasaki 6 bench grinder', 548649.87),
(725, 'ingersoll rand 1/2 titanium imp wr w/2 ext', 288394.20),
(726, 'wen 6 waxer/polisher', 80159.97),
(727, 'dremel 4200 rotary tool with ez change, 4200-6/40', 648543.41),
(728, '10-count 10" glue sticks', 923124.10),
(729, 'jgb enterprises 001-0121-050i eagle air 300 no. red jackhammer hose cpld chicago fittings crimped', 29853.17),
(730, 'bosch cs5 7-1/4" 15-amp circular saw', 16939.57),
(731, 'buffalo tools stainless steel work table', 437230.62),
(732, 'century drill and tool jig saw blade (set of 5) (set of 5)', 278698.34),
(733, 'acme automotive inline adj air regulator', 351979.86),
(734, 'eclipse ss-206e temperature controlled soldering station with analog display', 791101.99),
(735, 'dremel sm520 3" masonry cut-off wheel', 656290.50),
(736, 'black & decker 5.2 amp 3/8" drill and driver with storage bag, dr260bozr', 304848.33),
(737, 'wen apex pro apex pro 10 table saw with stand', 218018.95),
(738, 'dewalt power tools dck290l2 20 volt max lithium ion hammerdrill-impact driver co', 764336.73),
(739, 'dremel mm501 1/16" grout removal blade', 713774.51),
(740, 'dremel multi-max mm40 tool kit, mm40-01', 760550.63),
(741, 'arrow fastener powershot heavy duty forward action stapler', 973009.18),
(742, 'bostitch 6 gallon, 135 psi, air compressor, btfp02006', 801063.54),
(743, 'bostitch 26 gallon, 150 psi, 1.8hp air compressor , btfp02028', 49792.50),
(744, 'campbell hausfeld 3.5 round-head framing nailer kit (21 degree)', 705880.74),
(745, 'vermont american 10 60 tpi 10x titanium carbide circular saw blades 27833', 240402.76),
(746, 'ingersoll rand ring / gasket kit for ss5 electric units', 946499.51),
(747, 'drill america 3/16-1/2x16ths step drill bit', 872564.50),
(748, 'powryte 3/8" air impact wrench, 100101a', 266998.55),
(749, 'bosch 4100-09 10" 4.4 hp worksite table saw', 295530.45),
(750, 'ingersoll rand hammer pin', 898626.44),
(751, 'hot glue gun helpers kit-7 pieces', 639277.47),
(752, 'astro pneumatic 9707 1/4-inch drive mini gearless ratchet', 307354.09),
(753, 'skil 6277-02 3/8" corded drill', 516528.76),
(754, 'campbell hausfeld 62-piece air tool kit', 916911.68),
(755, 'powermate 10 gallon proforce oil free vertical air compressor', 484414.90),
(756, 'lincoln industrial grease gun cordless with case, two batteries', 113298.49),
(757, 'ingersoll rand 107xpa 3/8-inch drive air ratchet', 225260.07),
(758, 'black & decker 16" 3.4 amp powered handsaw with storage bag, phs550b', 61611.49),
(759, 'dmt 8 inch duosharp plus benchstone fine coarse wm8fc-wb', 650765.11),
(760, 'powryte 3/8" air ratchet wrench, 100105a', 218886.78),
(761, 'dremel ez407sa-01 ez drum mandrel', 473919.85),
(762, 'stanley fatmax 3/8" corded drill, fme105', 689712.97),
(763, 'ingersoll rand ring / gasket kit for ss5 electric units', 862103.93),
(764, 'dremel carving/engraving mini accessory kit, 689-03', 792510.05),
(765, 'dremel lawn and garden rotary tool kit, 100-lg', 107439.91),
(766, 'black & decker 5.2 amp 3/8" drill and driver with storage bag, dr260bozr', 947046.90),
(767, 'skil 3410-02 10" table saw', 491585.92),
(768, 'professional woodworker 18 gauge brad nailer with 2-gallon 100 psi twin stack compressor combo kit', 587096.76),
(769, 'wen apex pro 12v 3/8 lithium ion cordless drill/driver', 737460.32),
(770, 'black & decker 68-piece project kit with 20v lithium drill/driver, li2000pk', 590830.75),
(771, 'eclipse 902-134 solder tip for 900-066n solder station', 326167.71),
(772, 'vim products hbr3 double ended 1/4-inch hex bit ratchet', 315974.13),
(773, 'alphafry soldering paste flux & brush am51011', 100556.61),
(774, 'hitachi power tools db3dl2 3.6-volt lithium ion dual position handle screwdriver', 852877.17),
(775, 'black and decker pivot screwdriver, pd400lg', 704926.20),
(776, 'kawasaki composite air hammer kit', 458082.47),
(777, 'hitachi 4 1/2" 6 amp angle grinder with 5 abrasive wheels', 641573.32),
(778, 'skil 4v max lithium-ion screwdriver, 2354-06', 210930.46),
(779, 'dremel minimite rotary tool w/bonus tools set & bag', 817922.88),
(780, 'mini glue sticks 4" 25/pkg-gold/silver', 919086.18),
(781, 'dremel 7700-1/15 7.2-volt multipro cordless rotary kit with 15 accessories', 62328.70),
(782, 'gmc power equipment 1.6 gallon gmc syclone 1675a ultra quiet and oil-free air compressor', 874069.23),
(783, 'bostitch 29-piece screwdriving set, bsa229sdm', 992305.23),
(784, 'powryte 3/8" air ratchet wrench, 100105a', 679027.70),
(785, 'black and decker pivot screwdriver, pd400lg', 6619.45),
(786, 'gmc power equipment 1.6 gallon gmc syclone 1650a ultra quiet and oil-free air compressor', 507841.25),
(787, 'bosch/rotozip/skil 2354-01 4-volt lithium ion cordless screwdriver', 863624.78),
(788, 'homak 2 door mobile cabinet with shelves', 542521.28),
(789, 'black & decker 5.2a 3.25" planer kit, 7698k', 14368.44),
(790, 'black and decker 20v max lithium drill and recip saw kit, bdcd220rs', 225771.53),
(791, 'dsr schumacher psj-2212 pro series 2200 amp jump starter', 432890.75),
(792, 'dualsaw destroyer cs650 saw, refurbished', 374085.83),
(793, 'stack-on steel diy workbench so-382b', 370922.91),
(794, 'black & decker 4.5 amp variable speed jigsaw, js515ozr', 156112.84),
(795, 'eclipse 902-133 solder tip for 900-066n solder station 1.0 mm dia pencil tip', 143666.97),
(796, 'dremel 7700-1/15 7.2-volt multipro cordless rotary kit with 15 accessories', 749067.01),
(797, 'dewalt power tools 7-. 25inch worm drive circular saw dws535', 501923.75),
(798, 'bostitch 6 amp orbital jig saw, bte340k', 956182.83),
(799, 'fpc glue sticks, 4", 15/pkg, glow-in-the-dark', 278559.17),
(800, 'wagner 0283022c ht775 heat gun', 779700.49),
(801, 'ultra steel 4-piece 18v cordless power tool kit', 119831.33),
(802, 'campbell hausfeld 50 retractable hose reel', 491360.06),
(803, 'black & decker 68-piece project kit with 20v lithium drill/driver, li2000pk', 170728.55),
(804, 'ad-tech: high-temp glue sticks, 7/16" x 4", 50pk', 986220.55),
(805, 'lumberjack tools hsk2 home series 2-piece starter kit', 415107.33),
(806, 'dremel sm510 3" metal cut-off wheel', 521786.50),
(807, 'boa grabit screw extractor', 953606.58),
(808, 'black & decker 18-volt cordless drill, gco18c', 474518.19),
(809, 'bostitch 26 gallon, 150 psi, 1.8hp air compressor , btfp02028', 203215.42),
(810, 'ingersoll rand 0.5 port ptfe diaphragm pump with polypropylene seat', 647051.26),
(811, 'stack-on steel diy workbench so-382b', 830775.44),
(812, 'ad tech ultimate strength mini 8" glue sticks, 24 ct', 354706.26),
(813, 'hitachi 18v lithium-ion 4 1/2" angle grinder (tool body only)', 88018.66),
(814, 'dewalt power tools 18 volt compact lithium ion drill driver & impact driver comb', 947607.05),
(815, 'lumberjack tools hsbk1 home series beginners kit', 138016.88),
(816, 'crafter gift pack-12 pieces', 289049.60),
(817, 'hitachi 12v peak 2 tool li-ion combo kit with carrying bag', 382814.87),
(818, 'vermont american 10 60 tpi 10x titanium carbide circular saw blades 27833', 731396.71),
(819, 'dremel 8v max cordless rotary tool, 8100-n/21', 790822.06),
(820, 'goodyear heavy duty i8000 120 volt direct drive inflator', 293069.72),
(821, 'fry technologies cookson elect am33505 50/50 solder solid wire', 742165.37),
(822, 'dremel 160-piece accessory kit, 710-05', 545144.62),
(823, 'hitachi 3/8" drill', 63193.43),
(824, 'dremel circle cutter attachment, 678-01', 430235.77),
(825, 'ez kote a016-0046-0300 airless paint spray 3300 psi coupled femalexfemale', 200836.90),
(826, 'wen apex pro 12v 3/8 lithium ion cordless drill/driver', 141993.45),
(827, 'premiere pads premiere pads 50 "400" series stainless steel scrubbers large pad50', 27359.29),
(828, 'hitachi 12v peak 2 tool li-ion drill combo kit with carrying bag', 838504.77),
(829, 'bosch power tools 29 piece high speed steel drill set with metal case 96029', 590590.20),
(830, 'california air tools 10 gallon ultra quiet and oil-free 2.0 hp steel tank air compressor', 410644.12),
(831, 'hitachi 18v 1/2" cordless drill/driver kit', 399060.09),
(832, 'dremel sm510 3" metal cut-off wheel', 606075.08),
(833, 'surebonder full size low temperature glue gun', 111213.12),
(834, 'black & decker 58-piece project kit with 12v lithium drill/driver, ldx172pk', 365882.70),
(835, 'ad tech 2-temp full size cordless glue gun', 979355.35),
(836, 'black & decker 1375w heat gun', 374069.88),
(837, 'hitachi 18-volt lithium-ion 3 tool combo kit', 169109.70),
(838, 'rsr electronics zd98 soldering station', 176355.05),
(839, 'alpha fry am13460 rosin core solder and dispenser', 361438.37),
(840, 'kawasaki 10 piece screw extractor and drill bit set', 185467.74),
(841, 'hitachi 12v peak 2 tool li-ion combo kit with carrying bag', 464921.57),
(842, 'black & decker 17-piece workbench drill bit set, 15097', 862676.12),
(843, 'california air tools 6.3 gallon ultra quiet and oil-free 1.0 hp steel tank air compressor', 79735.66),
(844, 'worx semi automatic sd driver, wx254l', 22449.69),
(845, 'black & decker 160 psi air station inflator', 711071.00),
(846, 'titan professional workbench', 737438.14),
(847, 'powryte 3/8" air ratchet wrench, 100105a', 918606.57),
(848, 'morris products 2 carbide tipped high speed steel hole saw cutters', 678433.69),
(849, 'hitachi 1 1/2" 2 mode spline shank rotary hammer', 290780.02),
(850, 'black and decker inc dcf895d2 20v max brushless . 25 inch hex 3-speed . 25 inch impact driver', 878407.15),
(851, 'hitachi 200-piece mini grinder accessory set', 669247.90),
(852, 'stack-on 66" steel workbench', 96418.32),
(853, 'kawasaki 14.4v 20 piece cordless drill kit in black', 632033.15),
(854, 'ingersoll rand avc10-183a rivet set retainer q-c', 927175.58),
(855, 'skil 2350-01 4-volt lithium-ion screwdriver and led flashlight', 225947.36),
(856, 'california air tools 5 gallon pressure pot with hvlp spray gun and hose', 71860.30),
(857, 'rockwell rk3440k versacut circular saw kit', 63116.47),
(858, 'ingersoll rand 244a 1/2-inch drive super duty impact wrench', 287763.72),
(859, 'kawasaki 14.4v 20 piece cordless drill kit in black', 546618.61),
(860, 'vermont american 10 60 tpi 10x titanium carbide circular saw blades 27833', 266160.54),
(861, 'speare tools adjustable speaker-cutter hole saw, ab 1610', 440778.51),
(862, 'black & decker 20v smart select cordless drill', 363140.29),
(863, 'bostitch low-profile paper tape framing nailer, lpf33pt', 667589.94),
(864, 'prevost isc 061201 safety coupler 1/4 in m style', 805936.19),
(865, 'black & decker 4.5 amp variable speed jigsaw, js515ozr', 897723.53),
(866, 'hitachi 18v lithium ion 6 1/2" circular saw (tool body only)', 812358.56),
(867, 'numax 3-in-1 flooring nailer', 658907.52),
(868, 'skil 5480-01 7-1/4-inch skilsaw circular saw', 353607.20),
(869, 'dewalt 115-dw059b 18v 1-2 inch high torque impact wrench bare tool', 643061.49),
(870, 'stalwart flexible drive shaft', 936981.21),
(871, 'black & decker 20v max lithium ion drill/driver, ldx120c', 133953.15),
(872, 'trinity stainless steel table', 426427.21),
(873, 'hitachi 4 gallon twin stack air compressor', 867502.72),
(874, 'ingersoll rand 705-93 trigger', 212693.39),
(875, 'dremel universal multi-knife blade, mm430', 685965.94),
(876, 'bostitch air regulator and gauge, threaded, #mregulator', 913940.96),
(877, 'black & decker vs jig saw, js515', 454500.11),
(878, 'weller sp80l medium duty soldering iron', 670480.46),
(879, 'stanley heavy duty aluminum stapler, tr150hl', 414095.65),
(880, 'arrow fastener dual purpose stapler', 197951.00),
(881, 'black & decker 1375w heat gun', 379204.85),
(882, 'bon-aire 12 volt all in one compressor in a bag, yellow', 301473.03),
(883, 'black and decker 20v max lithium drill and circular saw kit, bdcd220rs', 522905.34),
(884, 'wen 5.2 amp electric pole saw', 14428.78),
(885, 'dremel universal carbide flush cut blade, mm485', 389016.72),
(886, 'bosch 4100-09 10" 4.4 hp worksite table saw', 910538.67),
(887, 'freeman pf3p6galck freeman ultimate finishing kit with 6 gallon compressor, 3 nailers, canvas carry', 831779.42),
(888, 'eclipse 902-133 solder tip for 900-066n solder station 1.0 mm dia pencil tip', 213406.41),
(889, 'ad tech 2-temp full size cordless glue gun', 802672.95),
(890, 'irwin 13-piece drive kit, 1885552', 875926.18),
(891, 'campbell hausfeld exteme duty 3/8 air ratchet', 914482.45),
(892, 'wen 6 waxer/polisher', 870737.14),
(893, '12-volt lith-ion max drill w/bonus tools set & bag', 39234.71),
(894, 'allied tools 72-piece rotary tool set', 85744.95),
(895, 'weller sp40l lightweight soldering iron', 504153.14),
(896, 'primefit 1-gallon, 125 psi home workshop air compressor', 784713.83),
(897, 'dremel 7700-1/15 7.2-volt multipro cordless rotary kit with 15 accessories', 793993.87),
(898, 'wagan emergency impact wrench kit', 916788.47),
(899, 'stalwart mouse sander set, blue, 28pc', 745307.14),
(900, 'hitachi 5/8" hammer drill', 250886.74),
(901, 'dremel 4000-1/26 120v variable speed rotary tool', 615236.57),
(902, 'numax 18 gauge 2 in 1 brad nailer & stapler', 497187.38),
(903, 'bosch 4100-09 10" 4.4 hp worksite table saw', 851961.05),
(904, 'eclipse 900-015 helping hands soldering aid', 150022.98),
(905, 'black & decker lithium saw, lps7000', 3964.80),
(906, 'bosch 7292-02 2 amp 1/4 sheet palm sander', 651604.56),
(907, 'stalwart 41-piece professional screwdriver bit and socket set', 739779.29),
(908, 'black & decker 9.6v - 24v multi battery charger', 807002.21),
(909, 'hitachi 2" 16 gauge standard 7/16" crown construction stapler', 58090.40),
(910, 'campbell hausfeld 62-piece air tool kit', 866160.60),
(911, 'crawford storehorse folding sawhorse', 240184.38),
(912, 'buffalo tools pro series angle grinding kit', 782543.94),
(913, 'bostitch 18v lithium drill/impact combo kit and bonus 25-piece impact set bundle', 113281.01),
(914, 'dewalt 115-dw059b 18v 1-2 inch high torque impact wrench bare tool', 330005.28),
(915, 'kd tools engraver electric vibro', 575660.88),
(916, 'surebonder mini dual temperature glue gun', 745013.88),
(917, '26-piece drill and drive set', 794550.45),
(918, 'hitachi power tools c12lch 12" co.mpound miter saw with digital display and laser m', 611426.62),
(919, 'hitachi 2 1/2" 15 gauge angled finish nailer with air duster', 878020.81),
(920, 'masterflow 12v portable air compressor / inflator', 836158.34),
(921, 'bostitch 26 gallon, 150 psi, 1.8hp air compressor , btfp02028', 385850.96),
(922, 'sold & shipped by wayfair.com', 808616.10),
(923, 'masterflow 12v high volume air compressor / inflator', 665189.64),
(924, 'wen 6 waxer/polisher', 492467.06),
(925, 'skil 3410-02 10 in. table saw with floor stand', 449338.36),
(926, 'lincoln industrial 18 volt cordless grease gun w/ 2 batteries', 78685.00),
(927, 'allied tools 72-piece rotary tool set', 357108.68),
(928, 'buffalo tools ps07499 24-piece router bit set', 512966.30),
(929, 'black and decker dwdck280c2 20v max li-ion compact drill and impact combo kit', 181645.22),
(930, 'professional woodworker 18 gauge brad nailer with 2-gallon 100 psi twin stack compressor combo kit', 293253.19),
(931, 'bostitch prozhoze, 1/4" x 100, hopb14100', 107640.49),
(932, 'homeright heat pro deluxe ii heat tool', 274595.92),
(933, 'plews & edelmann lever-action grease gun, 6" extension, 6, 000psi, 14oz cartridge', 81411.37),
(934, 'hitachi 5/8" hammer drill', 194908.88),
(935, 'plews & edelmann lever-action grease gun, 6" extension, 6, 000psi, 14oz cartridge', 456902.17),
(936, '3m 37717 spray trigger nozzle head', 387925.72),
(937, 'ingersoll rand 1/2 air impact wrench 231ha', 120485.23),
(938, 'boa grabit screw extractor', 836063.44),
(939, 'black & decker matrix oscillating head attachment, bdcmto', 567240.74),
(940, 'skil sb18c sb18a 18v ni-cd battery', 758817.33),
(941, 'hitachi 18v lithium ion 6 1/2" circular saw (tool body only)', 760623.15),
(942, 'premiere pads premiere pads 50 "400" series stainless steel scrubbers large pad50', 270202.98),
(943, 'black and decker power tools gco.12sfb 12-volt cordless drill with stud sensor and st', 96103.49),
(944, 'stanley fatmax 6a jig saw, fme340', 975740.25),
(945, 'ad tech hi-temp mini size glue gun', 838178.27),
(946, 'campbell hausfeld 8gal oil free air compressor', 435264.35),
(947, 'lincoln lubrication ac2440 120-volt corded grease gun', 80345.95),
(948, 'weller sp80l medium duty soldering iron', 177801.71),
(949, 'blazer products 189-2072 clear pocket torch pb207 black', 551184.47),
(950, 'lumberjack tools trh2000 2in home series tenon cutter', 919839.64),
(951, 'dremel 4200 rotary tool with ez change, 4200-6/40', 559058.47),
(952, 'dremel lawn and garden rotary tool kit, 100-lg', 75151.77),
(953, 'weller battery powered soldering iron kit', 526404.94),
(954, 'black and decker 3/8" 5-amp variable speed drill with keyless chuck, dr260b', 835140.52),
(955, 'black & decker 68-piece project kit with 20v lithium drill/driver, li2000pk', 45781.92),
(956, '12-volt lith-ion drill w/ bonus case & 150-piece socket set', 591276.60),
(957, 'stalwart 25-piece 4.8-volt cordless screwdriver with led', 218329.07),
(958, 'campbell hausfeld brad nailer and stapler', 329129.55),
(959, 'homak 2 door mobile cabinet with shelves', 376021.83),