-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgiftweb.sql
More file actions
1407 lines (1210 loc) · 59.8 KB
/
Copy pathgiftweb.sql
File metadata and controls
1407 lines (1210 loc) · 59.8 KB
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
--
-- PostgreSQL database dump
--
SET client_encoding = 'SQL_ASCII';
SET check_function_bodies = false;
SET SESSION AUTHORIZATION 'postgres';
--
-- TOC entry 4 (OID 2200)
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--
REVOKE ALL ON SCHEMA public FROM PUBLIC;
GRANT ALL ON SCHEMA public TO PUBLIC;
SET SESSION AUTHORIZATION 'matthew';
SET search_path = public, pg_catalog;
--
-- TOC entry 16 (OID 27102)
-- Name: pga_queries; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE pga_queries (
queryname character varying(64),
querytype character(1),
querycommand text,
querytables text,
querylinks text,
queryresults text,
querycomments text
);
--
-- TOC entry 17 (OID 27102)
-- Name: pga_queries; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE pga_queries FROM PUBLIC;
GRANT ALL ON TABLE pga_queries TO PUBLIC;
--
-- TOC entry 18 (OID 27107)
-- Name: pga_forms; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE pga_forms (
formname character varying(64),
formsource text
);
--
-- TOC entry 19 (OID 27107)
-- Name: pga_forms; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE pga_forms FROM PUBLIC;
GRANT ALL ON TABLE pga_forms TO PUBLIC;
--
-- TOC entry 20 (OID 27112)
-- Name: pga_scripts; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE pga_scripts (
scriptname character varying(64),
scriptsource text
);
--
-- TOC entry 21 (OID 27112)
-- Name: pga_scripts; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE pga_scripts FROM PUBLIC;
GRANT ALL ON TABLE pga_scripts TO PUBLIC;
--
-- TOC entry 22 (OID 27117)
-- Name: pga_reports; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE pga_reports (
reportname character varying(64),
reportsource text,
reportbody text,
reportprocs text,
reportoptions text
);
--
-- TOC entry 23 (OID 27117)
-- Name: pga_reports; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE pga_reports FROM PUBLIC;
GRANT ALL ON TABLE pga_reports TO PUBLIC;
--
-- TOC entry 24 (OID 27122)
-- Name: pga_schema; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE pga_schema (
schemaname character varying(64),
schematables text,
schemalinks text
);
--
-- TOC entry 25 (OID 27122)
-- Name: pga_schema; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE pga_schema FROM PUBLIC;
GRANT ALL ON TABLE pga_schema TO PUBLIC;
--
-- TOC entry 26 (OID 27127)
-- Name: pga_layout; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE pga_layout (
tablename character varying(64),
nrcols smallint,
colnames text,
colwidth text
);
--
-- TOC entry 27 (OID 27127)
-- Name: pga_layout; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE pga_layout FROM PUBLIC;
GRANT ALL ON TABLE pga_layout TO PUBLIC;
--
-- TOC entry 28 (OID 27132)
-- Name: users; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE users (
uid smallint DEFAULT nextval('users_uid_seq'::text) NOT NULL,
last_name character(25) NOT NULL,
"password" character(12) NOT NULL,
login character(12),
updated date,
first_name character(25),
email character(100),
prices boolean
);
--
-- TOC entry 29 (OID 27132)
-- Name: users; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE users FROM PUBLIC;
GRANT ALL ON TABLE users TO PUBLIC;
--
-- TOC entry 30 (OID 27135)
-- Name: groups; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE groups (
gid smallint DEFAULT nextval('groups_gid_seq'::text) NOT NULL,
description character(20) NOT NULL,
admin smallint NOT NULL,
verify_requests boolean
);
--
-- TOC entry 31 (OID 27135)
-- Name: groups; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE groups FROM PUBLIC;
GRANT ALL ON TABLE groups TO PUBLIC;
--
-- TOC entry 32 (OID 27138)
-- Name: events; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE events (
uid smallint,
"month" smallint,
"day" smallint,
description character(40),
eid smallint DEFAULT nextval('events_eid_seq'::text),
next_purge integer
);
--
-- TOC entry 33 (OID 27138)
-- Name: events; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE events FROM PUBLIC;
GRANT ALL ON TABLE events TO PUBLIC;
--
-- TOC entry 34 (OID 27141)
-- Name: session; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE "session" (
session_key character(16),
uid smallint,
"last" integer
);
--
-- TOC entry 35 (OID 27141)
-- Name: session; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE "session" FROM PUBLIC;
GRANT ALL ON TABLE "session" TO PUBLIC;
--
-- TOC entry 36 (OID 27143)
-- Name: items; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE items (
uid smallint,
description text,
url text,
purchased smallint,
added boolean,
item_num smallint,
event smallint,
price numeric(8,2),
image text,
grp_id smallint,
hidden boolean
);
--
-- TOC entry 37 (OID 27143)
-- Name: items; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE items FROM PUBLIC;
GRANT ALL ON TABLE items TO PUBLIC;
--
-- TOC entry 38 (OID 27148)
-- Name: notes; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE notes (
item_num smallint,
notes text
);
--
-- TOC entry 39 (OID 27148)
-- Name: notes; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE notes FROM PUBLIC;
GRANT ALL ON TABLE notes TO PUBLIC;
--
-- TOC entry 40 (OID 27153)
-- Name: members; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE members (
gid smallint,
uid smallint,
prim boolean,
request boolean
);
--
-- TOC entry 41 (OID 27153)
-- Name: members; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE members FROM PUBLIC;
GRANT ALL ON TABLE members TO PUBLIC;
--
-- TOC entry 42 (OID 27155)
-- Name: giftweb; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE giftweb (
schema_key integer,
schema_ver real,
admin smallint,
bgimg text,
last_purge integer
);
--
-- TOC entry 43 (OID 27155)
-- Name: giftweb; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE giftweb FROM PUBLIC;
GRANT ALL ON TABLE giftweb TO PUBLIC;
--
-- TOC entry 5 (OID 27160)
-- Name: users_uid_seq; Type: SEQUENCE; Schema: public; Owner: matthew
--
CREATE SEQUENCE users_uid_seq
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- TOC entry 7 (OID 27160)
-- Name: users_uid_seq; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE users_uid_seq FROM PUBLIC;
GRANT ALL ON TABLE users_uid_seq TO PUBLIC;
--
-- TOC entry 8 (OID 27162)
-- Name: groups_gid_seq; Type: SEQUENCE; Schema: public; Owner: matthew
--
CREATE SEQUENCE groups_gid_seq
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- TOC entry 10 (OID 27164)
-- Name: events_eid_seq; Type: SEQUENCE; Schema: public; Owner: matthew
--
CREATE SEQUENCE events_eid_seq
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- TOC entry 12 (OID 27164)
-- Name: events_eid_seq; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE events_eid_seq FROM PUBLIC;
GRANT ALL ON TABLE events_eid_seq TO PUBLIC;
--
-- TOC entry 44 (OID 27166)
-- Name: item_grp; Type: TABLE; Schema: public; Owner: matthew
--
CREATE TABLE item_grp (
grp_id smallint DEFAULT nextval('items_gid_seq'::text) NOT NULL,
uid smallint,
grp_name text NOT NULL
);
--
-- TOC entry 45 (OID 27166)
-- Name: item_grp; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE item_grp FROM PUBLIC;
GRANT ALL ON TABLE item_grp TO PUBLIC;
--
-- TOC entry 13 (OID 27172)
-- Name: items_gid_seq; Type: SEQUENCE; Schema: public; Owner: matthew
--
CREATE SEQUENCE items_gid_seq
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
--
-- TOC entry 15 (OID 27172)
-- Name: items_gid_seq; Type: ACL; Schema: public; Owner: matthew
--
REVOKE ALL ON TABLE items_gid_seq FROM PUBLIC;
GRANT ALL ON TABLE items_gid_seq TO PUBLIC;
--
-- Data for TOC entry 52 (OID 27102)
-- Name: pga_queries; Type: TABLE DATA; Schema: public; Owner: matthew
--
COPY pga_queries (queryname, querytype, querycommand, querytables, querylinks, queryresults, querycomments) FROM stdin;
\.
--
-- Data for TOC entry 53 (OID 27107)
-- Name: pga_forms; Type: TABLE DATA; Schema: public; Owner: matthew
--
COPY pga_forms (formname, formsource) FROM stdin;
\.
--
-- Data for TOC entry 54 (OID 27112)
-- Name: pga_scripts; Type: TABLE DATA; Schema: public; Owner: matthew
--
COPY pga_scripts (scriptname, scriptsource) FROM stdin;
\.
--
-- Data for TOC entry 55 (OID 27117)
-- Name: pga_reports; Type: TABLE DATA; Schema: public; Owner: matthew
--
COPY pga_reports (reportname, reportsource, reportbody, reportprocs, reportoptions) FROM stdin;
\.
--
-- Data for TOC entry 56 (OID 27122)
-- Name: pga_schema; Type: TABLE DATA; Schema: public; Owner: matthew
--
COPY pga_schema (schemaname, schematables, schemalinks) FROM stdin;
\.
--
-- Data for TOC entry 57 (OID 27127)
-- Name: pga_layout; Type: TABLE DATA; Schema: public; Owner: matthew
--
COPY pga_layout (tablename, nrcols, colnames, colwidth) FROM stdin;
groups 3 gid description admin 150 150 150
pga_layout 4 tablename nrcols colnames colwidth 150 150 150 150
session 3 key uid last 150 150 150
events 4 uid month day description 150 150 150 150
members 3 gid uid prim 150 150 150
users 6 uid name email password {login} {updated} 150 150 150 150 150 150
items 8 uid description url purchased added item_num {desc} {url2} 150 150 150 150 150 150 150 150
public.events 5 uid month day description eid 150 150 150 150 150
\.
--
-- Data for TOC entry 58 (OID 27132)
-- Name: users; Type: TABLE DATA; Schema: public; Owner: matthew
--
--
-- Data for TOC entry 59 (OID 27135)
-- Name: groups; Type: TABLE DATA; Schema: public; Owner: matthew
--
COPY groups (gid, description, admin, verify_requests) FROM stdin;
122 Racic Family 101 t
103 Krebs Family 101 t
101 Jachimstal Family 101 t
102 Fachet Family 101 t
120 Test Users 101 f
\.
--
-- Data for TOC entry 60 (OID 27138)
-- Name: events; Type: TABLE DATA; Schema: public; Owner: matthew
--
COPY events (uid, "month", "day", description, eid, next_purge) FROM stdin;
-1 12 25 Christmas 101 1103954400
-1 2 14 Valentine's Day 102 1108360800
-1 3 17 St. Patrick's Day 103 1111039200
101 7 22 Birthday 105 1122008400
-1 10 21 Sweetest Day (approx date) 104 1098334800
101 10 4 today 106 1096866000
101 10 3 yesterday 107 1128315600
101 7 21 bday-1 108 1121922000
101 10 5 tomorrow 109 1096952400
101 10 5 Today - 0 110 1096952400
101 10 4 Today - 1 111 1096866000
101 10 3 Today - 2 112 1096779600
101 10 2 Today - 3 113 1096693200
101 10 1 Today - 4 114 1096606800
101 9 30 Today - 5 115 1096520400
101 9 29 Today - 6 116 1096434000
101 9 28 Today - 7 117 1096347600
101 9 27 Today - 8 118 1096261200
101 9 26 Today - 9 119 1096174800
101 9 25 Today - 10 120 1096088400
101 9 24 Today - 11 121 1096002000
101 9 23 Today - 12 122 1095915600
101 9 22 Today - 13 123 1095829200
101 9 21 Today - 14 124 1095742800
101 9 20 Today - 15 125 1095656400
101 9 19 Today - 16 126 1095570000
101 9 18 Today - 17 127 1095483600
101 9 17 Today - 18 128 1095397200
101 9 16 Today - 19 129 1095310800
101 9 15 Today - 20 130 1095224400
101 9 14 Today - 21 131 1095138000
101 9 13 Today - 22 132 1095051600
101 9 12 Today - 23 133 1094965200
101 9 11 Today - 24 134 1094878800
101 9 10 Today - 25 135 1094792400
101 9 9 Today - 26 136 1094706000
101 9 8 Today - 27 137 1094619600
101 9 7 Today - 28 138 1094533200
101 9 6 Today - 29 139 1094446800
101 9 5 Today - 30 140 1094360400
101 9 4 Today - 31 141 1094274000
\.
--
-- Data for TOC entry 61 (OID 27141)
-- Name: session; Type: TABLE DATA; Schema: public; Owner: matthew
--
COPY "session" (session_key, uid, "last") FROM stdin;
\.
--
-- Data for TOC entry 62 (OID 27143)
-- Name: items; Type: TABLE DATA; Schema: public; Owner: matthew
--
COPY items (uid, description, url, purchased, added, item_num, event, price, image, grp_id, hidden) FROM stdin;
101 Good Eats Volume 4 http://store.foodnetwork.com/shop/product.asp?product_code=4290&department_code=1&category_code=9&subcategory_code=9&quickshop_code=0&search_type=dept# -1 f 2184 \N \N \N 52 f
102 Superior Soaps, Body Spray, etc http://www.superiorsoaps.com/ -1 f 2259 \N 0.00 \N 50 f
211 Jim Bean Burbon -1 f 2030 \N \N \N 18 f
123 DVD Dante's Peak -1 f 2310 \N \N \N 35 f
102 Film 400 -1 f 472 \N \N \N 50 f
210 Baby Playzone Stride to Ride Walker http://www.fisher-price.com/us/babyu/product.asp?s=buplayzone&id=10212&index=2&pos=2 -1 f 1973 \N \N \N 2 f
210 Tug & Play Knot Block http://store.yahoo.com/genius-babies/tugplknblneb.html -1 f 1974 \N \N \N 2 f
210 6/9 month + clothing -1 f 1978 \N \N \N 2 f
210 Lamaze Soft Sorter http://store.yahoo.com/genius-babies/softsorternew.html -1 f 1976 \N \N \N 2 f
205 Orange Crocodile Gloves -Size 8 or Large -1 f 1990 \N \N \N 3 f
205 Mock Turtleneck Tee -shirt (3X) -1 f 1992 \N \N \N 3 f
205 Gift Certificates --Omeaga -1 f 1996 \N \N \N 3 f
205 Gift -1 f 1997 \N \N \N 3 f
205 Gift Cert's-Omega Rest.--Applbee's-Ruby Tuesdays- Bakers Square -1 f 1998 \N \N \N 3 f
205 Gift Cert's Bookstores-Barnes and Noble etc., -1 f 1999 \N \N \N 3 f
205 Keds Shoes White (size 10 1/2 narrow ) -1 f 2000 \N \N \N 3 f
205 Shower Gel. -1 f 2001 \N \N \N 3 f
205 Candles-------all kinds -1 f 2005 \N \N \N 3 f
205 Large print book Memories by Baraba Bush -1 f 1995 \N \N \N 3 f
205 Large print book Ron Reagan's Letters -1 f 1994 \N \N \N 3 f
209 Baby Playzone Crawl & Slide Arcade http://www.fisher-price.com -1 f 1979 \N \N \N 5 f
209 Lamaze Look & Love Photo Album store.yahoo.com -1 f 1981 \N \N \N 5 f
209 Lamaze Softronics Light & Sound Crawl Along http://store.yahoo.com/genius-babies/softronics-light--sound-crawl-along-.html -1 f 1983 \N \N \N 5 f
209 6/9 month + clothing -1 f 1984 \N \N \N 5 f
127 Candles -1 f 1161 \N \N \N 6 f
127 bacardi silver -1 f 1831 \N \N \N 6 f
127 anti-bacterial gentle foaming soap http://www.bathandbodyworks.com -1 f 1832 \N \N \N 6 f
127 CD / DVD Barbra Streisand - The Movie Album www.towerrecords.com -1 f 1833 \N \N \N 6 f
117 Old Fashioned 8x10 & 4x6 picture frames -1 f 169 \N \N \N 7 f
117 Gift certificates-Hobby lobby, ikea, kohls -1 f 170 \N \N \N 7 f
117 Brushed knit pajamas XL (not flannel) -1 f 171 \N \N \N 7 f
117 Lime Green, black, or red V-neck chenille sweater (waist length) XL -1 f 173 \N \N \N 7 f
117 funnel neck sweater L-any color but white, pink or purple -1 f 174 \N \N \N 7 f
117 Large vase-Olive green with interesting detail or crystal -1 f 177 \N \N \N 7 f
117 Crystal butter dish -1 f 179 \N \N \N 7 f
117 Trouser socks, no detail, black, brown, navy -1 f 180 \N \N \N 7 f
117 Large Decorative hourglass Bombay Company -1 f 184 \N \N \N 7 f
136 Excell Software -1 f 671 \N \N \N 10 f
136 Font Software -1 f 674 \N \N \N 10 f
136 Open Wrench set w/adjustable wrench -1 f 675 \N \N \N 10 f
137 Amelia Bedelia Books (Already has the baseball and "runs business" books) 3rd grade Reading Level -1 f 2068 \N \N \N 11 f
137 Yarn (Red and Blue) -1 f 2069 \N \N \N 11 f
137 Craft kits (Beads, age appropriate jewelry making, etc.) -1 f 2070 \N \N \N 11 f
137 Age appropriate Color or paint by number sets -1 f 2071 \N \N \N 11 f
137 Nancy Drew books -1 f 2073 \N \N \N 11 f
137 Age appropriate fantasy books, fairy tales -1 f 2074 \N \N \N 11 f
137 Jeans- Size 12 (black or blue) Bellbottoms -1 f 2075 \N \N \N 11 f
137 Game for Gameboy Advanced: "Harry Potter" -1 f 2082 \N \N \N 11 f
137 Cute socks -1 f 2083 \N \N \N 11 f
137 DVD: George of the Jungle - 2 -1 f 2087 \N \N \N 11 f
137 Toys R Us Gift Certificates -1 f 2089 \N \N \N 11 f
137 Nerf Football -1 f 2092 \N \N \N 11 f
137 Ice Skates - Size 5 -1 f 2093 \N \N \N 11 f
137 Shrink-E-Dink Paper -1 f 2095 \N \N \N 11 f
137 Beach Ball -1 f 2096 \N \N \N 11 f
137 Clay -1 f 2102 \N \N \N 11 f
137 Game Cube/Remote Controls -1 f 2103 \N \N \N 11 f
137 Earrings - Pierced (Post style) -1 f 2072 \N \N \N 11 f
138 PS2: THe Lord of the Rings 2 Towers -1 f 2109 \N \N \N 12 f
138 The Lord of the Rings - 2 Towers DVD -1 f 2110 \N \N \N 12 f
138 Sea Monkeys -1 f 2112 \N \N \N 12 f
138 DVD: Finding Nemo -1 f 2114 \N \N \N 12 f
138 Youth Basketball -1 f 2117 \N \N \N 12 f
138 All 3 Egyptian God Yu-Gi-Oh Cards (?Decks of Cards, I think) -1 f 2105 \N \N \N 12 f
138 Harry Potter Video Game: PS2 (Chamber of Secrets) -1 f 2123 \N \N \N 12 f
139 Clear Matchbox car case -1 f 705 \N \N \N 13 f
139 Cheap leather gloves mens small -1 f 706 \N \N \N 13 f
139 Ski Mittens mens small, blue/black -1 f 707 \N \N \N 13 f
139 Tony Hawk ProSkater2 (playstation) -1 f 709 \N \N \N 13 f
139 Army Men, Sarges Heros2 (Playstation) -1 f 711 \N \N \N 13 f
139 memory card for nintendo -1 f 712 \N \N \N 13 f
139 Coin Mint Set, Interesting coins -1 f 713 \N \N \N 13 f
139 Gift Certificates (Michaels, Oberweiss, Blockbuster, Galyans) -1 f 714 \N \N \N 13 f
139 Griptape for skateboard -1 f 715 \N \N \N 13 f
139 New Swivel desk chair -1 f 716 \N \N \N 13 f
139 "shorty's" tshirts -1 f 718 \N \N \N 13 f
160 gift certif. to venture hobbies, home depot, menards -1 f 1398 \N \N \N 15 f
160 7.2 sanyo, kyosho, tamya, piranah, bateries venture hobies (wheeling) stanton hobby shop ( chicogo milwokee rd.) -1 f 1399 \N \N \N 15 f
160 edited C.D's from folowing artists: sam goodie -1 f 1400 \N \N \N 15 f
160 P. diddy sam goodie -1 f 1401 \N \N \N 15 f
160 snoop dogg sam goodie -1 f 1402 \N \N \N 15 f
160 dr. dre sam goodie -1 f 1403 \N \N \N 15 f
160 kid rock sam goodie -1 f 1404 \N \N \N 15 f
160 jay-z sam goodie -1 f 1405 \N \N \N 15 f
160 Coin Mint Set, Interesting coins -1 f 1406 \N \N \N 15 f
160 Hard plastic coin holders -1 f 1407 \N \N \N 15 f
160 proline road rage tires venture hobies (wheeling) -1 f 1408 \N \N \N 15 f
160 allen driver set including following: venture hobies (wheeling) -1 f 1414 \N \N \N 15 f
160 2.5 allen driver green anodized handle venture hobies (wheeling) -1 f 1419 \N \N \N 15 f
160 1.5 allen driver purple anodized handle venture hobies (wheeling) -1 f 1420 \N \N \N 15 f
160 9.6 volt craftsman drill batt. -1 f 1421 \N \N \N 15 f
173 Printer paper Costco 100 sheets of kodak paper for 24.00 -1 f 1784 \N \N \N 16 f
173 Magnetic Chess Game Target, Penny's -1 f 1781 \N \N \N 16 f
173 Scrabble Game http://www.Target.com -1 f 1782 \N \N \N 16 f
173 Digital Camera -1 f 1785 \N \N \N 16 f
211 Gift Certifcates Sears -1 f 2027 \N \N \N 18 f
211 Crown Royal Whiskey -1 f 2029 \N \N \N 18 f
211 The movie North and South -1 f 2031 \N \N \N 18 f
129 roll .37 stamps -1 f 1282 \N \N \N 21 f
129 Book Bind my Engineering Reference Manual -1 f 1311 \N \N \N 21 f
129 Brut Splash-on Lotion - 7oz Multiples are Welcome! -1 f 1440 \N \N \N 21 f
129 Dockers Pants --Blk size 44x28 -1 f 2007 \N \N \N 21 f
129 Latest 2003/2004 Readers Digest home Repair book or equivilent ` -1 f 2011 \N \N \N 21 f
129 Webesters/ Oxford Dictionary---Must Contain the word "McJob" -1 f 2012 \N \N \N 21 f
129 Bathroom Rugs, Dark green for Guest Bathroom-Geometric Pattern; Toilet and 30"wx48"lg Oval rug. -1 f 2013 \N \N \N 21 f
129 Hand Towels-16"x26" for Kitchen; Red- -1 f 2014 \N \N \N 21 f
129 Dockers pants Brn size 44x28 -1 f 2008 \N \N \N 21 f
129 ex. large Latex Dishwashing Gloves--several pair needed -1 f 2160 \N \N \N 21 f
129 Inexpensive walkie talkie Radios --(Walgreens Had a set for $24.99 with buzzer) -1 f 2166 \N \N \N 21 f
129 Ott-Lite Floor lamp--$99.95 (code number USA0309e)@ 1-866-825-7950 or www.ott-lite.com/FS6 -1 f 2167 \N \N \N 21 f
125 Gift card to Best Buy -1 f 519 \N \N \N 22 f
125 Gift card to Sears -1 f 520 \N \N \N 22 f
125 Gift card to Kohls -1 f 2171 \N \N \N 22 f
109 Fox & Friends Calendar foxnews.com -1 f 1431 \N \N \N 23 f
109 Gift certificat for Hobby Lobby -1 f 1432 \N \N \N 23 f
109 Longaberger gift certificate Connie Ramseur 920-684-7773 -1 f 1433 \N \N \N 23 f
109 Lighthouse for front porch -1 f 1694 \N \N \N 23 f
126 Dale Earnhardt 2003 Winston Cup victory lap die cast car http://www.nascar.com -1 f 1837 \N \N \N 26 f
126 Dale Jr. 2003 Busch Grand National DMP die cast car nascar.com -1 f 1838 \N \N \N 26 f
126 Tony Stewart 2003 BGN 3 Doors Down die cast car nascar.com -1 f 1840 \N \N \N 26 f
126 Cubs Flag not the one's that go on your car -1 f 1841 \N \N \N 26 f
126 Frank Sinatra Records Record Breakers Hoffman Estates -1 f 1842 \N \N \N 26 f
126 Miles Davis Records -1 f 1843 \N \N \N 26 f
126 Star Wars Lego AT-AT lego.com -1 f 1848 \N \N \N 26 f
126 Star Wars Lego Cloud City -1 f 1849 \N \N \N 26 f
126 Star Wars Star Destroyer -1 f 1850 \N \N \N 26 f
126 A couple of Cohiba robusto cigars habana cigar company -1 f 1878 \N \N \N 26 f
126 A good bottle of wine -1 f 1880 \N \N \N 26 f
126 Dale Jr. twill repilca uniform shirt nascar.com -1 f 1839 \N \N \N 26 f
126 4 Quarts of Qastrol semisyntheic motor oil and a filter for my car -1 f 2193 \N \N \N 26 f
126 Gift card to Best BUy -1 f 2194 \N \N \N 26 f
215 Wave 74 Disc DVD storage tower http://www.walmart.com -1 f 2143 \N \N \N 29 f
215 4 (four) Axman Locking Tubular Guitar Stands http://www.musiciansfriend.com -1 f 2206 \N \N \N 29 f
215 Fear and Loathing in Las Vegas DVD Special Edition (Two Discs) -1 f 2209 \N \N \N 29 f
219 Mousers http://www.petsmart.com/cat/shopping/toys/products/product%5F7064.shtml -1 f 2244 \N \N \N 30 f
219 Pounce Shake Up Treats http://www.petsmart.com/cat/shopping/products/product%5F35091.shtml -1 f 2245 \N \N \N 30 f
219 Whisker Lickins' Tartar Control Treats -1 f 2246 \N \N \N 30 f
219 Science Diet Adult Formula cat food -1 f 2247 \N \N \N 30 f
220 Panic Mouse http://www.petsmart.com/cat/shopping/toys/interactive/products/product%5F35681.shtml -1 f 2248 \N \N \N 31 f
220 Pounce Shake Up Treats -1 f 2249 \N \N \N 31 f
220 Whisker Lickins' Tartar Control Treats -1 f 2250 \N \N \N 31 f
220 Tidy Cat Crystals http://www.petsmart.com/cat/shopping/litter%5Fcenter/litter/products/product%5F33831.shtml -1 f 2251 \N \N \N 31 f
114 Gift Certificate to Book Store (e.g., Barnes & Noble, Walden's) for geek books -1 f 826 \N \N \N 34 f
114 CD: Mac Davis "Texas in My Rear View Mirror" -1 f 836 \N \N \N 34 f
114 Gift certificate to Appleby's -1 f 1891 \N \N \N 34 f
114 Gift certificate: Penney's -1 f 1156 \N \N \N 34 f
114 Gift certificate: Petsmart -1 f 1157 \N \N \N 34 f
114 Gift certificate: Michaels -1 f 1158 \N \N \N 34 f
114 Clinque Pressed Powder - Stay Neutral -1 f 1354 \N \N \N 34 f
114 Gift certificate to AMC movie theaters -1 f 1895 \N \N \N 34 f
114 Clinque: Dramatically Different Moisturizer -1 f 1882 \N \N \N 34 f
114 DVD:Star Trek Nemisis -1 f 1884 \N \N \N 34 f
114 White athletic shoes (cross trainers) size 10 -1 f 1886 \N \N \N 34 f
114 Crabtree & Evelyn: Lavendar Hand Therapy -1 f 1887 \N \N \N 34 f
114 Gift certificate: Hobby Lobby -1 f 1888 \N \N \N 34 f
114 Book - The DaVinci Code -1 f 2295 \N \N \N 34 f
123 money -1 f 376 \N \N \N 35 f
123 gift card to best buy -1 f 955 \N \N \N 35 f
123 DVD Muppets Christmas Carol -1 f 2256 \N \N \N 35 f
123 DVD Farscape: Season 2 -1 f 2313 \N \N \N 35 f
123 DVD Farscape: Season 3 -1 f 2314 \N \N \N 35 f
123 DVD Farscape: Season 4 -1 f 2315 \N \N \N 35 f
120 Gift Certificate Victoria's Secret -1 f 284 \N \N \N 36 f
120 Gift Certificate Disney Store -1 f 286 \N \N \N 36 f
120 Gift certificate Bath and Body Works -1 f 598 \N \N \N 36 f
120 small tansanite earings -1 f 601 \N \N \N 36 f
120 Mickey Mouse "Sweathearts" LE Sericel www.disneystore.com -1 f 1247 \N \N \N 36 f
120 Purple Mickey chenile throw blanket www.disneystore.com -1 f 1260 \N \N \N 36 f
120 Sewing Machine -1 f 1945 \N \N \N 36 f
120 Memory card for my digital camera -1 f 1950 \N \N \N 36 f
120 Walt Disney Treasures Mickey Mouse in Living Color Vol 2 DVD -1 f 1954 \N \N \N 36 f
120 Pleasures Intrique by Este Lauder -1 f 2015 \N \N \N 36 f
120 Bill paying organizer -1 f 2016 \N \N \N 36 f
120 Toontown house: Donald's Boat -1 f 1947 \N \N \N 36 f
120 Toontown House: Fire department www.disneystore.com -1 f 1256 \N \N \N 36 f
120 Toontownhouse:Mickey's Toontown Fountain Disney store online -1 f 1709 \N \N \N 36 f
120 DVD:101 Dalmations II -1 f 1250 \N \N \N 36 f
120 DVD:Aladdin -1 f 1240 \N \N \N 36 f
120 DVD: Aladin- The return of Jafar -1 f 1241 \N \N \N 36 f
120 DVD:Alantis: Milo's Return -1 f 1956 \N \N \N 36 f
120 DVD:Alice in Wonderland -1 f 1963 \N \N \N 36 f
120 DVD:A very merry pooh year -1 f 1239 \N \N \N 36 f
120 DVD:Bambi -1 f 1242 \N \N \N 36 f
120 DVD:Cinderella 2 :Dreams come true -1 f 940 \N \N \N 36 f
120 DVD:Cinderella -1 f 1243 \N \N \N 36 f
120 DVD:Disney House of Mouse -Villians -1 f 1025 \N \N \N 36 f
120 DVD: Fantasia 2000 -1 f 1237 \N \N \N 36 f
120 DVD: Fantasia -1 f 1236 \N \N \N 36 f
120 DVD: Fun And Fancy Free -1 f 1958 \N \N \N 36 f
120 DVD:Hunchback of Notre Dame -1 f 1229 \N \N \N 36 f
120 DVD: Interview with a Vampire -1 f 1557 \N \N \N 36 f
120 DVD:Lion King II -1 f 1245 \N \N \N 36 f
120 DVD:Make Mine Music -1 f 1960 \N \N \N 36 f
120 DVD:Melody Time -1 f 1961 \N \N \N 36 f
120 DVD:Mulan -1 f 945 \N \N \N 36 f
120 DVD:Oliver and company -1 f 942 \N \N \N 36 f
120 DVD:Peter Pan -1 f 943 \N \N \N 36 f
120 DVD:Pinocchio -1 f 946 \N \N \N 36 f
120 DVD:Saved by the Bell Season I and II -1 f 2212 \N \N \N 36 f
120 DVD:Stitch The Movie -1 f 1711 \N \N \N 36 f
120 DVD:Tarzan and Jane -1 f 1962 \N \N \N 36 f
120 DVD:The Black Cauldron -1 f 1957 \N \N \N 36 f
120 DVD:The book of pooh -1 f 1238 \N \N \N 36 f
120 DVD:The Hunchback of Notre Dame -1 f 1008 \N \N \N 36 f
120 DVD: The Little Mermaid -1 f 1228 \N \N \N 36 f
120 DVD: The Little Mermaid II -1 f 1227 \N \N \N 36 f
120 DVD:The three Caballeros -1 f 1235 \N \N \N 36 f
120 DVD: Toy Story -1 f 1231 \N \N \N 36 f
120 DVD:Toy Story II -1 f 1232 \N \N \N 36 f
120 DVD: Beauty and the Beast Belle's Magical Christmas -1 f 1053 \N \N \N 36 f
120 16'' tote bag Disney www.disneystore.com -1 f 590 \N \N \N 36 f
120 Bambi storybook ornament set www.disneystore.com -1 f 1966 \N \N \N 36 f
120 Dale earnhart jr. baby doll tee www.nascar.com -1 f 1969 \N \N \N 36 f
120 DVD: Jungle Book 2 -1 f 1959 \N \N \N 36 f
120 DVD: Mickey's Magical X-mas Snowed in at the house of mouse -1 f 1234 \N \N \N 36 f
120 Monsters inc storybook ornament set www.disneystore.com -1 f 1967 \N \N \N 36 f
120 Gift certificate Michaels -1 f 1004 \N \N \N 36 f
120 Gift Certificate Build A Bear -1 f 2320 \N \N \N 36 f
120 Gift Certificate Bed Bath and Beyond -1 f 2321 \N \N \N 36 f
120 Gift Certificate Borders -1 f 2318 \N \N \N 36 f
120 Gift Certificate Barnes 'n' Noble -1 f 2322 \N \N \N 36 f
120 DVD: Friday the 13th Movies Starting with 2 -1 f 2323 \N \N \N 36 f
120 DVD: Nightmare on Elm street movies -1 f 2324 \N \N \N 36 f
120 DVD: Halloween movies -1 f 2325 \N \N \N 36 f
223 test http://www.amazon.com -1 f 2332 \N \N \N 37 f
223 test2 http://www.amazon.com -1 f 2333 \N \N \N 37 f
118 CD - Dave Frishberg Classics http://www.towerrecords.com -1 f 2173 \N \N \N 38 f
113 Gift Card Home Depot -1 f 1052 \N \N \N 39 f
113 glass globe for lightning rod -1 f 1854 \N \N \N 39 f
113 Gift Card for Starbucks -1 f 1940 \N \N \N 39 f
113 Gift Certificate to Hair by Cher -1 f 1986 \N \N \N 39 f
113 Gift Certificate to Nails by Terry -1 f 1987 \N \N \N 39 f
113 Yankee candle tealights -1 f 2241 \N \N \N 39 f
120 Guess Jeans Original fit Size 29L -1 f 1361 \N 0.00 \N 36 f
113 Sleeping Beauty Storybook Ornament Set http://www.disneystore.com -1 f 2254 \N \N \N 39 f
113 new car -1 f 2351 \N \N \N 39 f
110 Bookstore gift certificate (Powells, Barnes & Noble, etc) http://www.powells.com -1 f 2144 \N \N \N 40 f
110 picture frames -1 f 2352 \N \N \N 40 f
110 Store gift certificates (Fleet Farm, Shopko, Lane Bryant) -1 f 2353 \N \N \N 40 f
110 Stampin' Up goodies -1 f 2354 \N \N \N 40 f
115 Gift Certifcate to Hair by Cher Hair by Cher -1 f 759 \N \N \N 44 f
115 Gift Certifacates Michaels or any stamping store -1 f 1084 \N \N \N 44 f
115 Rubber Stamps -1 f 1087 \N \N \N 44 f
115 Embossing Powder for rubber stamps -1 f 1088 \N \N \N 44 f
115 Markers for Rubber Stamps LePlume by Marvy -1 f 1089 \N \N \N 44 f
115 Gift Cards Kohals -1 f 1099 \N \N \N 44 f
115 Gift Cards Best Buy -1 f 1100 \N \N \N 44 f
115 Gift Cards Victoria's Secret -1 f 1101 \N \N \N 44 f
115 Gift Cards Bath and Body Works -1 f 1102 \N \N \N 44 f
115 Gift Certificate Creative Scrapbooking On Golf -1 f 2118 \N \N \N 44 f
115 Gift Certificate Nails By Terry -1 f 2119 \N \N \N 44 f
115 DVD Legaly Blond -1 f 2121 \N \N \N 44 f
115 DVD Legaly Blond 2 -1 f 2122 \N \N \N 44 f
115 DVD Mary Poppins -1 f 1641 \N \N \N 44 f
115 DVD Peter Pan -1 f 1645 \N \N \N 44 f
115 DVD Top Gun -1 f 1096 \N \N \N 44 f
115 DVD Toy Story -1 f 1638 \N \N \N 44 f
115 Birthday Rubber Stamps -1 f 2316 \N \N \N 44 f
115 DVD Singing In the Rain -1 f 1646 \N \N \N 44 f
115 Gift Card Hobby Lobby -1 f 2372 \N \N \N 44 f
115 DVD- Anne of Green Gables Amazon.com -1 f 2375 \N \N \N 44 f
115 DVD- Anne of Green Gables- the sequal Amazon.com -1 f 2376 \N \N \N 44 f
115 DVD OR VHS Any Tales Of Avonlea Amazon.com -1 f 2377 \N \N \N 44 f
131 -1 f 2374 \N \N \N 43 f
115 DVD The Little Mermaid -1 f 1636 \N \N \N 44 f
115 DVD The Little Mermaid 2 -1 f 1637 \N \N \N 44 f
230 Apache Shirt http://www.copyleft.net/item.phtml?dynamic=1&referer=%2Fthumbs.phtml%3Fcategory_id%3D1&page=product_965_front.phtml -1 f 2387 \N \N \N 49 f
230 Tux SCO Shirt http://www.thinkgeek.com/tshirts/generic/6420/ -1 f 2388 \N \N \N 49 f
230 got root? http://www.thinkgeek.com/tshirts/sysadmin/280d/ -1 f 2389 \N \N \N 49 f
230 scan my network http://www.thinkgeek.com/tshirts/frustrations/38df/ -1 f 2390 \N \N \N 49 f
102 Mach 3 shaving blades -1 f 96 \N \N \N 50 f
102 Midsummers Night Dream DVD -1 f 464 \N \N \N 50 f
102 Truck net for bed -1 f 471 \N \N \N 50 f
102 Laura Ingalls Wilder Hardbound books -1 f 475 \N \N \N 50 f
102 MTU license plate http://www.admin.mtu.edu/alumni/merchandise/ -1 f 482 \N \N \N 50 f
102 Any merchandise from Tech http://www.bookstore.mtu.edu/michtech/main/ -1 f 484 \N \N \N 50 f
102 Trailer hitch -1 f 451 \N \N \N 50 f
102 Sterling Silver Celtic Knot Ring Size 7.5-8 http://www.celticirishjewelry.com/15-674celticjewelry.html -1 f 893 \N \N \N 50 f
102 Sterling Silver Trinity Knot Ring Size 7.5-8 http://www.celticirishjewelry.com/15-521celticjewelry.html -1 f 894 \N \N \N 50 f
102 Sterling Silver Gents Claddagh Ring Size 7.5-8 http://www.celticirishjewelry.com/15-593celticjewelry.html -1 f 895 \N \N \N 50 f
102 Video about the Keweenaw http://www.keweenawvideo.com/ -1 f 898 \N \N \N 50 f
102 Any of these books http://www.keweenawvideo.com/the.store?cart_id=8652396.77542&page=books.html -1 f 899 \N \N \N 50 f
102 Gift Certificate Lane Bryant, Wolf Camera, Book stores, JoAnn Fabrics, Hancock Fabrics, Origins -1 f 98 \N \N \N 50 f
102 Liquid Gold car wash (stuff Danny likes) -1 f 910 \N \N \N 50 f
102 Independence Day DVD -1 f 918 \N \N \N 50 f
102 gift certificate for white gym shoes -1 f 1058 \N \N \N 50 f
102 Sonic jewelry cleaner -1 f 1062 \N \N \N 50 f
102 Resevoir Dogs Special Edition DVD -1 f 1064 \N \N \N 50 f
102 From Hell DVD -1 f 1065 \N \N \N 50 f
102 Rag rugs (lilac/celery or burgundy/blue/gold) -1 f 1078 \N \N \N 50 f
102 Healing Garden Waters (Sheer Passion) -1 f 1079 \N \N \N 50 f
102 dress socks (thin cotton, not like kneehighs) black/brown/navy -1 f 1073 \N \N \N 50 f
102 Gift certificate to Bandages Plus http://www.bandagesplus.com -1 f 1266 \N \N \N 50 f
102 Antique serving plate (1 or 2) -1 f 1268 \N \N \N 50 f
102 Depression glass -1 f 1269 \N \N \N 50 f
102 DVD-Miracle on 34th Street -1 f 1371 \N \N \N 50 f
102 Carving fork -1 f 1261 \N \N \N 50 f
102 Basketball Hoop and backboard -1 f 1735 \N \N \N 50 f
102 Small gold or silver earrings -1 f 1736 \N \N \N 50 f
102 Photo Albums (good ones) -1 f 1739 \N \N \N 50 f
102 Bandage Winder http://www.bandagesplus.com/ssen/product306.html -1 f 1881 \N \N \N 50 f
102 Burts Bees Products http://www.burtsbees.com -1 f 1764 \N \N \N 50 f
102 Cintas Fan Mats http://cintas.fanmats.com -1 f 1765 \N \N \N 50 f
102 Cotton handkerchiefs -1 f 1761 \N \N \N 50 f
102 Maple sugar brick http://www.vermontcountrystore.com/prdSell.asp?ProdGroupID=14176&DeptID=18125&CatID=18126 -1 f 1772 \N \N \N 50 f
102 "Sleeping Beauty" Snow Globe http://disney.store.go.com/DSSectionPage.process?Section_Id=13490&Product_Id=148501 -1 f 1872 \N \N \N 50 f
102 CD-Enigma: Cross of Changes -1 f 1817 \N \N \N 50 f
102 DVD-Canterville Ghost (Patrick Stewart) -1 f 1818 \N \N \N 50 f
102 Gift Certificate-Clinique -1 f 1985 \N \N \N 50 f
102 Cookie Press http://www.vermontcountrystore.com/prdSell.asp?ProdGroupID=19637&DeptID=-1&XSellSrc=26318 -1 f 2056 \N \N \N 50 f
102 Choward's VIOLET candy http://www.vermontcountrystore.com/prdSell.asp?ProdGroupID=17765&DeptID=1356&CatID=18272 -1 f 2059 \N \N \N 50 f
102 Maple Slices http://www.vermontcountrystore.com/prdSell.asp?ProdGroupID=25461&DeptID=1356&CatID=18272 -1 f 2060 \N \N \N 50 f
102 Rose Cremes http://www.vermontcountrystore.com/prdSell.asp?ProdGroupID=26250&DeptID=27185&CatID=27193 -1 f 2062 \N \N \N 50 f
102 Beauty and the Beast DVD -1 f 1059 \N \N \N 50 f
102 DVD-Anne of Green Gables Sequel http://www.amazon.com/exec/obidos/tg/detail/-/B00005Y7AN/qid=1070496682/sr=8-6/ref=sr_8_6/103-9433908-8910243?v=glance&s=dvd&n=507846 -1 f 2176 \N \N \N 50 f
102 DVD-Anne of Green Gables (the third one) -1 f 2175 \N \N \N 50 f
102 Books: Hemingway In Love and War http://www.amazon.com/exec/obidos/tg/detail/-/078688214X/qid=1070499183/sr=8-1/ref=sr_8_1/103-9433908-8910243?v=glance&n=507846 -1 f 2177 \N \N \N 50 f
102 DVD-Rudolph's Shiny New Year http://www.amazon.com/exec/obidos/tg/detail/-/B00004VVPA/ref=pd_bxgy_img_2/103-9433908-8910243?v=glance&s=dvd -1 f 2190 \N \N \N 50 f
102 DVD-Stephen King's IT -1 f 1367 \N \N \N 50 f
102 black or dark grey hooded sweatshirt 2XL -1 f 1262 \N \N \N 50 f
102 Book-Harry Potter -1 f 2391 \N \N \N 50 f
102 DVD-Alice In Wonderland -1 f 2394 \N \N \N 50 f
102 Charming Angels by Boyds Collection -1 f 2396 \N \N \N 50 f
102 bicycle chain-flexible and heavy duty Bike and ChooChoo Store on Roselle Road. -1 f 2397 \N \N \N 50 f
120 guess jeans size 29 (waist) boot cut -1 f 596 \N 0.00 \N 36 f
120 DVD: Lilo and Stitch (The second one) Not the original one I have that one already -1 f 2413 \N \N \N \N f
120 DVD: Season 2 of ER -1 f 2423 \N \N \N 36 f
120 Mark Prior Jersey (Chicago Cubs) -1 f 2424 \N \N \N 36 f
120 Gift Certificate Target -1 f 2426 \N \N \N 36 f
215 Upright Bass http://www.musiciansfriend.com -1 f 2439 \N \N \N 29 f
111 1955 US Proof Set Harriet Carter, Mint -1 f 544 \N \N \N 27 f
111 70 - 200 mm Telephoto Lens (Nikon, Sigma, etc.) Wolf, Ritz Camera, Wal-Mart? -1 f 418 \N \N \N 61 f
111 Black Leather BiFold Wallet -1 f 2063 \N \N \N 27 f
111 Cargo Straps for my truck Menards, Pep Boys -1 f 1699 \N \N \N 59 f
111 Casual shirts 17 x 35 (Office) Kohls, Pennys, Sears -1 f 25 \N \N \N 60 f
111 Cokin Filters - Blue 021 http://www.bhphotovideo.com -1 f 1452 \N \N \N 61 f
111 Cokin Filters - FLW 036 http://www.bhphotovideo.com -1 f 1455 \N \N \N 61 f
111 Cokin Filters - Fog 150 http://www.bhphotovideo.com -1 f 1462 \N \N \N 61 f
111 Cokin Filters - Fog 151 http://www.bhphotovideo.com -1 f 1463 \N \N \N 61 f
111 Cokin Filters - Graduated 123 http://www.bhphotovideo.com -1 f 1460 \N \N \N 61 f
111 Cokin Filters - Graduated 125 http://www.bhphotovideo.com -1 f 1461 \N \N \N 61 f
111 Cokin Filters - Star 057 http://www.bhphotovideo.com -1 f 1457 \N \N \N 61 f
111 Cokin Filters - Sunsoft 694 http://www.bhphotovideo.com -1 f 1458 \N \N \N 61 f
111 Cokin Filters - Warm 028 http://www.bhphotovideo.com -1 f 1453 \N \N \N 61 f
111 Cokin Filters - Warm 037 http://www.bhphotovideo.com -1 f 1454 \N \N \N 61 f
111 Dress Shirts (17 X 35) -1 f 546 \N \N \N 60 f
111 Film (Kodak or Fuji) 200 - 400 -1 f 409 \N \N \N 61 f
111 H.E. Harris Co. Quarter Size Coin Tubes (4 pack) Hobby Lobby, Michaels, www.heharris.com -1 f 1724 \N \N \N 27 f
111 Nails - Paslode 16 gauge All sizes 3/4 thru 2 1/2 Home depot -1 f 2199 \N \N \N 27 f
111 Ross Root Feeder Franks or on-line gardening stores -1 f 1786 \N \N \N 27 f
111 Snap-On Pocketed Racing Shirt, Black - XL http://buy1.snapon.com -1 f 1788 \N \N \N 60 f
111 Snap-On SuperCharger Hat http://buy1.snapon.com -1 f 1789 \N \N \N 60 f
111 Snap-On X-Treme Tools Beach Towel http://buy1.snapon.com -1 f 1787 \N \N \N 60 f
111 Thistle Seed -1 f 41 \N \N \N 27 f
111 2 " drop hitch & ball mount for the Truck Sears, Pep Boys, Autozone, Some Targets/KMart -1 f 1688 \N \N \N 59 f
111 Promises Of Light - Thomas Kinkade http://www.amazon.com -1 f 2444 \N \N \N 58 \N
111 Simpler Times - Thomas Kinkade http://www.amazon.com/exec/obidos/ASIN/1565074165/qid=1089314089/sr=2-3/ref=sr_2_3/103-3372555-1868632 -1 f 2064 \N \N \N 58 f
111 A Father's Memories To His Child - Thomas Kincade http://www.amazon.com/exec/obidos/tg/detail/-/0849975727/qid=1089314089/sr=1-4/ref=sr_1_4/103-3372555-1868632?v=glance&s=books.asp?ProdID=8558 -1 f 2065 \N \N \N 58 f
111 12 volt Travel Blanket (lap robe) -1 f 1378 \N \N \N 59 f
111 Home Is Where the Heart Is - Thomas Kincade http://www.amazon.com/exec/obidos/tg/detail/-/1565077636/qid=1089314089/sr=1-7/ref=sr_1_7/103-3372555-1868632?v=glance&s=books -1 f 2048 \N \N \N 58 f
111 Seasons of Light - Thomas Kincade http://www.amazon.com/exec/obidos/tg/detail/-/1565079248/qid=1089314089/sr=1-9/ref=sr_1_9/103-3372555-1868632?v=glance&s=books -1 f 2039 \N \N \N 58 f
111 Romantic Hideaways - Thomas Kinkade http://www.amazon.com/exec/obidos/tg/detail/-/1565075412/qid=1089314625/sr=1-20/ref=sr_1_20/103-3372555-1868632?v=glance&s=books -1 f 2445 \N \N \N 58 \N
111 Lightposts for Living:The Art of Choosing a Joyful Life http://www.amazon.com/exec/obidos/tg/detail/-/0446676179/qid=1089315845/sr=1-34/ref=sr_1_34/103-3372555-1868632?v=glance&s=books -1 f 2446 \N \N \N 58 \N
111 The Many Loves of Marriage- Thomas Kinkade http://www.amazon.com/exec/obidos/tg/detail/-/1590521498/qid=1089315845/sr=1-36/ref=sr_1_36/103-3372555-1868632?v=glance&s=books -1 f 2447 \N \N \N 58 \N
111 A Book of Joy - Thomas Kinkade http://www.amazon.com/exec/obidos/tg/detail/-/0740722301/qid=1089315845/sr=1-40/ref=sr_1_40/103-3372555-1868632?v=glance&s=books -1 f 2448 \N \N \N 58 \N
111 Glorious Refrains : A Collection of Classic Hymn Stories and Reflections That Touch the Heart http://www.amazon.com/exec/obidos/tg/detail/-/0718000587/qid=1089316832/sr=1-44/ref=sr_1_44/103-3372555-1868632?v=glance&s=books -1 f 2449 \N \N \N 58 \N
111 A Child's Garden Of Verses A Collection Of Scriptures, Prayers & Poems http://www.amazon.com/exec/obidos/tg/detail/-/0849958695/qid=1089316832/sr=1-46/ref=sr_1_46/103-3372555-1868632?v=glance&s=books -1 f 2450 \N \N \N 58 \N
111 It Is Well With My Soul - Thomas Kinkade http://www.amazon.com/exec/obidos/tg/detail/-/0736906312/qid=1089316832/sr=1-47/ref=sr_1_47/103-3372555-1868632?v=glance&s=books -1 f 2451 \N \N \N 58 \N
111 Our Family History - Thomas Kinkade http://www.amazon.com/exec/obidos/tg/detail/-/0766750612/qid=1089316832/sr=1-49/ref=sr_1_49/103-3372555-1868632?v=glance&s=books -1 f 2452 \N \N \N 58 \N
111 Do Not Lose Heart - Thomas Kinkade http://www.amazon.com/exec/obidos/tg/detail/-/0310217067/qid=1089317283/sr=1-51/ref=sr_1_51/103-3372555-1868632?v=glance&s=books -1 f 2453 \N \N \N 58 \N
111 Grandfather's Memories To His Grandchild http://www.amazon.com/exec/obidos/tg/detail/-/0849959128/qid=1089317283/sr=1-59/ref=sr_1_59/103-3372555-1868632?v=glance&s=books -1 f 2454 \N \N \N 58 \N
111 A Family Christmas Treasury - Thomas Kinkade http://www.amazon.com/exec/obidos/tg/detail/-/089107970X/qid=1089317471/sr=1-62/ref=sr_1_62/103-3372555-1868632?v=glance&s=books -1 f 2455 \N \N \N 58 \N
111 A Mother's Timeless Wisdom : Inspiration for Your Journey http://www.amazon.com/exec/obidos/tg/detail/-/0785263721/qid=1089317471/sr=1-66/ref=sr_1_66/103-3372555-1868632?v=glance&s=books -1 f 2456 \N \N \N 58 \N
111 Prayers of Hope & Light - Thomas Kinkade http://www.amazon.com/exec/obidos/tg/detail/-/0736906347/qid=1089317471/sr=1-67/ref=sr_1_67/103-3372555-1868632?v=glance&s=books -1 f 2457 \N \N \N 58 \N
111 Heart Reflections Devotional http://www.amazon.com/exec/obidos/tg/detail/-/0785258884/qid=1089317880/sr=1-71/ref=sr_1_71/103-3372555-1868632?v=glance&s=books -1 f 2458 \N \N \N 58 \N
111 Shorty Pajamas (XL) Kohls, Sears, etc -1 f 2459 \N \N \N 60 \N
111 A Christmas Carol -1 f 1383 \N \N \N 62 f
111 Cinderella -1 f 962 \N \N \N 62 f
111 Cinderella 2 Target -1 f 963 \N \N \N 62 f
111 I'll Be Home for Christmas -1 f 1384 \N \N \N 62 f
111 Pinocchio -1 f 965 \N \N \N 62 f
111 Seven Brides for Seven Brothers -1 f 1207 \N \N \N 62 f
111 Werner's (Orange) 6' Fiberglass Ladder Sears, Ace Hardware, Menards -1 f 1686 \N \N \N 63 f
111 Craftsman Magnetic Toolbox Labels http://www.sears.com/sr/javasr/product.do?BV_UseBVCookie=Yes&vertical=TOOL&fromAuto=YES&bidsite=CRAFT&pid=00959839000 -1 f 2460 \N \N \N 63 \N
111 3 Pack of Reading Glasses (1.50-1.75) Sam's Club, Costco -1 f 2461 \N \N \N 27 \N
111 Motorola Walkie Talkies (like Dan's w/recharging base) Sam's Club, Costco -1 f 2462 \N \N \N 27 \N
111 White Athletic Shoes (10) Kohls -1 f 2463 \N \N \N 60 \N
111 Bug Deflector for a 2003 Avalanche -1 f 2464 \N \N \N 59 \N
111 Garden Tool - "The Claw" Franks, Target, -1 f 2466 \N \N \N 63 \N
111 Chevy Racing Flag http://www.chevymall.com/shopping/product/detailmain.jsp?itemID=2578&itemType=PRODUCT&iMainCat=17&iSubCat=222&iProductID=2578 -1 f 2467 \N \N \N 27 \N
111 Chevy TShirt (XL) http://www.chevymall.com/shopping/product/detailmain.jsp?itemID=2554&itemType=PRODUCT&iMainCat=17&iSubCat=218&iProductID=2554 -1 f 2468 \N \N \N 60 \N
111 Chevy TShirt (XL) http://www.chevymall.com/shopping/product/detailmain.jsp?itemID=2553&itemType=PRODUCT&iMainCat=17&iSubCat=218&iProductID=2553 -1 f 2469 \N \N \N 60 \N
101 An Evening with Kevin Smith http://www.amazon.com/exec/obidos/ASIN/B00007149S/ref=nosim/edazzlenet-20/103-2206278-9715065?dev-t=DRMCNRTARZTIR -1 f 2422 \N \N \N 52 f
101 Babylon 5, The complete 1st season http://www.amazon.com/exec/obidos/ASIN/B00006HAZ4/qid=1028498990/sr=2-2/ref=sr_2_2/002-3313219-4952062 -1 f 994 \N \N \N 52 f
101 Babylon 5, The complete 2nd season http://www.amazon.com/exec/obidos/ASIN/B000087EYB/ref=ase_thelurkersguidet/002-2138930-8861647 -1 f 1651 \N \N \N 52 f
101 Babylon 5, The complete 5th season http://www.amazon.com/exec/obidos/tg/detail/-/B00019071C/qid=1080962619/sr=1-1/ref=sr_1_1/002-4275516-1327249?v=glance&s=dvd -1 f 2417 \N \N \N 52 f
101 Brainstorm http://www.amazon.com/exec/obidos/tg/detail/-/B00004VVN9/ref=ase_imdb-adbox/002-4095075-6309616?v=glance&s=dvd -1 f 2382 \N \N \N 52 f
101 Good Eats Volume 1-3 set. <br>(Volume 1 not available individually anymore) http://store.foodnetwork.com/shop/product.asp?product_code=4246&department_code=2&category_code=25&subcategory_code=25&search_type=subcategory -1 f 2181 \N \N \N 52 f
101 Good Eats Volume 5 http://store.foodnetwork.com/shop/product.asp?product_code=4294&department_code=1&category_code=9&subcategory_code=9&search_type=subcategory -1 f 2415 \N \N \N 52 f
101 Good Eats Volume 6 http://store.foodnetwork.com/shop/product.asp?product_code=4298&department_code=1&category_code=9&subcategory_code=9&search_type=subcategory -1 f 2416 \N \N \N 52 f
101 Handheld gyroscope http://www.thinkgeek.com/cubegoodies/toys/5ea1/ -1 f 2124 \N \N \N 54 f
101 Kitchen Aid mixer bowl covers for K45 bowl http://www.bedbathandbeyond.com/product.asp?order_num=-1&SKU=11021883&RN=437&KSKU=103745 -1 f 1755 \N \N \N 53 f
101 Revolution OS http://www.thinkgeek.com/books/nonfiction/5dd5/ -1 f 1670 \N \N \N 52 f
101 Stargate SG-1 Season 6 http://www.amazon.com/exec/obidos/tg/detail/-/B00015HVI8/qid=1081992378/sr=1-1/ref=sr_1_1_xs_dvd_i1_xgl74/103-2721812-9307852?v=glance&s=dvd -1 f 2420 \N \N \N 52 f
101 The Confusion: The Baroque Cycle, Vol 2 http://www.amazon.com/exec/obidos/ASIN/0060523867/qid=1085107865/sr=2-1/ref=sr_2_1/102-2798607-6840920 -1 f 2440 \N \N \N 55 f
101 The System of the World:<br>The Baroque Cycle, Vol 3. (Available 9/21/04) http://www.amazon.com/exec/obidos/ASIN/0060523875/qid=1085107865/sr=2-2/ref=sr_2_2/102-2798607-6840920 -1 f 2441 \N \N \N 55 f
101 Babylon 5: The Movies http://www.amazon.com/exec/obidos/tg/detail/-/B0002B15UQ/qid=1092451269/sr=1-3/ref=sr_1_3/104-8878783-2343900?v=glance&s=dvd -1 f 2470 \N \N \N 52 \N
108 DVD: LA Confidential 101 t 2477 \N \N \N \N \N
119 Automotive - Car cleaner,wax,polish-Meguiers Pro Automotive Store -1 f 219 \N \N \N 17 f
119 Automotive - Meguir's Car Wash Largest Bottle available Target -1 f 1705 \N \N \N 17 f
119 Books - Chilton Manual for 1997 Chevy Tahoe -1 f 1719 \N \N \N 17 f
119 Books - Water Gardens And Ponds Home Depot -1 f 659 \N \N \N 17 f
119 CD - Aerosmith - Rocks -1 f 1194 \N \N \N 65 f
119 CD - Pink Floyd - The Division Bell -1 f 1718 \N \N \N 65 f
119 Clothes - ARIZONA Blue and Black Jeans Size 40 - 34 -1 f 1167 \N \N \N 17 f
119 clothes - Carhartt Washed Duck Work Pants size 42-34 -1 f 2429 \N \N \N 17 f
119 Clothes - Dark Colored T-shirts ( not undershirts) size xxl -1 f 1930 \N \N \N 17 f