-
Notifications
You must be signed in to change notification settings - Fork 0
/
holds_no_copies_test.csv
We can't make this file beautiful and searchable because it's too large.
2506 lines (2506 loc) · 650 KB
/
holds_no_copies_test.csv
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
"sort_to_sheet","mat_type_code","first_item_itype","call_number","bib_record_num","id","publish_year","cataloging_date","mat_type","mat_type_code","best_title","best_title_norm","call_number","volume_statement","oldest_hold_date","newest_hold_date","bib_locations","abbv_bib_locations","first_item_itype","count_active_holds","count_active_copies","count_copies_on_order"
"clc","i","71","cd-spoken fiction korman","b3229950a","420910024958","2015","2016-12-09","Book on CD","i","Masterminds [sound recording]","masterminds sound recording","cd-spoken fiction korman","","2018-07-16","2018-08-27","shj","sh","71","3","0","0"
"clc","j","78","cd-juvenile nursery n974s 2013","b3070376a","420909865384","2013","2015-07-15","Music CD","j","Nursery rhymes songs [sound recording].","nursery rhymes songs sound recording","cd-juvenile nursery n974s 2013","","2019-04-22","2019-05-21","osj","os","78","3","0","0"
"clc","a","11","easy","b2928558a","420909723566","2014","2014-01-16","Book","a","Feelings!","feelings","easy","","2019-03-12","2019-06-19","dtj,1cj,mmj,osj,plj,smj","dt,1c,mm,os,pl,sm","11","2","0","0"
"clc","a","2","easy","b2294280a","420909089288","2000","2004-06-18","Book","a","Let's find Pokémon 3!","lets find pokémon 3","easy","","2019-02-04","2019-03-21","maj","ma","2","2","0","0"
"clc","a","2","745.723 fw344","b1869605a","420908664613","2000","2002-03-25","Book","a","The Usborne book of art ideas","usborne book of art ideas","745.723 fw344","","2019-01-30","2019-03-02","osj","os","2","2","0","0"
"clc","q","91","pl-spoken fiction","b2770507a","420909565515","2009","2010-03-17","Playaway","q","Rodrick rules [electronic resource]","rodrick rules electronic resource","pl-spoken fiction","","2018-11-09","2019-02-23","bhj,hpj,maj,1cj","bh,hp,ma,1c","91","2","0","0"
"clc","a","2","easy","b2739398a","420909534406","2010","2010-02-16","Book","a","Chick : a pop-up book","chick a pop up book","easy","","2019-02-20","2019-02-20","dtj,maj,1cj,1lj,nsj,osj,plj","dt,ma,1c,1l,ns,os,pl","2","1","0","0"
"clc","a","2","easy","b3013896a","420909808904","2014","2014-12-03","Book","a","Pull the tab : animals","pull the tab animals","easy","","2019-06-20","2019-06-20","1cj,moj,mtj,osj","1c,mo,mt,os","2","1","0","0"
"clc","a","2","easy","b2426969a","420909221977","2004","2004-09-10","Book","a","Dinosaur hide-and-seek","dinosaur hide and seek","easy","","2018-10-28","2018-10-28","bhj,1lj,osj,plj","bh,1l,os,pl","2","1","0","0"
"clc","a","2","easy","b1441337a","420908236345","1993","1993-04-16","Book","a","A big ball of string","big ball of string","easy","","2019-05-10","2019-05-10","osj","os","2","1","0","0"
"clc","a","2","easy","b1443572a","420908238580","1992","1993-04-16","Book","a","Looking for crabs","looking for crabs","easy","","2018-08-16","2018-08-16","osj,shj","os,sh","2","1","0","0"
"clc","a","2","easy","b2749418a","420909544426","2009","2010-02-09","Book","a","The story of the Statue of Liberty","story of the statue of liberty","easy","","2019-01-21","2019-01-21","1cj","1c","2","1","0","0"
"clc","a","2","796.323092 o58 zco","b1482733a","420908277741","1993","1994-02-10","Book","a","Shaquille O'Neal","shaquille oneal","796.323092 o58 zco","","2019-05-17","2019-05-17","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2163394a","420908958402","1960","1995-05-04","Book","a","The Buttons go camping","buttons go camping","easy","","2019-07-02","2019-07-02","1lj","1l","2","1","0","0"
"clc","a","2","636.9322 qb261","b1841036a","420908636044","2001","2002-09-30","Book","a","101 facts about rabbits","101 facts about rabbits","636.9322 qb261","","2018-08-15","2018-08-15","osj","os","2","1","0","0"
"clc","a","2","easy","b2579295a","420909374303","2008","2008-03-12","Book","a","Worlds of adventure : a look-inside book","worlds of adventure a look inside book","easy","","2019-05-05","2019-05-05","dpj,foj,1cj,osj,wwj","dp,fo,1c,os,ww","2","1","0","0"
"clc","a","2","easy","b1324896a","420908119904","1992","1992-12-04","Book","a","The big Alfie out of doors storybook","big alfie out of doors storybook","easy","","2019-06-10","2019-06-10","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b2623990a","420909418998","2005","2005-06-10","Book","a","Fantastic 4 : meet the Fantastic Four","fantastic 4 meet the fantastic four","fiction","","2018-03-22","2018-03-22","mdj","md","2","1","0","0"
"clc","a","2","398.4","b2481741a","420909276749","1975","1992-03-22","Book","a","Hans Clodhopper","hans clodhopper","398.4","","2019-05-30","2019-05-30","1lj","1l","2","1","0","0"
"clc","a","2","easy","b1529745a","420908324753","1997","1997-12-05","Book","a","Whose daddy does this?","whose daddy does this","easy","","2019-04-08","2019-04-08","anj,chj,haj,osj,shj","an,ch,ha,os,sh","2","1","0","0"
"clc","a","2","easy","b2675185a","420909470193","2008","2008-08-21","Book","a","Richard Scarry's shapes & opposites","richard scarrys shapes and opposites","easy","","2018-10-16","2018-10-16","1cj,osj","1c,os","2","1","0","0"
"clc","a","2","fiction","b2654293a","420909449301","2003","2006-12-12","Book","a","A pony's tale","ponys tale","fiction","","2019-07-03","2019-07-03","oaj","oa","2","1","0","0"
"clc","a","2","easy","b3242164a","420910037172","2014","2017-03-16","Book","a","Poke-a-dot : what's your favorite color?","poke a dot whats your favorite color","easy","","2019-05-30","2019-05-30","1cj,osj","1c,os","2","1","0","0"
"clc","q","91","pl-pack easy f927 2013","b2960100a","420909755108","2013","2014-05-12","Playaway","q","Frog and Toad audio collection","frog and toad audio collection","pl-pack easy f927 2013","","2019-03-12","2019-03-12","osj","os","91","1","0","0"
"clc","a","2","easy","b2703759a","420909498767","2008","2008-09-29","Book","a","Lucy and the bully","lucy and the bully","easy","","2019-04-12","2019-04-12","osj","os","2","1","0","0"
"clc","a","2","j398.2","b2204827a","420908999835","1984","1992-03-22","Book","a","The magic grove : a Persian folktale","magic grove a persian folktale","j398.2","","2018-09-19","2018-09-19","1lj","1l","2","1","0","0"
"clc","a","2","952.2 qm135 , 1995","b1615988a","420908410996","1995","1996-09-05","Book","a","A samurai castle","samurai castle","952.2 qm135 , 1995","","2019-06-08","2019-06-08","1lj","1l","2","1","0","0"
"clc","a","2","759.85 ql334 he","b1592834a","420908387842","1988","1998-02-05","Book","a","A home","home","759.85 ql334 he","","2019-05-30","2019-05-30","1lj","1l","2","1","0","0"
"clc","a","2","791.06873 v281","b1262999a","420908058007","1983","1992-10-02","Book","a","Behind the scenes at the amusement park","behind the scenes at the amusement park","791.06873 v281","","2019-05-25","2019-05-25","1lj","1l","2","1","0","0"
"clc","a","2","746.432 qc635","b2242377a","420909037385","2003","2004-04-22","Book","a","Kids can knit : fun and easy projects for your small knitter","kids can knit fun and easy projects for your small knitter","746.432 qc635","","2018-10-27","2018-10-27","oaj","oa","2","1","0","0"
"clc","q","91","pl-pack easy t866 2013","b3047762a","420909842770","2013","2015-06-19","Playaway","q","The true story of the 3 little pigs! : and other favorite animal stories","true story of the 3 little pigs and other favorite animal stories","pl-pack easy t866 2013","","2019-03-29","2019-03-29","osj","os","91","1","0","0"
"clc","a","2","easy","b2742139a","420909537147","2006","2006-02-08","Book","a","Disney's Winnie the Pooh shapes","disneys winnie the pooh shapes","easy","","2019-06-10","2019-06-10","osj","os","2","1","0","0"
"clc","a","2","easy","b3133612a","420909928620","2015","2016-02-04","Book","a","Vehicles","vehicles","easy","","2019-05-21","2019-05-21","anj,baj,foj,maj,1cj,osj,smj","an,ba,fo,ma,1c,os,sm","2","1","0","0"
"clc","a","2","easy","b2604589a","420909399597","2005","2005-05-03","Book","a","Animal sounds","animal sounds","easy","","2019-03-27","2019-03-27","dtj,osj","dt,os","2","1","0","0"
"clc","a","2","973.04927 t284 , 2003","b1849989a","420908644997","2003","2003-04-01","Book","a","The Arab Americans","arab americans","973.04927 t284 , 2003","","2019-03-19","2019-03-19","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2491321a","420909286329","1972","1992-04-24","Book","a","The adventures of Obadiah.","adventures of obadiah","easy","","2019-07-06","2019-07-06","1lj,osj","1l,os","2","1","0","0"
"clc","a","2","easy","b2984794a","420909779802","2014","2014-08-22","Book","a","I love you, Snugglesaurus!","i love you snugglesaurus","easy","","2019-01-09","2019-01-09","anj,1cj,mnj,osj,whj,wwj","an,1c,mn,os,wh,ww","2","1","0","0"
"clc","a","2","398.4 qp655 n","b1866469a","420908661477","2002","2003-04-03","Book","a","The nightingale","nightingale","398.4 qp655 n","","2018-09-11","2018-09-11","1cj","1c","2","1","0","0"
"clc","a","2","630.92 c331 zc, 1990","b1274843a","420908069851","1990","1991-01-15","Book","a","George Washington Carver","george washington carver","630.92 c331 zc, 1990","","2019-01-21","2019-01-21","osj","os","2","1","0","0"
"clc","a","2","easy","b1559142a","420908354150","1995","1995-10-02","Book","a","Here come the aliens!","here come the aliens","easy","","2019-06-24","2019-06-24","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b1946926a","420908741934","2001","2001-10-22","Book","a","Jurassic Park III movie storybook : a storybook","jurassic park iii movie storybook a storybook","fiction","","2019-06-24","2019-06-24","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b1625875a","420908420883","1997","1997-09-04","Book","a","Karen's treasure","karens treasure","fiction","","2018-12-27","2018-12-27","1lj,nwj","1l,nw","2","1","0","0"
"clc","a","2","741.5 h243 2007","b2557402a","420909352410","2007","2009-01-12","Book","a","Hannah Montana","hannah montana","741.5 h243 2007","v.02","2018-08-14","2018-08-14","bhj,coj,ghj,lvj,mdj,mmj,oaj,prj,whj","bh,co,gh,lv,md,mm,oa,pr,wh","2","1","0","0"
"clc","a","2","598.4","b2359788a","420909154796","1965","1992-06-23","Book","a","Honker; the story of a wild goose","honker the story of a wild goose","598.4","","2019-04-03","2019-04-03","1lj","1l","2","1","0","0"
"clc","a","2","599.364 m128","b2074864a","420908869872","1951","1992-04-07","Book","a","Stripe: the story of a chipmunk.","stripe the story of a chipmunk","599.364 m128","","2019-04-03","2019-04-03","1lj","1l","2","1","0","0"
"clc","a","2","easy","b1816302a","420908611310","1999","2001-06-15","Book","a","Things that make you feel good/things that make you feel bad","things that make you feel good things that make you feel bad","easy","","2019-02-21","2019-02-21","osj","os","2","1","0","0"
"clc","a","2","fiction","b2485913a","420909280921","1945","1989-04-05","Book","a","The little fellow.","little fellow","fiction","","2019-04-13","2019-04-13","osj","os","2","1","0","0"
"clc","a","11","easy","b1404375a","420908199383","1992","1993-03-03","Book","a","Maisy goes to the playground","maisy goes to the playground","easy","","2018-10-28","2018-10-28","maj,1cj,nsj,osj","ma,1c,ns,os","11","1","0","0"
"clc","a","2","810.809282 qb879","b1951567a","420908746575","2001","2001-10-22","Book","a","Mouse of my heart : a treasury of sense and nonsense","mouse of my heart a treasury of sense and nonsense","810.809282 qb879","","2019-07-06","2019-07-06","1lj","1l","2","1","0","0"
"clc","a","2","508","b1044169a","420907839177","1989","1992-03-22","Book","a","Quicksand and other earthly wonders","quicksand and other earthly wonders","508","","2019-03-04","2019-03-04","1lj","1l","2","1","0","0"
"clc","j","78","cd-juvenile wiggles w656sp 2006","b2546098a","420909341106","2006","2006-06-21","Music CD","j","Splish, splash, big red boat! [sound recording]","splish splash big red boat sound recording","cd-juvenile wiggles w656sp 2006","","2019-03-28","2019-03-28","1lj","1l","78","1","0","0"
"clc","a","2","333.95","b2159097a","420908954105","1985","1992-03-22","Book","a","Land animals","land animals","333.95","","2019-03-08","2019-03-08","1lj","1l","2","1","0","0"
"clc","a","2","692.22 k86","b2589582a","420909384590","2010","2010-10-04","Book","a","Monster trucks ; Cool cars","monster trucks cool cars","692.22 k86","","2018-12-10","2018-12-10","anj,cvj,mnj","an,cv,mn","2","1","0","0"
"clc","a","11","easy","b2682529a","420909477537","2008","2008-08-13","Book","a","Maisy's nature walk","maisys nature walk","easy","","2018-08-18","2018-08-18","dtj,maj,1lj,nrj,osj,wwj","dt,ma,1l,nr,os,ww","11","1","0","0"
"clc","a","2","easy","b2822222a","420909617230","2011","2013-01-29","Book","a","Clifford cares","clifford cares","easy","","2019-06-20","2019-06-20","dtj,grj,1cj,nrj,osj,prj","dt,gr,1c,nr,os,pr","2","1","0","0"
"clc","a","2","419","b1413899a","420908208907","1973","1992-03-22","Book","a","The three little kittens in Signed English. / Prepared under the supervision of the staff of the Pre-school Signed English Project : Barbara M. Kannapell... [et al.]","three little kittens in signed english","419","","2019-07-01","2019-07-01","osj","os","2","1","0","0"
"clc","a","2","741.5 p1522 2005","b2576067a","420909371075","2005","2006-08-04","Book","a","Blazin' barrels","blazin barrels","741.5 p1522 2005","v.06","2017-05-25","2017-05-25","baj,crj,mmj,sbj,wtj","ba,cr,mm,sb,wt","2","1","0","0"
"clc","a","2","easy","b2841637a","420909636645","2013","2013-04-29","Book","a","Little Red Riding Hood","little red riding hood","easy","","2019-03-26","2019-03-26","chj,maj,1cj,mmj,mnj,nrj,osj,wyj","ch,ma,1c,mm,mn,nr,os,wy","2","1","0","0"
"clc","a","2","easy","b2364655a","420909159663","1965","1994-09-26","Book","a","Wild ducks and daffodils","wild ducks and daffodils","easy","","2019-04-25","2019-04-25","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b1344415a","420908139423","1992","1994-07-08","Book","a","Keep out, Claudia!","keep out claudia","fiction","","2018-11-05","2018-11-05","avj","av","2","1","0","0"
"clc","a","2","741.5 qa786 , 2001","b1983749a","420908778757","2001","2001-11-30","Book","a","Cartooning for kids","cartooning for kids","741.5 qa786 , 2001","","2019-06-17","2019-06-17","grj,whj","gr,wh","2","1","0","0"
"clc","i","71","cdw 02981","b2633897a","420909428905","2005","2005-10-06","Book on CD","i","Curious George goes to a movie [sound recording]","curious george goes to a movie sound recording","cdw 02981","","2017-08-16","2017-08-16","osj","os","71","1","0","0"
"clc","a","2","easy","b2662884a","420909457892","2011","2011-02-16","Book","a","Farm friends","farm friends","easy","","2019-05-05","2019-05-05","chj,clj,lvj,mmj,mwj,osj,rej,wwj","ch,cl,lv,mm,mw,os,re,ww","2","1","0","0"
"clc","a","2","easy","b2701002a","420909496010","2006","2007-02-20","Book","a","When I grow up, I will win the Nobel Peace Prize","when i grow up i will win the nobel peace prize","easy","","2019-05-18","2019-05-18","1lj","1l","2","1","0","0"
"clc","a","2","743.673 ql478 , 2002","b1867064a","420908662072","2002","2003-04-08","Book","a","How to draw sharks","how to draw sharks","743.673 ql478 , 2002","","2019-07-01","2019-07-01","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2733073a","420909528081","2004","2007-05-01","Book","a","Snappy sounds vroom! : with fun vehicle sounds","snappy sounds vroom with fun vehicle sounds","easy","","2019-04-07","2019-04-07","foj,1lj,mwj,osj,plj,shj,wyj","fo,1l,mw,os,pl,sh,wy","2","1","0","0"
"clc","a","2","323.650973 qb435 pzp","b1920082a","420908715090","2001","2001-09-12","Book","a","The pledge of allegiance.","pledge of allegiance","323.650973 qb435 pzp","","2019-06-17","2019-06-17","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b2005340a","420908800348","1984","1992-03-22","Book","a","Clancy's coat","clancys coat","fiction","","2019-06-25","2019-06-25","1lj,smj","1l,sm","2","1","0","0"
"clc","a","2","972","b2381319a","420909176327","1983","1992-03-22","Book","a","Mexico","mexico","972","","2019-01-13","2019-01-13","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2566052a","420909361060","2008","2009-02-12","Book","a","Bee & me","bee and me","easy","","2019-04-26","2019-04-26","bhj","bh","2","1","0","0"
"clc","a","2","796.352092 w897 zc","b1810979a","420908605987","1998","1999-02-04","Book","a","On the course with-- Tiger Woods","on the course with tiger woods","796.352092 w897 zc","","2019-04-16","2019-04-16","1lj","1l","2","1","0","0"
"clc","a","2","easy","b1870681a","420908665689","2001","2002-10-21","Book","a","Stuart and Snowbell","stuart and snowbell","easy","","2019-07-02","2019-07-02","maj,1lj","ma,1l","2","1","0","0"
"clc","a","2","easy","b2734416a","420909529424","2012","2012-06-01","Book","a","Spot loves sports","spot loves sports","easy","","2019-04-22","2019-04-22","bhj,chj,haj,1cj,osj,rej","bh,ch,ha,1c,os,re","2","1","0","0"
"clc","a","2","791.453 l678 , 2000","b1821280a","420908616288","2000","2002-09-16","Book","a","SpongeBob Squarepants : joke book","spongebob squarepants joke book","791.453 l678 , 2000","","2019-06-05","2019-06-05","crj,1lj","cr,1l","2","1","0","0"
"clc","a","2","easy","b2601999a","420909397007","2005","2005-04-29","Book","a","Animal babies around the house","animal babies around the house","easy","","2019-03-14","2019-03-14","osj","os","2","1","0","0"
"clc","a","2","158.2 b5341me, 1988","b1972349a","420908767357","1988","1999-07-27","Book","a","A children's book about being mean","childrens book about being mean","158.2 b5341me, 1988","","2018-10-17","2018-10-17","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2822217a","420909617225","2012","2013-01-10","Book","a","Clifford shares","clifford shares","easy","","2019-06-20","2019-06-20","anj,coj,grj,lvj,maj,1cj,nrj,nsj,osj,plj,prj","an,co,gr,lv,ma,1c,nr,ns,os,pl,pr","2","1","0","0"
"clc","j","78","cd-juvenile thats t367k 2005","b2551810a","420909346818","2005","2007-11-12","Music CD","j","That's so Raven [sound recording]","thats so raven sound recording","cd-juvenile thats t367k 2005","","2019-01-11","2019-01-11","coj,1cj","co,1c","78","1","0","0"
"clc","a","2","easy","b1870378a","420908665386","1998","2000-05-18","Book","a","The foolish tortoise","foolish tortoise","easy","","2019-05-02","2019-05-02","osj","os","2","1","0","0"
"clc","a","2","793.74 b658 m","b1433293a","420908228301","1994","1994-11-09","Book","a","Math tricks, puzzles & games","math tricks puzzles and games","793.74 b658 m","","2019-06-06","2019-06-06","1lj,nrj","1l,nr","2","1","0","0"
"clc","a","2","741.2 qb355","b1334922a","420908129930","1993","1993-09-28","Book","a","The drawing book","drawing book","741.2 qb355","","2019-07-02","2019-07-02","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b1311340a","420908106348","1993","1994-05-24","Book","a","The pagemaster","pagemaster","fiction","","2019-06-18","2019-06-18","1lj","1l","2","1","0","0"
"clc","a","2","598.2","b2049763a","420908844771","1968","1992-04-08","Book","a","Redbird, the story of a cardinal,","redbird the story of a cardinal","598.2","","2019-01-31","2019-01-31","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2570914a","420909365922","2012","2012-01-25","Book","a","When Blue met Egg","when blue met egg","easy","","2019-05-04","2019-05-04","cvj,1cj","cv,1c","2","1","0","0"
"clc","a","11","easy","b2078754a","420908873762","2003","2003-10-07","Book","a","Face to face safari","face to face safari","easy","","2019-02-20","2019-02-20","anj,avj,bhj,chj,dtj,haj,maj,1cj,1lj,mtj,nsj,oaj,osj,rej,shj,smj","an,av,bh,ch,dt,ha,ma,1c,1l,mt,ns,oa,os,re,sh,sm","11","1","0","0"
"clc","a","2","easy","b1944406a","420908739414","2003","2003-06-06","Book","a","What daddies do best","what daddies do best","easy","","2019-05-24","2019-05-24","osj,wyj","os,wy","2","1","0","0"
"clc","a","2","950.049159 ql796","b1960586a","420908755594","2003","2002-12-31","Book","a","The Kurds of Asia","kurds of asia","950.049159 ql796","","2019-05-02","2019-05-02","1lj","1l","2","1","0","0"
"clc","a","2","920.073 k46 , 1991","b1267998a","420908063006","1991","1991-12-13","Book","a","Kidstories : biographies of 20 young people you'd like to know","kidstories biographies of 20 young people youd like to know","920.073 k46 , 1991","","2019-04-15","2019-04-15","osj","os","2","1","0","0"
"clc","a","10","372.64044 qr357","b2547706a","420909342714","2006","2006-07-06","Book","a","Storytime slam! : 15 lesson plans for preschool and primary story programs","storytime slam 15 lesson plans for preschool and primary story programs","372.64044 qr357","","2019-04-10","2019-04-10","cha,cva,gea,haa,mda,1lj,mta,mwa,pla,pra,shj,wya","ch,cv,ge,ha,md,1l,mt,mw,pl,pr,sh,wy","10","1","0","0"
"clc","a","11","372.2 b157","b2314353a","420909109361","1918","1994-08-01","Book","a","Tell me another story : the book of story programs","tell me another story the book of story programs","372.2 b157","","2016-07-11","2016-07-11","1lj","1l","11","1","0","0"
"clc","a","2","easy","b1045244a","420907840252","1975","1992-03-22","Book","a","Weather","weather","easy","","2018-06-20","2018-06-20","osj","os","2","1","0","0"
"clc","a","2","796.440922 c678","b1507844a","420908302852","1996","1997-07-03","Book","a","Gold medal glory : the story of America's 1996 women's gymnastics team","gold medal glory the story of americas 1996 womens gymnastics team","796.440922 c678","","2019-06-10","2019-06-10","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b1777430a","420908572438","1999","1999-09-07","Book","a","The conspiracy","conspiracy","fiction","","2019-04-01","2019-04-01","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2662844a","420909457852","2011","2011-02-01","Book","a","All about baby","all about baby","easy","","2019-06-06","2019-06-06","1lj","1l","2","1","0","0"
"clc","a","11","791.53 qb854","b1846416a","420908641424","1999","1999-02-23","Book","a","101 fingerplays, stories, and songs to use with finger puppets","101 fingerplays stories and songs to use with finger puppets","791.53 qb854","","2017-10-13","2017-10-13","chj,maa,1lj,mma,moa,pla,wta,wya","ch,ma,1l,mm,mo,pl,wt,wy","11","1","0","0"
"clc","a","2","easy","b2183412a","420908978420","2004","2004-02-12","Book","a","Duck, duck, goose! : (a coyote's on the loose!)","duck duck goose a coyotes on the loose","easy","","2019-06-26","2019-06-26","maj,1lj,osj,prj","ma,1l,os,pr","2","1","0","0"
"clc","a","2","easy","b2626596a","420909421604","2011","2011-01-05","Book","a","What does cow say?","what does cow say","easy","","2018-11-02","2018-11-02","bhj,foj,mmj,pla,wtj,wwj","bh,fo,mm,pl,wt,ww","2","1","0","0"
"clc","a","2","133.1 l253","b1693777a","420908488785","1995","1995-12-20","Book","a","Ghosts","ghosts","133.1 l253","","2019-03-26","2019-03-26","1lj","1l","2","1","0","0"
"clc","a","2","591.472 qm128 , 1973","b2473007a","420909268015","1973","1992-04-07","Book","a","How animals hide","how animals hide","591.472 qm128 , 1973","","2019-04-03","2019-04-03","osj","os","2","1","0","0"
"clc","a","2","easy","b2793834a","420909588842","2012","2012-08-10","Book","a","Elmo goes to school!","elmo goes to school","easy","","2019-05-18","2019-05-18","anj,grj,haj,1lj,nsj","an,gr,ha,1l,ns","2","1","0","0"
"clc","a","2","796.334092 qn572 zjne 2015","b3041077a","420909836085","2015","2015-04-24","Book","a","Neymar : the new Pelé","neymar the new pelé","796.334092 qn572 zjne 2015","","2019-05-09","2019-05-09","gej,grj","ge,gr","2","1","0","0"
"clc","a","10","790.1922 qe11","b1590363a","420908385371","1995","1996-08-26","Book","a","Game for a game? : games, trivia, folklore and fun","game for a game games trivia folklore and fun","790.1922 qe11","","2015-06-30","2015-06-30","1lj","1l","10","1","0","0"
"clc","a","2","easy","b2274097a","420909069105","2004","2004-05-27","Book","a","SpongeBob and the princess","spongebob and the princess","easy","","2019-06-24","2019-06-24","haj","ha","2","1","0","0"
"clc","a","2","636.9356 e92","b1289605a","420908084613","1993","1993-08-17","Book","a","Hamster","hamster","636.9356 e92","","2019-04-19","2019-04-19","1lj,osj","1l,os","2","1","0","0"
"clc","a","2","741.5 a484 k 2006","b2662644a","420909457652","2006","2006-12-07","Book","a","Kingdom hearts : chain of memories","kingdom hearts chain of memories","741.5 a484 k 2006","v.02","2017-07-20","2017-07-20","epj,moj,nrj,osj","ep,mo,nr,os","2","1","0","0"
"clc","a","2","easy","b2133178a","420908928186","1971","1992-03-22","Book","a","Nobody asked me if I wanted a baby sister.","nobody asked me if i wanted a baby sister","easy","","2019-04-19","2019-04-19","1lj","1l","2","1","0","0"
"clc","a","2","s o easy","b3040611a","420909835619","2012","2015-04-30","Book","a","Opposites = Opuestos : English-Spanish","opposites opuestos english spanish","s o easy","","2019-07-06","2019-07-06","bhj,grj","bh,gr","2","1","0","0"
"clc","a","2","easy","b2637634a","420909432642","2003","2005-07-18","Book","a","See the sea! : a book about colors","see the sea a book about colors","easy","","2019-05-23","2019-05-23","1lj,nrj,osj","1l,nr,os","2","1","0","0"
"clc","a","2","fiction","b1527197a","420908322205","1998","1998-07-20","Book","a","The underground","underground","fiction","","2019-04-01","2019-04-01","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2672821a","420909467829","2009","2009-10-02","Book","a","Big Frog can't fit in : a pop out book","big frog cant fit in a pop out book","easy","","2019-03-16","2019-03-16","crj,haj,maj,1lj,nsj,osj,plj","cr,ha,ma,1l,ns,os,pl","2","1","0","0"
"clc","a","2","741.5 qm9953f 2013","b2923984a","420909718992","2013","2019-03-29","Book","a","My little pony : friendship is magic","my little pony friendship is magic","741.5 qm9953f 2013","v.05","2019-05-13","2019-05-13","anj,avj,baj,bhj,chj,coj,crj,cvj,dpj,dtj,foj,gej,ghj,grj,haj,hpj,lvj,maj,mdj,1cj,1lj,mmj,moj,mtj,mwj,nrj,nsj,nwj,oaj,plj,prj,shj,sbj,smj,whj,wwj,wyj","an,av,ba,bh,ch,co,cr,cv,dp,dt,fo,ge,gh,gr,ha,hp,lv,ma,md,1c,1l,mm,mo,mt,mw,nr,ns,nw,oa,pl,pr,sh,sb,sm,wh,ww,wy","2","1","0","0"
"clc","a","2","793.73","b2477743a","420909272751","1971","1992-04-13","Book","a","Sharpen your wits; a puzzle book to bend your brains.","sharpen your wits a puzzle book to bend your brains","793.73","","2019-06-29","2019-06-29","1lj","1l","2","1","0","0"
"clc","a","11","398.8 o61 p","b2322751a","420909117759","1971","1996-10-21","Book","a","The Puffin book of nursery rhymes","puffin book of nursery rhymes","398.8 o61 p","","2019-07-02","2019-07-02","1lj","1l","11","1","0","0"
"clc","a","2","746","b2356232a","420909151240","1965","1992-03-22","Book","a","The stitchery book : embroidery for beginners","stitchery book embroidery for beginners","746","","2019-05-25","2019-05-25","1lj","1l","2","1","0","0"
"clc","a","2","743.89626222 qd817","b1483040a","420908278048","1993","1993-05-26","Book","a","Draw! cars","draw cars","743.89626222 qd817","","2019-05-21","2019-05-21","cvj,1lj","cv,1l","2","1","0","0"
"clc","a","2","536.078 w878 , 1990","b1328804a","420908123812","1990","1991-04-08","Book","a","Physics for kids : 49 easy experiments with heat","physics for kids 49 easy experiments with heat","536.078 w878 , 1990","","2019-06-23","2019-06-23","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2777140a","420909572148","2010","2012-10-15","Book","a","Hulk saves the day!","hulk saves the day","easy","","2019-06-26","2019-06-26","anj,bhj,coj,cvj,grj,haj,lvj,1cj,nsj,oaj,osj","an,bh,co,cv,gr,ha,lv,1c,ns,oa,os","2","1","0","0"
"clc","a","2","597.8 s468 , 1976","b2488912a","420909283920","1976","1992-03-22","Book","a","A first look at frogs, toads, and salamanders.","first look at frogs toads and salamanders","597.8 s468 , 1976","","2019-04-01","2019-04-01","1lj","1l","2","1","0","0"
"clc","a","2","639.395 l253","b1503121a","420908298129","1997","1998-03-19","Book","a","Your pet iguana","your pet iguana","639.395 l253","","2018-09-05","2018-09-05","osj","os","2","1","0","0"
"clc","a","2","910.92","b2088668a","420908883676","1979","1992-03-22","Book","a","Ferdinand Magellan","ferdinand magellan","910.92","","2019-02-25","2019-02-25","osj","os","2","1","0","0"
"clc","a","2","fiction","b1972143a","420908767151","1998","1999-07-27","Book","a","Abby and the best kid ever","abby and the best kid ever","fiction","","2019-03-04","2019-03-04","avj,1lj","av,1l","2","1","0","0"
"clc","a","2","612.75","b2151111a","420908946119","1973","1992-03-22","Book","a","Your living bones,","your living bones","612.75","","2018-08-02","2018-08-02","1lj,osj","1l,os","2","1","0","0"
"clc","a","2","641.578 w776","b1865815a","420908660823","1997","2004-08-09","Book","a","Winnie-the-Pooh's picnic cookbook","winnie the poohs picnic cookbook","641.578 w776","","2019-07-01","2019-07-01","1lj","1l","2","1","0","0"
"clc","a","2","938 t174","b1019223a","420907814231","1936","1992-03-22","Book","a","The story of the Greek people : an elementary history of Greece","story of the greek people an elementary history of greece","938 t174","","2019-03-17","2019-03-17","1lj","1l","2","1","0","0"
"clc","a","2","easy","b1975392a","420908770400","1999","1999-07-27","Book","a","The feet in the gym","feet in the gym","easy","","2019-02-06","2019-02-06","osj","os","2","1","0","0"
"clc","a","2","566","b2473362a","420909268370","1974","1992-03-22","Book","a","Prehistoric monsters did the strangest things","prehistoric monsters did the strangest things","566","","2018-08-17","2018-08-17","1lj","1l","2","1","0","0"
"clc","a","2","741.5 qh325 a 2002","b1901371a","420908696379","2002","2003-05-09","Book","a","Kids draw anime","kids draw anime","741.5 qh325 a 2002","","2019-05-22","2019-05-22","bhj,cvj,grj,mmj,osj,prj","bh,cv,gr,mm,os,pr","2","1","0","0"
"clc","a","2","741.5 qg2313 2014","b3014073a","420909809081","2014","2016-05-27","Book","a","Garfield","garfield","741.5 qg2313 2014","v.01","2019-01-25","2019-01-25","anj,baj,coj,dpj,dtj,epj,gej,ghj,haj,hpj,lvj,maj,1cj,1lj,mmj,mnj,mwj,nrj,oaj,plj,prj,shj,smj,wwj,wyj","an,ba,co,dp,dt,ep,ge,gh,ha,hp,lv,ma,1c,1l,mm,mn,mw,nr,oa,pl,pr,sh,sm,ww,wy","2","1","0","0"
"clc","a","2","741.5973 qd262 gar","b1442817a","420908237825","1985","1992-07-07","Book","a","Garfield's Halloween adventure","garfields halloween adventure","741.5973 qd262 gar","","2019-05-16","2019-05-16","osj","os","2","1","0","0"
"clc","a","2","362.76 f293 2008","b2672564a","420909467572","2008","2011-02-07","Book","a","Some parts are not for sharing","some parts are not for sharing","362.76 f293 2008","","2019-01-15","2019-01-15","bhj,smj","bh,sm","2","1","0","0"
"clc","a","2","easy","b2783701a","420909578709","2007","2007-09-17","Book","a","Big fish, little fish","big fish little fish","easy","","2019-05-23","2019-05-23","osj","os","2","1","0","0"
"clc","a","2","646.70083 qs399","b1265951a","420908060959","1990","1992-10-05","Book","a","What would you do? : a kid's guide to tricky and sticky situations","what would you do a kids guide to tricky and sticky situations","646.70083 qs399","","2019-05-01","2019-05-01","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b1869981a","420908664989","2000","2000-12-26","Book","a","The other","other","fiction","","2019-04-01","2019-04-01","1lj","1l","2","1","0","0"
"clc","a","2","796.357092 r662 zk","b1944776a","420908739784","2002","2001-10-22","Book","a","Jackie Robinson","jackie robinson","796.357092 r662 zk","","2019-04-10","2019-04-10","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b1409927a","420908204935","1991","1991-09-03","Book","a","Setting the pace","setting the pace","fiction","","2019-04-07","2019-04-07","osj","os","2","1","0","0"
"clc","a","2","fiction","b1699299a","420908494307","1997","1998-09-08","Book","a","The first red maple leaf","first red maple leaf","fiction","","2019-06-03","2019-06-03","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b1971050a","420908766058","1997","1999-07-27","Book","a","Queen of the Empire","queen of the empire","fiction","","2019-05-10","2019-05-10","anj,mdj,smj","an,md,sm","2","1","0","0"
"clc","a","2","fiction","b1470389a","420908265397","1991","1991-11-04","Book","a","No-hitter","no hitter","fiction","","2019-02-09","2019-02-09","1lj","1l","2","1","0","0"
"clc","a","11","easy","b2205745a","420909000753","2004","2004-03-11","Book","a","Duckie's rainbow","duckies rainbow","easy","","2019-04-02","2019-04-02","1lj","1l","11","1","0","0"
"clc","-","61","c 95","b2288225a","420909083233","","1991-08-13","Undefined","-","An Edith Hamilton treasury; a lifelong lover of Greece describes its ageless wonders.","edith hamilton treasury a lifelong lover of greece describes its ageless wonders","c 95","","2019-03-23","2019-03-23","1lj","1l","61","1","0","0"
"clc","a","2","297.362 qa222","b2663036a","420909458044","2008","2008-07-14","Book","a","The white nights of Ramadan","white nights of ramadan","297.362 qa222","","2019-03-09","2019-03-09","1cj","1c","2","1","0","0"
"clc","a","2","easy","b1945138a","420908740146","2001","2002-05-28","Book","a","Rain or shine : all about weather : lift-up flaps","rain or shine all about weather lift up flaps","easy","","2018-08-14","2018-08-14","1cj","1c","2","1","0","0"
"clc","a","2","599.786 k33","b1874852a","420908669860","2003","2003-04-08","Book","a","Polar bears","polar bears","599.786 k33","","2019-04-11","2019-04-11","1lj","1l","2","1","0","0"
"clc","a","11","easy","b2726460a","420909521468","2005","2006-01-13","Book","a","Curious kitties : a colors book","curious kitties a colors book","easy","","2019-03-20","2019-03-20","haj,lvj,1lj,osj,smj","ha,lv,1l,os,sm","11","1","0","0"
"clc","a","2","741.5 s6983c 2016","b3136054a","420909931062","2016","2016-03-22","Book","a","Sonic comics spectacular : speed of sound","sonic comics spectacular speed of sound","741.5 s6983c 2016","","2019-06-24","2019-06-24","bhj,chj,haj,1cj,moj,mwj,plj,smj,wtj,wwj","bh,ch,ha,1c,mo,mw,pl,sm,wt,ww","2","1","0","0"
"clc","a","11","easy","b1917085a","420908712093","1998","1999-03-23","Book","a","Happy birthday Maisy","happy birthday maisy","easy","","2017-11-11","2017-11-11","maj,1lj,osj","ma,1l,os","11","1","0","0"
"clc","a","2","easy","b2720987a","420909515995","2007","2007-03-27","Book","a","The best of both nests","best of both nests","easy","","2019-04-11","2019-04-11","1lj","1l","2","1","0","0"
"clc","a","2","easy","b1160864a","420907955872","1984","1992-03-26","Book","a","The goodnight moon room","goodnight moon room","easy","","2018-11-28","2018-11-28","anj,maj,1lj","an,ma,1l","2","1","0","0"
"clc","a","2","easy","b1946721a","420908741729","2003","2003-06-10","Book","a","My first time board book.","my first time board book","easy","","2019-06-17","2019-06-17","osj","os","2","1","0","0"
"clc","a","2","567.9 qb821 w, 1989a","b1435757a","420908230765","1989","1994-11-08","Book","a","What happened to the dinosaurs?","what happened to the dinosaurs","567.9 qb821 w, 1989a","","2018-11-03","2018-11-03","osj","os","2","1","0","0"
"clc","a","2","easy","b2928394a","420909723402","2009","2014-01-29","Book","a","Sadie the skunk","sadie the skunk","easy","","2019-04-30","2019-04-30","1lj","1l","2","1","0","0"
"clc","a","2","easy","b1673838a","420908468846","1998","1998-09-08","Book","a","Matzo ball moon","matzo ball moon","easy","","2019-04-15","2019-04-15","osj","os","2","1","0","0"
"clc","q","91","pl-pack easy i73 2013","b2960105a","420909755113","2013","2014-04-29","Playaway","q","Is your mama a llama? : and other stories about family","is your mama a llama and other stories about family","pl-pack easy i73 2013","","2018-07-28","2018-07-28","osj","os","91","1","0","0"
"clc","a","2","easy","b1815672a","420908610680","1997","1998-10-21","Book","a","The boy who cried wolf","boy who cried wolf","easy","","2019-05-02","2019-05-02","maj,1lj,osj,wtj","ma,1l,os,wt","2","1","0","0"
"clc","a","2","sg h","b2763132a","420909558140","2006","2006-03-29","Book","a","I'm feeling-- : teaching your baby to sign","im feeling teaching your baby to sign","sg h","","2019-03-26","2019-03-26","bhj,1cj","bh,1c","2","1","0","0"
"clc","a","2","easy","b2580439a","420909375447","2006","2009-03-06","Book","a","Fairytopia","fairytopia","easy","","2019-01-29","2019-01-29","wyj","wy","2","1","0","0"
"clc","a","2","easy","b2538835a","420909333843","2011","2011-12-07","Book","a","Lots of bots! : a counting pop-up","lots of bots a counting pop up","easy","","2019-05-23","2019-05-23","anj,coj,dtj,epj,gej,maj,1cj,1lj,osj,prj,whj","an,co,dt,ep,ge,ma,1c,1l,os,pr,wh","2","1","0","0"
"clc","q","91","pl-pack easy j27 2013","b3047756a","420909842764","2013","2015-06-18","Playaway","q","James Marshall's favorite fairy tales / ","james marshalls favorite fairy tales","pl-pack easy j27 2013","","2018-09-17","2018-09-17","osj","os","91","1","0","0"
"clc","-","2","easy","b2281974a","420909076982","1967","1991-01-16","Undefined","-","How a shirt grew in the field :","how a shirt grew in the field","easy","","2019-03-07","2019-03-07","1lj","1l","2","1","0","0"
"clc","-","2","xx(1331915.1)","b2284120a","420909079128","1967","1991-05-08","Undefined","-","God loves you; our family's favorite stories and prayers,","god loves you our familys favorite stories and prayers","xx(1331915.1)","","2019-04-10","2019-04-10","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2403878a","420909198886","2004","2004-08-31","Book","a","Belle of the ball","belle of the ball","easy","","2019-04-15","2019-04-15","smj","sm","2","1","0","0"
"clc","a","0","fiction","b1870017a","420908665025","2000","2000-12-26","Book","a","The hidden","hidden","fiction","","2019-04-01","2019-04-01","1lj","1l","0","1","0","0"
"clc","a","2","069","b2384027a","420909179035","1983","1992-03-22","Book","a","Careers in an art museum","careers in an art museum","069","","2019-03-29","2019-03-29","1lj","1l","2","1","0","0"
"clc","a","2","fiction","b1996884a","420908791892","2000","2001-04-13","Book","a","The grump","grump","fiction","","2019-04-11","2019-04-11","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2757368a","420909552376","2003","2006-02-20","Book","a","Five silly monkeys","five silly monkeys","easy","","2019-05-14","2019-05-14","anj,avj,bhj,coj,cvj,grj,haj,1lj,mwj,nsj,osj,plj,smj,whj","an,av,bh,co,cv,gr,ha,1l,mw,ns,os,pl,sm,wh","2","1","0","0"
"clc","a","2","easy","b1777074a","420908572082","1995","1999-09-10","Book","a","All my little ducklings","all my little ducklings","easy","","2019-02-25","2019-02-25","1lj,osj","1l,os","2","1","0","0"
"clc","a","2","easy","b2283669a","420909078677","1962","1992-05-29","Book","a","The dragon in the clock box","dragon in the clock box","easy","","2018-12-11","2018-12-11","osj","os","2","1","0","0"
"clc","a","2","599.4 s468","b1362502a","420908157510","1991","1992-03-09","Book","a","A first look at bats","first look at bats","599.4 s468","","2018-10-17","2018-10-17","1lj","1l","2","1","0","0"
"clc","a","2","easy","b1776216a","420908571224","1999","1999-05-06","Book","a","The rusty, trusty tractor","rusty trusty tractor","easy","","2019-06-26","2019-06-26","1lj","1l","2","1","0","0"
"clc","i","71","cd-spoken fiction keene","b2759447a","420909554455","2010","2010-01-20","Book on CD","i","Case of the sneaky snowman [sound recording]","case of the sneaky snowman sound recording","cd-spoken fiction keene","","2019-06-24","2019-06-24","osj","os","71","1","0","0"
"clc","a","2","621.85 qs126","b2532112a","420909327120","2005","2006-06-13","Book","a","Machines inside machines : using pulleys and gears","machines inside machines using pulleys and gears","621.85 qs126","","2018-03-31","2018-03-31","1lj,smj","1l,sm","2","1","0","0"
"clc","a","2","easy","b2051853a","420908846861","1971","1992-06-03","Book","a","Just think,","just think","easy","","2019-06-28","2019-06-28","1lj","1l","2","1","0","0"
"clc","a","2","599.768 m128","b2524077a","420909319085","1969","1992-06-24","Book","a","Blaze; the story of a striped skunk.","blaze the story of a striped skunk","599.768 m128","","2019-04-03","2019-04-03","1lj","1l","2","1","0","0"
"clc","a","2","easy","b2706014a","420909501022","2011","2011-03-23","Book","a","Ice","ice","easy","","2019-06-27","2019-06-27","mdj,1cj,osj,smj","md,1c,os,sm","2","1","0","0"
"clc","a","2","easy","b1775929a","420908570937","2001","2002-08-01","Book","a","I spy in the jungle","i spy in the jungle","easy","","2019-02-12","2019-02-12","osj","os","2","1","0","0"
"clc","-","2","xx(1381342.1)","b2266665a","420909061673","1867","1996-02-13","Undefined","-","Ida's new shoes","idas new shoes","xx(1381342.1)","","2018-10-06","2018-10-06","1lj","1l","2","1","0","0"
"clc","a","2","636.7","b2511846a","420909306854","1976","1992-03-22","Book","a","Dog care and training for boys and girls","dog care and training for boys and girls","636.7","","2019-06-03","2019-06-03","1lj","1l","2","1","0","0"
"clc","a","2","741.5973 w231 2004","b2580969a","420909375977","2004","2006-08-15","Book","a","Walt Disney's Mickey Mouse adventures.","walt disneys mickey mouse adventures","741.5973 w231 2004","v.03","2018-12-11","2018-12-11","chj,hpj,maj,1lj,moj,nrj","ch,hp,ma,1l,mo,nr","2","1","0","0"
"clc","i","78","cd-spoken 811.54 s587 w 1984","b1271141a","420908066149","1992","1993-07-19","Book on CD","i","Where the sidewalk ends [sound recording]","where the sidewalk ends sound recording","cd-spoken 811.54 s587 w 1984","","2019-02-23","2019-02-23","chj,lvj,1cj,1lj,shj","ch,lv,1c,1l,sh","78","1","0","0"
"clc","a","2","easy","b2742104a","420909537112","2006","2006-02-06","Book","a","The Berenstain Bears and too much car trip","berenstain bears and too much car trip","easy","","2019-06-29","2019-06-29","1lj,nwj,osj","1l,nw,os","2","1","0","0"
"clc","a","2","easy","b2778925a","420909573933","2007","2011-12-15","Book","a","Puff the magic dragon : pop-up book","puff the magic dragon pop up book","easy","","2019-06-29","2019-06-29","baj,epj,nsj,nwj,osj","ba,ep,ns,nw,os","2","1","0","0"
"clc","a","2","796.1","b2261004a","420909056012","1980","1992-03-22","Book","a","Kites","kites","796.1","","2019-03-05","2019-03-05","osj","os","2","1","0","0"
"gen","a","0","977.178 o93","b1124256a","420907919264","1976","1992-03-22","Book","a","Our heritage : Colerain Township","our heritage colerain township","977.178 o93","","2018-08-20","2018-09-24","3ga,3ea","3g,3e","0","2","0","0"
"gen","a","10","324.977177 ql434","b1580455a","420908375463","1996","1996-12-13","Book","a","Know Hamilton County.","know hamilton county","324.977177 ql434","","2019-05-28","2019-05-28","ana,baa,3ea,pra","an,ba,3e,pr","10","1","0","0"
"gen","a","0","977.10099 b932 , 2003","b2380935a","420909175943","2003","2004-08-17","Book","a","Builders of Ohio : a biographical history","builders of ohio a biographical history","977.10099 b932 , 2003","","2019-05-05","2019-05-05","3ga,3ea","3g,3e","0","1","0","0"
"gen","a","10","929.2 s252 j","b2042021a","420908837029","1968","1992-03-22","Book","a","The Sassoons.","sassoons","929.2 s252 j","","2018-12-16","2018-12-16","3ea","3e","10","1","0","0"
"gen","a","0","917.690443 s914","b1434543a","420908229551","1992","1997-08-26","Book","a","Kentucky : off the beaten path.","kentucky off the beaten path","917.690443 s914","2007","2019-03-19","2019-03-19","ana,mda,3ga","an,md,3g","0","1","0","0"
"gen","a","10","355.825119 m277zt 2017","b3389525a","420910184533","2017","2018-11-19","Book","a","Polonium in the Playhouse : the Manhattan Project's secret chemistry work in Dayton, Ohio","polonium in the playhouse the manhattan projects secret chemistry work in dayton ohio","355.825119 m277zt 2017","","2019-06-11","2019-06-11","3ga,3ea","3g,3e","10","1","0","0"
"gen","a","10","929.60321 d554","b2028156a","420908823164","1987","1992-03-22","Book","a","A Dictionary of heraldry","dictionary of heraldry","929.60321 d554","","2018-10-08","2018-10-08","3ga,sba","3g,sb","10","1","0","0"
"gen","a","46","977.178 s769 zl 1985","b3283241a","420910078249","1985","2017-06-05","Book","a","Spring Grove Cemetery : a self-guided walking tour","spring grove cemetery a self guided walking tour","977.178 s769 zl 1985","","2019-04-06","2019-04-06","3ca,3ea","3c,3e","46","1","0","0"
"gen","a","10","975.791 qf848 2006","b3386467a","420910181475","2006","2018-10-26","Book","a","James Island : stories from slave descendants","james island stories from slave descendants","975.791 qf848 2006","","2018-10-31","2018-10-31","3ga","3g","10","1","0","0"
"gen","a","46","796.35764 c5741zg","b1732156a","420908527164","1998","1998-09-30","Book","a","The Red Stockings of Cincinnati : base ball's first all-professional team and its historic 1869 and 1870 seasons","red stockings of cincinnati base balls first all professional team and its historic 1869 and 1870 seasons","796.35764 c5741zg","","2019-04-15","2019-04-15","3ca,3ga,3ea","3c,3g,3e","46","1","0","0"
"gen","a","10","r322.42 d261 zd","b1572233a","420908367241","1988","1998-03-18","Book","a","Angela Davis : an autobiography.","angela davis an autobiography","r322.42 d261 zd","","2019-05-09","2019-05-09","3ga","3g","10","1","0","0"
"gen","a","46","623.88092 qg619 2019","b3458115a","420910253123","2019","2019-06-11","Book","a","Life between the levees : America's riverboat pilots","life between the levees americas riverboat pilots","623.88092 qg619 2019","","2019-06-12","2019-06-12","3ca","3c","46","1","0","0"
"gen","a","0","975.700496073 k78 , 1985","b1051262a","420907846270","1985","1992-03-22","Book","a","Black slaveowners : free black slave masters in South Carolina, 1790-1860","black slaveowners free black slave masters in south carolina 1790 1860","975.700496073 k78 , 1985","","2019-04-29","2019-04-29","3ga","3g","0","1","0","0"
"gen","a","0","929.2 p35 h","b2078858a","420908873866","1968","1992-03-22","Book","a","The Peabody influence; how a great New England family helped to build America,","peabody influence how a great new england family helped to build america","929.2 p35 h","","2019-04-28","2019-04-28","3ea","3e","0","1","0","0"
"gen","a","10","929.377177 qh536 h 2018","b3335290a","420910130298","2018","2018-02-13","Book","a","Hamilton County, Ohio, Roman Catholic baptism records, early-1849","hamilton county ohio roman catholic baptism records early 1849","929.377177 qh536 h 2018","","2019-05-14","2019-05-14","ana,gea,maa,3ga,3ea,nra","an,ge,ma,3g,3e,nr","10","0","0","0"
"irf","a","0","618.9202 h941","b2497944a","420909292952","2007","2007-08-31","Book","a","The moms on call guide to basic baby care : the first 6 months","moms on call guide to basic baby care the first 6 months","618.9202 h941","","2019-04-25","2019-06-15","3ra","3r","0","6","0","0"
"irf","a","0","615.852 a258 , 2000","b1874818a","420908669826","1999","2000-05-24","Book","a","Sacred woman : a guide to healing the feminine body, mind, and spirit","sacred woman a guide to healing the feminine body mind and spirit","615.852 a258 , 2000","","2019-04-30","2019-06-20","3ra,nsa","3r,ns","0","5","0","0"
"irf","a","0","813.010892 g5251","b2681454a","420909476462","2005","2005-10-10","Book","a","Girls from da hood 2","girls from da hood 2","813.010892 g5251","","2015-03-09","2017-09-22","gra,pra","gr,pr","0","4","0","0"
"irf","a","0","615.851 m643","b2552933a","420909347941","2006","2006-06-28","Book","a","Reiki : a comprehensive guide","reiki a comprehensive guide","615.851 m643","","2019-04-16","2019-05-21","lva,3ra,mma,sma","lv,3r,mm,sm","0","3","0","0"
"irf","a","0","371.042 m398v4 2017","b3336525a","420910131533","2017","2018-03-13","Book","a","Ourselves","ourselves","371.042 m398v4 2017","","2018-12-17","2019-03-25","2ra","2r","0","3","0","0"
"irf","a","0","363.7296 qs492 2017","b3355097a","420910150105","2017","2018-06-15","Book","a","ServSafe coursebook.","servsafe coursebook","363.7296 qs492 2017","","2019-03-29","2019-05-16","baa,2ra","ba,2r","0","3","0","0"
"irf","a","0","975.791503092 v576 zr","b1822891a","420908617899","1999","1999-09-23","Book","a","Denmark Vesey","denmark vesey","975.791503092 v576 zr","","2018-11-11","2019-01-19","3ha","3h","0","3","0","0"
"irf","a","0","305.896 m883 2003","b2507307a","420909302315","2003","2008-11-05","Book","a","Breaking the curse of Willie Lynch : the science of slave psychology","breaking the curse of willie lynch the science of slave psychology","305.896 m883 2003","","2019-03-14","2019-06-26","dpa,2ra","dp,2r","0","3","0","0"
"irf","c","161","m3.066 qb561 b","b1048753a","420907843761","1980","2001-05-18","Music Score","c","The best of rock & roll : the complete original sheet music editions.","best of rock and roll the complete original sheet music editions","m3.066 qb561 b","v.01","2019-01-09","2019-03-16","3aa,3ra","3a,3r","161","2","0","0"
"irf","a","0","346.73077 a512 2009","b2679607a","420909474615","2009","2009-10-02","Book","a","The American Bar Association Guide to credit and bankruptcy : everything you need to know about credit repair, staying or getting out of debt and personal bankruptcy","american bar association guide to credit and bankruptcy everything you need to know about credit repair staying or getting out of debt and personal bankruptcy","346.73077 a512 2009","","2018-10-16","2018-12-08","2ra,rea","2r,re","0","2","0","0"
"irf","a","0","581.4 qc775 2010","b2609369a","420909404377","2010","2010-10-27","Book","a","The book of leaves : a leaf-by-leaf guide to six hundred of the world's great trees","book of leaves a leaf by leaf guide to six hundred of the worlds great trees","581.4 qc775 2010","","2019-03-06","2019-05-24","2ra","2r","0","2","0","0"
"irf","a","0","629.453097 k89","b1786179a","420908581187","2000","2000-03-27","Book","a","Failure is not an option : mission control from Mercury to Apollo 13 and beyond","failure is not an option mission control from mercury to apollo 13 and beyond","629.453097 k89","","2019-03-04","2019-05-28","3ra","3r","0","2","0","0"
"irf","a","0","005.7585 p726","b2629847a","420909424855","2009","2009-06-18","Book","a","Sams teach yourself SQL in one hour a day","sams teach yourself sql in one hour a day","005.7585 p726","","2019-02-14","2019-03-18","gra,2ra","gr,2r","0","2","0","0"
"irf","a","0","796.352019 r843 g","b1650386a","420908445394","1995","1997-04-16","Book","a","Golf is not a game of perfect","golf is not a game of perfect","796.352019 r843 g","","2019-05-02","2019-06-18","2ea,sma","2e,sm","0","2","0","0"
"irf","a","0","615.321 d637","b1762763a","420908557771","2000","2000-03-03","Book","a","The doctors book of herbal home remedies : cure yourself with nature's most powerful healing agents : advice from 200 experts on more than 140 conditions","doctors book of herbal home remedies cure yourself with natures most powerful healing agents advice from 200 experts on more than 140 conditions","615.321 d637","","2019-04-09","2019-04-19","bha,wwa","bh,ww","0","2","0","0"
"irf","a","0","361.3076 qa8613 2017","b3253657a","420910048665","2017","2017-04-17","Book","a","ASWB bachelors exam","aswb bachelors exam","361.3076 qa8613 2017","","2018-09-21","2019-04-20","2ra","2r","0","2","0","0"
"irf","a","0","261.835 s4351 2015","b3293666a","420910088674","2015","2017-07-19","Book","a","Help! I'm holy, but I'm horny : the perfect book for your best friend's cousin that has a lot of questions about sex, love and relationships","help im holy but im horny the perfect book for your best friends cousin that has a lot of questions about sex love and relationships","261.835 s4351 2015","","2019-03-26","2019-05-13","2ra","2r","0","2","0","0"
"irf","a","0","248.8431 m184 2013","b2888843a","420909683851","2013","2013-10-23","Book","a","Desperate : hope for the mom who needs to breathe","desperate hope for the mom who needs to breathe","248.8431 m184 2013","","2019-04-20","2019-06-27","foa,haa,2ra","fo,ha,2r","0","2","0","0"
"irf","a","0","299.94 qr688 2015","b3094720a","420909889728","2015","2015-10-15","Book","a","Wicca, another year and a day : 366 days of magical practice in the craft of the wise","wicca another year and a day 366 days of magical practice in the craft of the wise","299.94 qr688 2015","","2018-11-07","2019-01-04","dpa,2ra,nsa,pra,sha","dp,2r,ns,pr,sh","0","2","0","0"
"irf","a","0","373.1262 qs562 2010","b2787385a","420909582393","2010","2010-04-21","Book","a","The GED for dummies","ged for dummies","373.1262 qs562 2010","","2019-05-04","2019-05-17","ana,ava,bha,dta,mta,pra","an,av,bh,dt,mt,pr","0","2","0","0"
"irf","a","0","150.76 qb2772","b2945559a","420909740567","2007","2018-04-30","Book","a","Barron's AP psychology.","barrons ap psychology","150.76 qb2772","7th_ed. 2016","2019-04-25","2019-06-06","baa,2ra,sma","ba,2r,sm","0","2","0","0"
"irf","a","0","738.1 a873 2017","b3282832a","420910077840","2017","2017-06-13","Book","a","Making pottery you can use","making pottery you can use","738.1 a873 2017","","2019-04-14","2019-06-10","3ra","3r","0","2","0","0"
"irf","a","0","709.04 qs263zh 2018","b3387392a","420910182400","2018","2018-10-30","Book","a","Augusta Savage : Renaissance woman","augusta savage renaissance woman","709.04 qs263zh 2018","","2019-01-28","2019-02-19","2ra","2r","0","2","0","0"
"irf","a","0","158.1 h647","b1978278a","420908773286","2002","2003-06-23","Book","a","Think and grow rich","think and grow rich","158.1 h647","","2019-03-26","2019-04-23","2ra","2r","0","2","0","0"
"irf","a","","915.980439f653","b1778012a","420908573020","1999","2000-09-11","Book","a","Fodor's Indonesia.","fodors indonesia","915.980439f653","","2019-04-29","2019-05-21","gea,haa,maa,2ra,sma","ge,ha,ma,2r,sm","","2","0","0"
"irf","a","0","332.024 r796 2013","b2974839a","420909769847","2013","2014-07-01","Book","a","Soldier of finance : take charge of your money and invest in your future","soldier of finance take charge of your money and invest in your future","332.024 r796 2013","","2018-07-27","2018-08-27","2ra","2r","0","2","0","0"
"irf","a","0","616.89 p367","b2732955a","420909527963","1998","2012-05-23","Book","a","People of the lie : the hope for healing human evil","people of the lie the hope for healing human evil","616.89 p367","","2019-04-16","2019-06-02","3ra,wwa","3r,ww","0","2","0","0"
"irf","a","10","428.6 qg434h 2009","b3399027a","420910194035","2009","2018-12-12","Book","a","Life goes on. High beginning : day-to-day stories and language activities","life goes on high beginning day to day stories and language activities","428.6 qg434h 2009","","2018-12-13","2019-04-04","1hj","1h","10","2","0","0"
"irf","a","0","746.46 qd631","b1608519a","420908403527","1995","1995-11-01","Book","a","Easy paper-pieced keepsake quilts : 72 quilt blocks for foundation piecing","easy paper pieced keepsake quilts 72 quilt blocks for foundation piecing","746.46 qd631","","2019-03-19","2019-03-31","3aa","3a","0","2","0","0"
"irf","a","0","220.1 s253 2014","b3111342a","420909906350","2014","2015-11-19","Book","a","How the Bible became holy","how the bible became holy","220.1 s253 2014","","2019-03-15","2019-03-28","2ra","2r","0","2","0","0"
"irf","a","0","741.944 qi55 l","b1158813a","420907953821","1964","1989-04-26","Book","a","The drawings of Ingres.","drawings of ingres","741.944 qi55 l","","2018-10-22","2019-03-08","3aa","3a","0","2","0","0"
"irf","a","0","005.133 m147 c 2017","b3243906a","420910038914","2017","2017-03-13","Book","a","C++ programming in easy steps","c++ programming in easy steps","005.133 m147 c 2017","","2019-05-11","2019-06-26","2ra","2r","0","2","0","0"
"irf","a","0","373.126 qb277","b2756526a","420909551534","2007","2010-04-16","Book","a","Barron's GED.","barrons ged","373.126 qb277","","2019-03-04","2019-03-09","cva,dta,mta,osa","cv,dt,mt,os","0","2","0","0"
"irf","a","0","202.3 s623 1992","b3023676a","420909818684","1992","2015-01-28","Book","a","The stairway to heaven","stairway to heaven","202.3 s623 1992","","2019-04-27","2019-06-21","2ra,2ea","2r,2e","0","2","0","0"
"irf","a","0","371.3 k78 ne","b1607147a","420908402155","1989","1995-10-19","Book","a","Encountering the self : transformation & destiny in the ninth year","encountering the self transformation and destiny in the ninth year","371.3 k78 ne","","2019-04-01","2019-04-25","2ea","2e","0","2","0","0"
"irf","a","0","332.63222 qb592","b2626441a","420909421449","2011","2012-02-07","Book","a","Profitable candlestick trading : pinpointing market opportunities to maximize profits","profitable candlestick trading pinpointing market opportunities to maximize profits","332.63222 qb592","","2019-02-28","2019-04-04","2ra","2r","0","2","0","0"
"irf","a","0","378.166 qb277","b2684647a","420909479655","2009","2011-01-03","Book","a","Barron's ACT.","barrons act","378.166 qb277","2010","2019-06-12","2019-06-12","ana,ava,gra,nra,sma","an,av,gr,nr,sm","0","1","0","0"
"irf","a","10","780.973 s857","b1710996a","420908506004","1992","1996-01-04","Book","a","The William Grant Still reader : essays on American music","william grant still reader essays on american music","780.973 s857","","2019-07-04","2019-07-04","3aa,3ra","3a,3r","10","1","0","0"
"irf","a","0","973.92092 m883 zm, 1997","b1633481a","420908428489","1997","1997-09-02","Book","a","The names of things : a passage in the Egyptian desert","names of things a passage in the egyptian desert","973.92092 m883 zm, 1997","","2019-02-17","2019-02-17","3ha","3h","0","1","0","0"
"irf","a","0","305.896073 b849","b1370863a","420908165871","1994","1994-08-15","Book","a","Walk tall : affirmations for people of color","walk tall affirmations for people of color","305.896073 b849","","2019-06-10","2019-06-10","2ra","2r","0","1","0","0"
"irf","a","0","791.4301 qg433","b1675371a","420908470379","1974","1992-03-22","Book","a","Godard and others: essays on film form","godard and others essays on film form","791.4301 qg433","","2019-05-15","2019-05-15","3aa","3a","0","1","0","0"
"irf","a","10","338.04082 l629","b1990656a","420908785664","2000","2001-03-27","Book","a","Free money and help for women entrepreneurs","free money and help for women entrepreneurs","338.04082 l629","","2016-09-22","2016-09-22","2ga","2g","10","1","0","0"
"irf","a","0","640 r813 2010","b3110101a","420909905109","2010","2015-11-18","Book","a","Off the grid : inside the movement for more space, less government, and true independence in modern America","off the grid inside the movement for more space less government and true independence in modern america","640 r813 2010","","2019-04-09","2019-04-09","3ra","3r","0","1","0","0"
"irf","a","0","940.545 s294","b1866613a","420908661621","1953","1992-03-22","Book","a","U-boat 977.","u boat 977","940.545 s294","","2018-08-29","2018-08-29","3ha","3h","0","1","0","0"
"irf","a","0","364.15232092 b855 zr 2010","b2592559a","420909387567","2010","2010-09-28","Book","a","Bone crusher","bone crusher","364.15232092 b855 zr 2010","","2018-08-06","2018-08-06","2ra","2r","0","1","0","0"
"irf","a","0","248.4 m612 b 2002","b2578942a","420909373950","2002","2010-09-03","Book","a","Battlefield of the mind : winning the battle in your mind","battlefield of the mind winning the battle in your mind","248.4 m612 b 2002","","2019-02-26","2019-02-26","sha","sh","0","1","0","0"
"irf","a","0","746.46041 qm154","b1068421a","420907863429","1989","1992-03-22","Book","a","Light & shadows : optical illusion in quilts","light and shadows optical illusion in quilts","746.46041 qm154","","2019-04-28","2019-04-28","3aa","3a","0","1","0","0"
"irf","a","0","364.152308 d261 , 2001","b1761015a","420908556023","2001","2002-01-02","Book","a","Women who kill : profiles of female serial killers","women who kill profiles of female serial killers","364.152308 d261 , 2001","","2018-10-03","2018-10-03","2ra,2ea","2r,2e","0","1","0","0"
"irf","c","157","m3.442 fb687 co 2014","b3005702a","420909800710","2014","2014-11-06","Music Score","c","Concert songs : [for medium/low voice and piano]","concert songs for medium low voice and piano","m3.442 fb687 co 2014","v.01","2018-12-07","2018-12-07","3ra","3r","157","1","0","0"
"irf","a","0","650.14024 82.3","b1039664a","420907834672","1982","1992-03-22","Book","a","Mind your own business : a guide for successful women","mind your own business a guide for successful women","650.14024 82.3","","2019-06-18","2019-06-18","2ga","2g","0","1","0","0"
"irf","a","10","709.73074 qs243","b1186631a","420907981639","1987","1992-03-22","Book","a","Modern American realism : the Sara Roby Foundation Collection","modern american realism the sara roby foundation collection","709.73074 qs243","","2019-06-29","2019-06-29","3aa,3ra","3a,3r","10","1","0","0"
"irf","a","0","791.43028 c644 zb","b2612630a","420909407638","2010","2010-11-24","Book","a","George Clooney : a biography","george clooney a biography","791.43028 c644 zb","","2019-06-05","2019-06-05","3ra","3r","0","1","0","0"
"irf","a","0","917.940454 k18","b1780382a","420908575390","999","2010-03-23","Book","a","Karen Brown's California.","karen browns california","917.940454 k18","2002","2019-03-31","2019-03-31","ana,coa,cra,3ha","an,co,cr,3h","0","1","0","0"
"irf","a","10","299.935 l434","b1009377a","420907804385","1941","1992-03-22","Book","a","The astral plane","astral plane","299.935 l434","","2019-05-28","2019-05-28","2ea","2e","10","1","0","0"
"irf","a","0","641.5635 c773 c","b2581691a","420909376699","2009","2009-03-31","Book","a","Cooking light fresh food fast.","cooking light fresh food fast","641.5635 c773 c","","2019-06-19","2019-06-19","lva,mda","lv,md","0","1","0","0"
"irf","a","0","759.983 qm435 zm4 2015","b3281972a","420910076980","2015","2017-05-18","Book","a","Matta in the 1950s and 1960s.","matta in the 1950s and 1960s","759.983 qm435 zm4 2015","","2019-05-22","2019-05-22","3ra","3r","0","1","0","0"
"irf","a","0","234.25 s919 2015","b3122876a","420909917884","2015","2015-12-22","Book","a","The case for hope : [looking ahead with confidence and courage]","case for hope looking ahead with confidence and courage","234.25 s919 2015","","2019-05-21","2019-05-21","2ra","2r","0","1","0","0"
"irf","a","0","516.36 b213","b1315108a","420908110116","1990","1992-01-03","Book","a","Beyond the third dimension : geometry, computer graphics, and higher dimensions","beyond the third dimension geometry computer graphics and higher dimensions","516.36 b213","","2019-06-27","2019-06-27","2sa","2s","0","1","0","0"
"irf","a","0","640 b627","b2595065a","420909390073","2008","2009-04-15","Book","a","Living off the grid : a simple guide to creating and maintaining a self-reliant supply of energy, water, shelter, and more","living off the grid a simple guide to creating and maintaining a self reliant supply of energy water shelter and more","640 b627","","2019-02-27","2019-02-27","gea,3ra","ge,3r","0","1","0","0"
"irf","a","0","495.683421 qb517 je3","b2654684a","420909449692","2006","2008-07-02","Book","a","Japanese in MangaLand 3 : intermediate level","japanese in mangaland 3 intermediate level","495.683421 qb517 je3","","2019-04-22","2019-04-22","ana","an","0","1","0","0"
"irf","a","0","940.5318092 s1931zsse","b1811806a","420908606814","2002","2002-07-30","Book","a","Rescuing the children : a Holocaust memoir","rescuing the children a holocaust memoir","940.5318092 s1931zsse","","2019-01-07","2019-01-07","3ra","3r","0","1","0","0"
"irf","a","0","616.8582 d632","b2782525a","420909577533","2007","2007-08-07","Book","a","Understanding personality disorders : an introduction","understanding personality disorders an introduction","616.8582 d632","","2019-07-05","2019-07-05","3ra","3r","0","1","0","0"
"irf","a","0","917.304927 k73 , 1980","b2324563a","420909119571","1980","1992-03-22","Book","a","Know your America : a guide to every state in the Union","know your america a guide to every state in the union","917.304927 k73 , 1980","v.02","2019-04-01","2019-04-01","3ha","3h","0","1","0","0"
"irf","a","0","615.852 s617","b1900337a","420908695345","2001","2001-01-26","Book","a","Meditation as medicine : activate the power of your natural healing force","meditation as medicine activate the power of your natural healing force","615.852 s617","","2019-01-04","2019-01-04","2sa","2s","0","1","0","0"
"irf","a","0","975.983016 k26 zk","b1766689a","420908561697","2000","2000-09-06","Book","a","Cracker times and pioneer lives : the Florida reminiscences of George Gillett Keen and Sarah Pamela Williams","cracker times and pioneer lives the florida reminiscences of george gillett keen and sarah pamela williams","975.983016 k26 zk","","2019-06-28","2019-06-28","3ha","3h","0","1","0","0"
"irf","a","0","610.73076 qr454","b2578890a","420909373898","2000","2011-07-22","Book","a","Review guide for RN pre-entrance exam.","review guide for rn pre entrance exam","610.73076 qr454","2009","2019-03-15","2019-03-15","lva,nra","lv,nr","0","1","0","0"
"irf","a","0","901 i13 m","b1071763a","420907866771","1958","1992-03-22","Book","a","The Muqaddimah; an introduction to history,","muqaddimah an introduction to history","901 i13 m","v.03","2019-02-02","2019-02-02","3ha","3h","0","1","0","0"
"irf","a","0","598 qn277","b2613936a","420909408944","2009","2009-04-28","Book","a","National Geographic complete birds of the world","national geographic complete birds of the world","598 qn277","","2019-06-23","2019-06-23","2ra","2r","0","1","0","0"
"irf","a","0","613 a725 2014","b3219907a","420910014915","2014","2016-10-14","Book","a","Wellness coaching for lasting lifestyle change","wellness coaching for lasting lifestyle change","613 a725 2014","","2019-04-26","2019-04-26","3ra","3r","0","1","0","0"
"irf","a","0","513.07 q80","b1025113a","420907820121","1980","1992-03-22","Book","a","Basic skills with math : a general review","basic skills with math a general review","513.07 q80","","2018-10-16","2018-10-16","2sa","2s","0","1","0","0"
"irf","a","0","809.3872 c338 2018","b3317086a","420910112094","2018","2018-01-15","Book","a","The art of mystery : the search for questions","art of mystery the search for questions","809.3872 c338 2018","","2019-02-14","2019-02-14","3ra","3r","0","1","0","0"
"irf","a","0","613.265 qc678","b2680753a","420909475761","2007","2009-09-22","Book","a","Living on live food","living on live food","613.265 qc678","","2019-06-05","2019-06-05","3ra","3r","0","1","0","0"
"irf","a","0","615.532 s688","b1806573a","420908601581","2001","2002-02-01","Book","a","The complete idiot's guide to homeopathy","complete idiots guide to homeopathy","615.532 s688","","2019-03-27","2019-03-27","3ra","3r","0","1","0","0"
"irf","a","0","131 p378","b2571317a","420909366325","2009","2009-02-16","Book","a","Frequency : the power of personal vibration","frequency the power of personal vibration","131 p378","","2019-02-17","2019-02-17","baa,coa,2ra,nra","ba,co,2r,nr","0","1","0","0"
"irf","a","0","759.9492 qb742 zc","b1563607a","420908358615","1995","1997-07-30","Book","a","The life and works of Hieronymus Bosch","life and works of hieronymus bosch","759.9492 qb742 zc","","2019-02-23","2019-02-23","3aa","3a","0","1","0","0"
"irf","a","10","615.05 qp97","b1119697a","420907914705","1974","2017-01-06","Book","a","Physicians' desk reference.","physicians desk reference","615.05 qp97","70th_ed. 2016","2017-09-12","2017-09-12","ana,ava,baa,bha,cha,cla,coa,cra,cva,epa,foa,gea,gra,haa,lva,maa,2ra,2sa,mna,moa,mwa,nra,nsa,nwa,oaa,pla,pra,rea,sha,sba,sma,wha,wwa,wya","an,av,ba,bh,ch,cl,co,cr,cv,ep,fo,ge,gr,ha,lv,ma,2r,2s,mn,mo,mw,nr,ns,nw,oa,pl,pr,re,sh,sb,sm,wh,ww,wy","10","1","0","0"
"irf","a","0","780.68 qs855","b2623768a","420909418776","2008","2009-05-14","Book","a","Succeeding in music : business chops for performers & songwriters","succeeding in music business chops for performers and songwriters","780.68 qs855","","2019-06-16","2019-06-16","2ra","2r","0","1","0","0"
"irf","a","10","294.592404 b575 f 2014","b3020198a","420909815206","2014","2015-01-28","Book","a","The Bhagavad-Gita : a new translation","bhagavad gita a new translation","294.592404 b575 f 2014","","2019-06-18","2019-06-18","foa,2ra","fo,2r","10","1","0","0"
"irf","a","0","616.834 b736","b2747479a","420909542487","2007","2007-05-11","Book","a","Healing multiple sclerosis : diet, detox & nutritional makeover for total recovery","healing multiple sclerosis diet detox and nutritional makeover for total recovery","616.834 b736","","2019-05-23","2019-05-23","3ra,pra","3r,pr","0","1","0","0"
"irf","a","0","495.611 qb517","b2644586a","420909439594","2007","2009-10-07","Book","a","Kanji in Mangaland","kanji in mangaland","495.611 qb517","v.01","2019-03-05","2019-03-05","2ra","2r","0","1","0","0"
"irf","a","0","811.54 l478u 2018","b3321865a","420910116873","2018","2018-02-20","Book","a","The undressing : poems","undressing poems","811.54 l478u 2018","","2019-01-29","2019-01-29","3ra","3r","0","1","0","0"
"irf","a","0","920.008664 g285","b2619612a","420909414620","2009","2009-06-04","Book","a","Gay American autobiography : writings from Whitman to Sedaris","gay american autobiography writings from whitman to sedaris","920.008664 g285","","2019-03-29","2019-03-29","3ra","3r","0","1","0","0"
"irf","a","0","613.713 qw121","b2565248a","420909360256","2010","2011-02-28","Book","a","Convict conditioning : how to bust free of all weakness using the lost secrets of supreme survival strength","convict conditioning how to bust free of all weakness using the lost secrets of supreme survival strength","613.713 qw121","","2019-03-01","2019-03-01","3ra,sma","3r,sm","0","1","0","0"
"irf","a","0","280.03 k92 2017","b3291605a","420910086613","2017","2017-07-20","Book","a","Catholics and Protestants : what can we learn from each other?","catholics and protestants what can we learn from each other","280.03 k92 2017","","2018-09-24","2018-09-24","2ra","2r","0","1","0","0"
"irf","a","0","364.152309 f533 zf","b2511856a","420909306864","2004","2005-01-24","Book","a","If I knew then--","if i knew then","364.152309 f533 zf","","2019-05-17","2019-05-17","2ra","2r","0","1","0","0"
"irf","a","0","227.81077 s888","b1340744a","420908135752","1991","1992-12-29","Book","a","The Gospel & the end of time : the message of 1 & 2 Thessalonians : includes study guide for groups or individuals","gospel and the end of time the message of 1 and 2 thessalonians includes study guide for groups or individuals","227.81077 s888","","2019-07-03","2019-07-03","2ea","2e","0","1","0","0"
"irf","a","0","917.940454 k18","b1780382a","420908575390","999","2010-03-23","Book","a","Karen Brown's California.","karen browns california","917.940454 k18","2010","2019-02-16","2019-02-16","ana,coa,cra,3ha","an,co,cr,3h","0","1","0","0"
"irf","a","0","133.54 c885 2012","b2821082a","420909616090","2012","2013-01-14","Book","a","Astrology on the cusp : birthdays on the edge of two signs","astrology on the cusp birthdays on the edge of two signs","133.54 c885 2012","","2019-03-23","2019-03-23","2ra,nsa","2r,ns","0","1","0","0"
"irf","a","0","745.61 p397","b1291839a","420908086847","1993","1994-05-03","Book","a","Pen & brush lettering : a book of alphabets","pen and brush lettering a book of alphabets","745.61 p397","","2019-07-01","2019-07-01","3aa","3a","0","1","0","0"
"irf","a","0","372.110092 c669 zc, 1999","b1835146a","420908630154","1999","1999-08-27","Book","a","Educating Esmé : diary of a teacher's first year","educating esmé diary of a teachers first year","372.110092 c669 zc, 1999","","2019-01-15","2019-01-15","2ra","2r","0","1","0","0"
"irf","a","10","697.00294 qm423","b2161068a","420908956076","1994","2011-01-12","Book","a","The Air conditioning, heating and refrigeration news. HVAC/R directory & source guide issue.","air conditioning heating and refrigeration news hvac r directory and source guide issue","697.00294 qm423","2011","2018-07-06","2018-07-06","2ra","2r","10","1","0","0"
"irf","a","0","973.932092 o12 zg","b2565844a","420909360852","2009","2009-02-05","Book","a","A slobbering love affair : the true (and pathetic) story of the torrid romance between Barack Obama and the mainstream media","slobbering love affair the true and pathetic story of the torrid romance between barack obama and the mainstream media","973.932092 o12 zg","","2019-05-19","2019-05-19","3ra","3r","0","1","0","0"
"irf","a","0","305.908086 q1 2015","b3155437a","420909950445","2015","2016-03-16","Book","a","QDA : a queer disability anthology","qda a queer disability anthology","305.908086 q1 2015","","2019-04-12","2019-04-12","2ra","2r","0","1","0","0"
"irf","a","0","671 qw135","b1520583a","420908315591","1996","1996-10-25","Book","a","Fundamentals of metal forming","fundamentals of metal forming","671 qw135","","2019-04-23","2019-04-23","3ra","3r","0","1","0","0"
"irf","a","0","006.686 a239 lzk","b2570037a","420909365045","2006","2006-08-21","Book","a","Adobe Illustrator CS2 : how-tos : 100 essential techniques","adobe illustrator cs2 how tos 100 essential techniques","006.686 a239 lzk","","2018-09-10","2018-09-10","gea","ge","0","1","0","0"
"irf","a","0","821.008 g688","b2054747a","420908849755","1968","1992-03-22","Book","a","A book of peace.","book of peace","821.008 g688","","2019-06-01","2019-06-01","3ra","3r","0","1","0","0"
"irf","a","0","155.332 m118 2018","b3369276a","420910164284","2018","2018-08-17","Book","a","Amateur : a true story about what makes a man","amateur a true story about what makes a man","155.332 m118 2018","","2019-06-03","2019-06-03","2ra","2r","0","1","0","0"
"irf","a","0","133.43 c973 mo","b1768157a","420908563165","2003","2003-02-10","Book","a","Cunningham's encyclopedia of wicca in the kitchen","cunninghams encyclopedia of wicca in the kitchen","133.43 c973 mo","","2019-07-02","2019-07-02","2ea","2e","0","1","0","0"
"irf","a","0","730.92 b772 zb4 2014","b2972927a","420909767935","2014","2014-06-13","Book","a","Louise Bourgeois : alone and together = Luyisi Buerqiaoya : gu shen yu gong chu","louise bourgeois alone and together luyisi buerqiaoya gu shen yu gong chu","730.92 b772 zb4 2014","","2018-10-14","2018-10-14","3ra","3r","0","1","0","0"
"irf","a","0","650.140285 ql759 zp 2015","b3053855a","420909848863","2015","2015-07-07","Book","a","Ultimate guide to LinkedIn for business","ultimate guide to linkedin for business","650.140285 ql759 zp 2015","","2018-12-23","2018-12-23","2ra,3ra","2r,3r","0","1","0","0"
"irf","a","0","917.880433 qm654","b1579870a","420908374878","1996","1996-12-04","Book","a","Roadside guide to the Colorado Mountains : Interstate 25 skylines","roadside guide to the colorado mountains interstate 25 skylines","917.880433 qm654","","2019-06-10","2019-06-10","3ha","3h","0","1","0","0"
"irf","a","0","973.911092 r781 zda","b2724611a","420909519619","2012","2012-05-16","Book","a","Guest of honor : Booker T. Washington, Theodore Roosevelt, and the White House dinner that shocked a nation","guest of honor booker t washington theodore roosevelt and the white house dinner that shocked a nation","973.911092 r781 zda","","2019-06-04","2019-06-04","gha,3ra","gh,3r","0","1","0","0"
"irf","a","0","745.5922 qc338","b1801406a","420908596414","1999","1999-04-26","Book","a","Fabulous fashion doll clothing you can make : no sewing required","fabulous fashion doll clothing you can make no sewing required","745.5922 qc338","","2019-04-22","2019-04-22","3ra","3r","0","1","0","0"
"irf","a","0","615.7883 s897 2001","b2595432a","420909390440","2001","2010-10-07","Book","a","DMT : the spirit molecule : a doctor's revolutionary research into the biology of near-death and mystical experiences","dmt the spirit molecule a doctors revolutionary research into the biology of near death and mystical experiences","615.7883 s897 2001","","2019-05-22","2019-05-22","3ra,2sa","3r,2s","0","1","0","0"
"irf","a","0","641.58 55.4","b1490297a","420908285305","1955","2004-08-09","Book","a","Casserole specialties.","casserole specialties","641.58 55.4","","2018-11-03","2018-11-03","2sa","2s","0","1","0","0"
"irf","a","0","741.5 qm156 1998","b1633878a","420908428886","1998","1998-08-18","Book","a","How to draw and sell-- comic strips-- for newspapers and comic books!","how to draw and sell comic strips for newspapers and comic books","741.5 qm156 1998","","2019-03-09","2019-03-09","3ra","3r","0","1","0","0"
"irf","a","0","332.120684 s257","b1922042a","420908717050","2002","2002-10-25","Book","a","Credit risk measurement : new approaches to value at risk and other paradigms","credit risk measurement new approaches to value at risk and other paradigms","332.120684 s257","","2019-06-08","2019-06-08","2ra","2r","0","1","0","0"
"irf","a","10","372.19 c797","b1414510a","420908209518","1991","1991-09-06","Book","a","What your first grader needs to know : fundamentals of a good first-grade education","what your first grader needs to know fundamentals of a good first grade education","372.19 c797","v.01","2019-05-14","2019-05-14","2ea,osa","2e,os","10","1","0","0"
"irf","a","0","797.124 k29 2015","b3197828a","420909992836","2015","2016-07-11","Book","a","Sunfish sailing : a quick & easy guide","sunfish sailing a quick and easy guide","797.124 k29 2015","","2019-05-02","2019-05-02","3ra","3r","0","1","0","0"
"irf","a","0","299.51444 d392","b1603369a","420908398377","1996","1996-08-16","Book","a","Everyday Tao : living with balance and harmony","everyday tao living with balance and harmony","299.51444 d392","","2019-05-29","2019-05-29","2ra,2ea","2r,2e","0","1","0","0"
"irf","a","0","795.4153 g761","b1109364a","420907904372","1987","1992-03-22","Book","a","Bridge maxims : secrets of better play","bridge maxims secrets of better play","795.4153 g761","","2019-05-06","2019-05-06","3ra","3r","0","1","0","0"
"irf","a","0","320.1 m149 pep 2009","b2723595a","420909518603","2009","2009-11-16","Book","a","The prince","prince","320.1 m149 pep 2009","","2019-06-11","2019-06-11","cla,cra,2ra,mwa,nra","cl,cr,2r,mw,nr","0","1","0","0"
"irf","a","0","745.59221 qh727","b2609375a","420909404383","2010","2010-11-05","Book","a","Barbie : a rare beauty","barbie a rare beauty","745.59221 qh727","","2019-05-08","2019-05-08","3ra","3r","0","1","0","0"
"irf","a","0","608 qp935","b1162492a","420907957500","1985","2016-08-11","Book","a","Patent it yourself.","patent it yourself","608 qp935","18th_ed. 2016","2019-06-02","2019-06-02","gea,2ra,sma","ge,2r,sm","0","1","0","0"
"irf","a","0","694 qk77","b2569314a","420909364322","2004","2005-05-31","Book","a","Carpentry","carpentry","694 qk77","","2019-05-21","2019-05-21","2sa","2s","0","1","0","0"
"irf","a","0","731.76 h638","b2136212a","420908931220","1984","1992-03-22","Book","a","Highgate Cemetery : Victorian valhalla","highgate cemetery victorian valhalla","731.76 h638","","2019-06-07","2019-06-07","3aa","3a","0","1","0","0"
"irf","a","0","133.32424 fm539","b2619820a","420909414828","2011","2011-04-18","Book","a","Reading and understanding the mysteries of Tarot : learn how to discover and explain your destiny by unlocking the fascinating secrets of the cards","reading and understanding the mysteries of tarot learn how to discover and explain your destiny by unlocking the fascinating secrets of the cards","133.32424 fm539","","2018-12-03","2018-12-03","gra,2ra,wya","gr,2r,wy","0","1","0","0"
"irf","a","0","616.8552 b444","b1913707a","420908708715","2002","2002-03-26","Book","a","When the brain can't hear : unraveling the mystery of auditory processing disorder","when the brain cant hear unraveling the mystery of auditory processing disorder","616.8552 b444","","2019-06-17","2019-06-17","3ra,osa","3r,os","0","1","0","0"
"irf","a","0","230 b486 , 1934","b2407482a","420909202490","1934","1989-03-31","Book","a","The bourgeois mind and other essays,","bourgeois mind and other essays","230 b486 , 1934","","2019-02-18","2019-02-18","2ea","2e","0","1","0","0"
"irf","a","0","629.1309 q80 .1","b1037025a","420907832033","1980","1992-03-22","Book","a","Incredible flying machines : an anthology of eccentric aircraft","incredible flying machines an anthology of eccentric aircraft","629.1309 q80 .1","","2019-04-25","2019-04-25","3ra,2sa","3r,2s","0","1","0","0"
"irf","a","0","828.91407 t736 c","b2652517a","420909447525","2008","2008-06-18","Book","a","Cats in May","cats in may","828.91407 t736 c","","2019-04-30","2019-04-30","3ra","3r","0","1","0","0"
"irf","a","0","836.912 r573 xem","b1844124a","420908639132","2001","2002-02-01","Book","a","Letters to a young poet","letters to a young poet","836.912 r573 xem","","2019-04-29","2019-04-29","3ra","3r","0","1","0","0"
"irf","a","10","658.45 82.3","b2304650a","420909099658","1982","1992-03-22","Book","a","Without bias : a guidebook for nondiscriminatory communication","without bias a guidebook for nondiscriminatory communication","658.45 82.3","","2019-02-16","2019-02-16","2ga","2g","10","1","0","0"
"irf","a","0","599.5 w5524 2015","b3149142a","420909944150","2015","2016-02-23","Book","a","Whales, dolphins, & porpoises : a natural history and species guide","whales dolphins and porpoises a natural history and species guide","599.5 w5524 2015","","2019-04-29","2019-04-29","2ra","2r","0","1","0","0"
"irf","a","0","133.43 z72 , 2006","b2628400a","420909423408","2006","2006-11-01","Book","a","The complete idiot's guide to wicca and witchcraft","complete idiots guide to wicca and witchcraft","133.43 z72 , 2006","","2019-07-02","2019-07-02","2ea,rea","2e,re","0","1","0","0"
"irf","a","0","361.6 qp355 zb, 1978","b1852345a","420908647353","1978","2002-07-15","Book","a","The Peace Corps : myths and prospects","peace corps myths and prospects","361.6 qp355 zb, 1978","","2019-02-08","2019-02-08","2ea","2e","0","1","0","0"
"irf","a","0","641.5635 r755","b2573484a","420909368492","2005","2005-03-07","Book","a","The volumetrics eating plan : techniques and recipes for feeling full on fewer calories","volumetrics eating plan techniques and recipes for feeling full on fewer calories","641.5635 r755","","2019-05-10","2019-05-10","3ra,sma","3r,sm","0","1","0","0"
"irf","a","0","358.4282 b622","b1341903a","420908136911","1990","1991-04-08","Book","a","The Mosquito : the wooden wonder","mosquito the wooden wonder","358.4282 b622","","2019-05-08","2019-05-08","2ga","2g","0","1","0","0"
"irf","a","0","618.20092 h287 zh","b2713520a","420909508528","2011","2011-04-06","Book","a","Arms wide open : a midwife's journey","arms wide open a midwifes journey","618.20092 h287 zh","","2019-01-16","2019-01-16","gra,3ra","gr,3r","0","1","0","0"
"irf","a","10","346.771013 g467","b1670100a","420908465108","1994","1995-06-15","Book","a","Kids and the law : a guide to Ohio law on minors : child custody, child support, juvenile justice, school law, driving, drinking, child labor laws, marriage, abortion, adoption","kids and the law a guide to ohio law on minors child custody child support juvenile justice school law driving drinking child labor laws marriage abortion adoption","346.771013 g467","","2019-06-28","2019-06-28","2ga","2g","10","1","0","0"
"irf","a","0","811.54 qc912 e","b1333190a","420908128198","1990","1991-04-15","Book","a","Eternally yours","eternally yours","811.54 qc912 e","","2019-05-26","2019-05-26","3la","3l","0","1","0","0"
"irf","a","0","248.84 w594 , 1997","b1705624a","420908500632","1997","1998-07-17","Book","a","Fresh start : 8 principles for starting over when a relationship doesn't work","fresh start 8 principles for starting over when a relationship doesnt work","248.84 w594 , 1997","","2018-08-20","2018-08-20","2ra","2r","0","1","0","0"
"irf","a","0","650.1 s775","b1422072a","420908217080","1992","1994-10-26","Book","a","The great game of business","great game of business","650.1 s775","","2019-05-17","2019-05-17","2ga","2g","0","1","0","0"
"irf","a","0","371.9 qh432","b1307456a","420908102464","1991","1992-01-23","Book","a","Up from underachievement : how teachers, students, and parents can work together to promote student success","up from underachievement how teachers students and parents can work together to promote student success","371.9 qh432","","2019-02-26","2019-02-26","osa","os","0","1","0","0"
"irf","a","0","746.460437 qb565 , 1991","b1251527a","420908046535","1991","1991-12-06","Book","a","Better homes and gardens America's heritage quilts","better homes and gardens americas heritage quilts","746.460437 qb565 , 1991","","2018-07-30","2018-07-30","3aa","3a","0","1","0","0"
"irf","a","0","629.13332 b296","b2053323a","420908848331","1972","1992-03-22","Book","a","How to make and fly kites","how to make and fly kites","629.13332 b296","","2019-05-08","2019-05-08","2sa","2s","0","1","0","0"
"irf","a","0","364.153409 s551 2011","b2657825a","420909452833","2011","2011-01-04","Book","a","Somebody's daughter : the hidden story of America's prostituted children and the battle to save them","somebodys daughter the hidden story of americas prostituted children and the battle to save them","364.153409 s551 2011","","2018-12-23","2018-12-23","2ra","2r","0","1","0","0"
"irf","a","0","745.5942 l477","b1391723a","420908186731","1978","1992-03-22","Book","a","Making wood and stone jewelry","making wood and stone jewelry","745.5942 l477","","2019-03-26","2019-03-26","3aa","3a","0","1","0","0"
"irf","a","0","629.244602 qj65 2015","b3026000a","420909821008","2015","2015-02-13","Book","a","Automatic transmissions and transaxles","automatic transmissions and transaxles","629.244602 qj65 2015","","2019-03-10","2019-03-10","3ra","3r","0","1","0","0"
"irf","a","0","745.4 qc934","b2006206a","420908801214","1987","1992-03-22","Book","a","Order in space : a design source book","order in space a design source book","745.4 qc934","","2019-07-02","2019-07-02","3aa","3a","0","1","0","0"
"irf","a","0","709.04052 m916 , 1990","b1039383a","420907834391","1990","1992-03-22","Book","a","Abstract art","abstract art","709.04052 m916 , 1990","","2018-10-22","2018-10-22","3aa","3a","0","1","0","0"
"irf","a","0","746.46041 qm374 t","b1394902a","420908189910","1993","1993-11-26","Book","a","Twenty little Amish quilts : with full-size templates","twenty little amish quilts with full size templates","746.46041 qm374 t","","2019-04-20","2019-04-20","3aa","3a","0","1","0","0"
"irf","a","0","793.89 m412","b2688372a","420909483380","2010","2012-04-05","Book","a","The complete idiot's guide to ventriloquism","complete idiots guide to ventriloquism","793.89 m412","","2019-06-04","2019-06-04","3ra","3r","0","1","0","0"
"irf","a","0","796.352068 m148 , 1997","b1593345a","420908388353","1997","1997-04-02","Book","a","Golf at the water's edge : Scotland's seaside links","golf at the waters edge scotlands seaside links","796.352068 m148 , 1997","","2019-05-21","2019-05-21","2ea","2e","0","1","0","0"
"irf","a","0","641.502 t531","b1906792a","420908701800","2000","2004-08-09","Book","a","365 quick tips : kitchen tricks and shortcuts to make you a faster, smarter, better cook","365 quick tips kitchen tricks and shortcuts to make you a faster smarter better cook","641.502 t531","","2019-01-09","2019-01-09","gra","gr","0","1","0","0"
"irf","a","0","265.1 m681","b1378133a","420908173141","1991","1992-02-06","Book","a","Worship : initiation and the churches","worship initiation and the churches","265.1 m681","","2019-06-09","2019-06-09","2ea","2e","0","1","0","0"
"irf","a","10","813.52 s889 zv","b1402904a","420908197912","1991","1991-08-07","Book","a","At Wolfe's door : the Nero Wolfe novels of Rex Stout","at wolfes door the nero wolfe novels of rex stout","813.52 s889 zv","","2019-07-05","2019-07-05","3la","3l","10","1","0","0"
"irf","a","0","361.70681 k11","b2770699a","420909565707","2010","2010-02-17","Book","a","90 days to success in grant writing","90 days to success in grant writing","361.70681 k11","","2019-06-05","2019-06-05","cra,gra,mda,2ra,sma,wha","cr,gr,md,2r,sm,wh","0","1","0","0"
"irf","a","0","590.752 t944 2013","b2926480a","420909721488","2013","2014-01-07","Book","a","Taxidermy : with 337 color illustrations","taxidermy with 337 color illustrations","590.752 t944 2013","","2019-05-29","2019-05-29","2ra","2r","0","1","0","0"
"irf","a","0","294.595 t169 zr 2014","b2985767a","420909780775","2014","2014-09-09","Book","a","The Radiance Sutras : 112 gateways to the yoga of wonder & delight","radiance sutras 112 gateways to the yoga of wonder and delight","294.595 t169 zr 2014","","2019-04-23","2019-04-23","2ra","2r","0","1","0","0"
"irf","a","0","346.730173 p675","b2729523a","420909524531","2010","2011-05-09","Book","a","A man's guide to child custody","mans guide to child custody","346.730173 p675","","2019-02-25","2019-02-25","cha,coa,2ra","ch,co,2r","0","1","0","0"
"irf","a","0","823.7 s545 zmar 1889","b1470208a","420908265216","1889","1989-04-24","Book","a","The life & letters of Mary Wollstonecraft Shelley","life and letters of mary wollstonecraft shelley","823.7 s545 zmar 1889","","2018-10-11","2018-10-11","3la","3l","0","1","0","0"
"irf","a","0","720.92 fw949 zth","b1936078a","420908731086","1999","2003-05-02","Book","a","Frank Lloyd Wright : a visual encyclopedia","frank lloyd wright a visual encyclopedia","720.92 fw949 zth","","2019-06-16","2019-06-16","3aa","3a","0","1","0","0"
"irf","a","0","333.33 t871 ztr 2005","b3089879a","420909884887","2005","2015-09-02","Book","a","Trump : the art of the deal","trump the art of the deal","333.33 t871 ztr 2005","","2019-02-11","2019-02-11","2ra,nwa,sma","2r,nw,sm","0","1","0","0"
"irf","a","0","636.70832 b531 2018","b3410811a","420910205819","2018","2018-12-19","Book","a","Designer dogs : an exposé : inside the criminal underworld of crossbreeding","designer dogs an exposé inside the criminal underworld of crossbreeding","636.70832 b531 2018","","2019-07-04","2019-07-04","2ra","2r","0","1","0","0"
"irf","a","0","428.43 j76 2004","b2655094a","420909450102","2004","2008-06-24","Book","a","Painless reading comprehension","painless reading comprehension","428.43 j76 2004","","2018-12-28","2018-12-28","2ra","2r","0","1","0","0"
"irf","a","0","378.1985 r824 2008","b2737055a","420909532063","2008","2011-05-17","Book","a","The divine nine : the history of African American fraternities and sororities","divine nine the history of african american fraternities and sororities","378.1985 r824 2008","","2019-03-07","2019-03-07","2ra,2ea","2r,2e","0","1","0","0"
"irf","a","0","230 p8951","b1822091a","420908617099","2002","2002-01-16","Book","a","Practicing theology : beliefs and practices in Christian life","practicing theology beliefs and practices in christian life","230 p8951","","2019-03-25","2019-03-25","2ea","2e","0","1","0","0"
"irf","a","0","020.2373 d699 2012","b2841756a","420909636764","2012","2013-04-08","Book","a","LIS career sourcebook : managing and maximizing every step of your career","lis career sourcebook managing and maximizing every step of your career","020.2373 d699 2012","","2019-02-16","2019-02-16","2ra","2r","0","1","0","0"
"irf","a","0","248.86 o54 , 2000","b1769873a","420908564881","2000","2001-03-16","Book","a","Lord, I want to be whole : the power of prayer and scripture in emotional healing","lord i want to be whole the power of prayer and scripture in emotional healing","248.86 o54 , 2000","","2018-08-17","2018-08-17","2ea","2e","0","1","0","0"
"irf","a","0","812.54 w746 r 2007","b2748560a","420909543568","2007","2007-10-17","Book","a","Radio golf","radio golf","812.54 w746 r 2007","","2019-01-17","2019-01-17","3ra,3la","3r,3l","0","1","0","0"
"irf","a","0","828.91203 b862 zb, 1994","b1428467a","420908223475","1994","1994-10-24","Book","a","Testament of youth : an autobiographical study of the years 1900-1925","testament of youth an autobiographical study of the years 1900 1925","828.91203 b862 zb, 1994","","2019-07-02","2019-07-02","3la","3l","0","1","0","0"
"irf","a","0","362.25 a615","b2527296a","420909322304","2005","2005-03-22","Book","a","Anorexia","anorexia","362.25 a615","","2019-03-05","2019-03-05","2ra","2r","0","1","0","0"
"irf","a","0","621.56 qa467","b2293886a","420909088894","2004","2004-06-10","Book","a","Modern refrigeration and air conditioning","modern refrigeration and air conditioning","621.56 qa467","","2019-03-20","2019-03-20","3ra","3r","0","1","0","0"
"irf","a","0","658 82.4","b2360928a","420909155936","1982","1992-03-22","Book","a","The one minute manager","one minute manager","658 82.4","","2019-05-24","2019-05-24","coa","co","0","1","0","0"
"irf","a","10","813.52 f2632zhar2","b1371259a","420908166267","1977","1992-03-22","Book","a","The South and Faulkner's Yoknapatawpha : the actual and the apocryphal","south and faulkners yoknapatawpha the actual and the apocryphal","813.52 f2632zhar2","","2019-06-24","2019-06-24","3la","3l","10","1","0","0"
"irf","a","0","746.43 qa512","b2267300a","420909062308","1980","1992-03-22","Book","a","American School of Needlework presents The great afghan book.","american school of needlework presents the great afghan book","746.43 qa512","","2018-11-27","2018-11-27","3aa","3a","0","1","0","0"
"irf","a","0","346.730488 e42 2013","b3007709a","420909802717","2013","2014-11-17","Book","a","Trademark : legal care for your business & product name","trademark legal care for your business and product name","346.730488 e42 2013","","2019-01-30","2019-01-30","2ra","2r","0","1","0","0"
"irf","a","0","297.12261 l419 , 2006","b2688251a","420909483259","2006","2007-02-21","Book","a","The Qurʼan : a biography","qurʼan a biography","297.12261 l419 , 2006","","2019-01-24","2019-01-24","2ra","2r","0","1","0","0"
"irf","a","10","759.9 fb74 ph","b1158194a","420907953202","1956","1993-06-07","Book","a","Hieronymus Bosch","hieronymus bosch","759.9 fb74 ph","","2019-02-23","2019-02-23","3aa","3a","10","1","0","0"
"irf","a","0","616.8527 m473 , 2002","b1993100a","420908788108","2002","2002-07-09","Book","a","Mayo Clinic on depression","mayo clinic on depression","616.8527 m473 , 2002","","2018-12-28","2018-12-28","2sa","2s","0","1","0","0"
"irf","a","0","813.08508 j12","b2665674a","420909460682","2005","2005-10-26","Book","a","When you least expect it","when you least expect it","813.08508 j12","","2019-06-06","2019-06-06","ava,3ra,osa","av,3r,os","0","1","0","0"
"irf","a","0","153.4 m297","b1533722a","420908328730","1996","1997-03-07","Book","a","Quantum leap thinking : an owner's guide to the mind","quantum leap thinking an owners guide to the mind","153.4 m297","","2019-06-22","2019-06-22","2ea","2e","0","1","0","0"
"irf","a","0","181.45 b911","b1239376a","420908034384","1972","1989-04-02","Book","a","The wisdom of the overself.","wisdom of the overself","181.45 b911","","2019-05-31","2019-05-31","2ea","2e","0","1","0","0"
"irf","a","0","793.89 s336","b2705629a","420909500637","2011","2011-03-22","Book","a","Ventriloquism : magic with your voice","ventriloquism magic with your voice","793.89 s336","","2019-06-04","2019-06-04","3ra","3r","0","1","0","0"
"irf","a","0","363.282092 r332 zb 2006","b2883478a","420909678486","2006","2013-08-27","Book","a","Black gun silver star : the life and legend of frontier marshal Bass Reeves","black gun silver star the life and legend of frontier marshal bass reeves","363.282092 r332 zb 2006","","2019-05-27","2019-05-27","2ra","2r","0","1","0","0"
"irf","a","0","340.072 qh572 , 2002","b1943499a","420908738507","2002","2002-12-17","Book","a","Legal research made easy","legal research made easy","340.072 qh572 , 2002","","2018-04-07","2018-04-07","2ga","2g","0","1","0","0"
"irf","a","0","683.43 d261","b1516923a","420908311931","1997","1997-09-16","Book","a","The Luger handbook","luger handbook","683.43 d261","","2019-06-12","2019-06-12","2sa","2s","0","1","0","0"
"irf","a","0","751.4 v871","b2701974a","420909496982","2008","2008-10-03","Book","a","Painting abstracts : ideas, projects and techniques","painting abstracts ideas projects and techniques","751.4 v871","","2019-04-22","2019-04-22","3ra","3r","0","1","0","0"
"irf","a","0","781.490942 fa124 zl 2012","b2811716a","420909606724","2012","2012-10-16","Book","a","Abbey Road : the best studio in the world","abbey road the best studio in the world","781.490942 fa124 zl 2012","","2019-05-08","2019-05-08","3ra","3r","0","1","0","0"
"irf","a","0","006.312 l331","b2592962a","420909387970","2005","2005-06-09","Book","a","Discovering knowledge in data : an introduction to data mining","discovering knowledge in data an introduction to data mining","006.312 l331","","2019-04-26","2019-04-26","2ra","2r","0","1","0","0"
"irf","a","0","798.401 b866 , 1991","b1341055a","420908136063","1991","1991-04-16","Book","a","Modern pace handicapping","modern pace handicapping","798.401 b866 , 1991","","2018-08-13","2018-08-13","2ea","2e","0","1","0","0"
"irf","a","0","629.2873 q84 .5","b2106918a","420908901926","1984","1992-03-22","Book","a","Chilton's repair & tune-up guide, Ford Ranger, 1983-84 : all models","chiltons repair and tune up guide ford ranger 1983 84 all models","629.2873 q84 .5","","2019-05-11","2019-05-11","2sa","2s","0","1","0","0"
"irf","a","0","158.1 s531 g, 2006","b2689323a","420909484331","2006","2007-02-08","Book","a","The greatness guide : powerful secrets for getting to world class","greatness guide powerful secrets for getting to world class","158.1 s531 g, 2006","","2019-01-26","2019-01-26","2ra","2r","0","1","0","0"
"irf","a","10","741.942 qg798","b2067535a","420908862543","1978","1992-03-22","Book","a","The illuminated language of flowers : over 700 flowers and plants listed alphabetically with their meanings","illuminated language of flowers over 700 flowers and plants listed alphabetically with their meanings","741.942 qg798","","2019-05-22","2019-05-22","3aa,1lj","3a,1l","10","1","0","0"
"irf","a","0","650.1 v467","b1832187a","420908627195","2001","2002-02-27","Book","a","The power of positive thinking in business : ten traits for maximum results","power of positive thinking in business ten traits for maximum results","650.1 v467","","2019-05-11","2019-05-11","3ra","3r","0","1","0","0"
"irf","a","0","027.622097 r643 2018","b3329616a","420910124624","2018","2018-02-05","Book","a","Designing adult services : strategies for better serving your community","designing adult services strategies for better serving your community","027.622097 r643 2018","","2019-06-10","2019-06-10","2ra","2r","0","1","0","0"
"irf","a","0","512 k29","b2679979a","420909474987","2005","2005-10-04","Book","a","The complete idiot's guide to precalculus","complete idiots guide to precalculus","512 k29","","2019-06-07","2019-06-07","bha,2ra","bh,2r","0","1","0","0"
"irf","a","0","745.59221 qa923 c","b2402141a","420909197149","2005","2005-01-25","Book","a","Collector's encyclopedia of Barbie doll collector's editions : identification & values","collectors encyclopedia of barbie doll collectors editions identification and values","745.59221 qa923 c","","2019-07-05","2019-07-05","3aa","3a","0","1","0","0"
"irf","a","0","650.14 83.3","b2392179a","420909187187","1983","1992-03-22","Book","a","How to prepare your own high-intensity resume","how to prepare your own high intensity resume","650.14 83.3","","2018-12-12","2018-12-12","2ga","2g","0","1","0","0"
"irf","a","0","616.852106 l665","b2781071a","420909576079","2005","2007-08-13","Book","a","Healing trauma : a pioneering program to restore the wisdom of your body","healing trauma a pioneering program to restore the wisdom of your body","616.852106 l665","","2019-02-13","2019-02-13","3ra","3r","0","1","0","0"
"irf","a","0","863.010806 s559","b2624802a","420909419810","1999","2005-07-15","Book","a","Short stories in Spanish","short stories in spanish","863.010806 s559","","2019-06-10","2019-06-10","3ra","3r","0","1","0","0"
"irf","a","0","812.54 w746 zau1 2009","b2556770a","420909351778","2009","2009-03-12","Book","a","August Wilson","august wilson","812.54 w746 zau1 2009","","2019-01-03","2019-01-03","3ra","3r","0","1","0","0"
"irf","a","0","641.555 w7512, 1999","b1853407a","420908648415","1999","2004-08-09","Book","a","Once-a-month cooking","once a month cooking","641.555 w7512, 1999","","2018-08-26","2018-08-26","3ra","3r","0","1","0","0"
"irf","a","10","646.5 25.1","b1390329a","420908185337","1925","1992-03-22","Book","a","Hats and how to make them,","hats and how to make them","646.5 25.1","","2019-06-29","2019-06-29","2sa","2s","10","1","0","0"
"irf","a","0","306.81 t649 2012","b2828064a","420909623072","2012","2013-02-28","Book","a","Making marriage work : new rules for an old institution","making marriage work new rules for an old institution","306.81 t649 2012","","2019-05-29","2019-05-29","2ra,nwa","2r,nw","0","1","0","0"
"irf","a","0","006.754 f138 zk 2011","b2795751a","420909590759","2011","2012-08-28","Book","a","The complete idiot's guide to Facebook","complete idiots guide to facebook","006.754 f138 zk 2011","","2019-06-11","2019-06-11","2ra,wha","2r,wh","0","1","0","0"
"irf","a","0","508.092 m953 xg","b1613836a","420908408844","1996","1998-01-27","Book","a","John Muir : his Life and letters and other writings","john muir his life and letters and other writings","508.092 m953 xg","","2019-04-28","2019-04-28","2ra","2r","0","1","0","0"
"irf","a","0","796.8152 p372","b1846713a","420908641721","2001","2001-07-13","Book","a","Judo techniques & tactics","judo techniques and tactics","796.8152 p372","","2019-03-08","2019-03-08","3ra,2ea","3r,2e","0","1","0","0"
"irf","a","0","817.54 b695 e","b2470454a","420909265462","1973","1992-03-22","Book","a","I lost everything in the post-natal depression.","i lost everything in the post natal depression","817.54 b695 e","","2018-11-28","2018-11-28","3la","3l","0","1","0","0"
"irf","a","0","301.0973 s912 2009","b2534088a","420909329096","2009","2009-03-10","Book","a","Emergency : this book will save your life","emergency this book will save your life","301.0973 s912 2009","","2019-02-22","2019-02-22","2ra,sma","2r,sm","0","1","0","0"
"irf","a","0","920.073 fv888","b2565762a","420909360770","2007","2007-12-07","Book","a","Vogue living : houses, gardens, people","vogue living houses gardens people","920.073 fv888","","2019-04-24","2019-04-24","3ra","3r","0","1","0","0"
"irf","a","10","305.896073 b181 , 1963","b2303627a","420909098635","1963","1992-03-22","Book","a","The fire next time.","fire next time","305.896073 b181 , 1963","","2019-02-06","2019-02-06","2ea,osa","2e,os","10","1","0","0"
"irf","a","0","364.106609 m823","b2663594a","420909458602","2011","2011-02-07","Book","a","The Almighty Black P Stone Nation : the rise, fall, and resurgence of an American gang","almighty black p stone nation the rise fall and resurgence of an american gang","364.106609 m823","","2019-06-20","2019-06-20","2ra","2r","0","1","0","0"
"irf","a","0","628.92076 qb277","b1812978a","420908607986","2000","2013-04-23","Book","a","Firefighter exams.","firefighter exams","628.92076 qb277","6th_ed. 2009","2018-04-04","2018-04-04","ava,2sa","av,2s","0","1","0","0"
"irf","a","0","781.643089 n342 , 2003","b2182856a","420908977864","2003","2004-02-06","Book","a","Songs in the key of black life : a rhythm and blues nation","songs in the key of black life a rhythm and blues nation","781.643089 n342 , 2003","","2018-07-27","2018-07-27","3ra","3r","0","1","0","0"
"irf","a","0","507.1073 b218 2013","b2963741a","420909758749","2013","2014-04-28","Book","a","Science for the next generation : preparing for the new standards","science for the next generation preparing for the new standards","507.1073 b218 2013","","2019-06-30","2019-06-30","2ra","2r","0","1","0","0"
"irf","a","0","730.02 qs685","b2051395a","420908846403","1984","1992-03-22","Book","a","Paolo Soleri's Earth casting : for sculpture, models, and construction","paolo soleris earth casting for sculpture models and construction","730.02 qs685","","2019-05-10","2019-05-10","3aa","3a","0","1","0","0"
"irf","a","0","751.422 qs661","b1500125a","420908295133","1995","1996-01-10","Book","a","Watercolor : the complete course","watercolor the complete course","751.422 qs661","","2019-01-24","2019-01-24","3ra","3r","0","1","0","0"
"irf","a","0","332.632042 m346","b1865399a","420908660407","2003","2003-04-08","Book","a","Swing trading : power strategies to cut risk and boost profits","swing trading power strategies to cut risk and boost profits","332.632042 m346","","2019-05-24","2019-05-24","2ra","2r","0","1","0","0"
"irf","a","0","306.362089 d595","b2742801a","420909537809","2007","2007-05-08","Book","a","Dreams of Africa in Alabama : the slave ship Clotilda and the story of the last Africans brought to America","dreams of africa in alabama the slave ship clotilda and the story of the last africans brought to america","306.362089 d595","","2018-11-15","2018-11-15","2ra","2r","0","1","0","0"
"irf","a","0","930 s22 m","b1783465a","420908578473","1938","1989-04-25","Book","a","The Mediterranean world in ancient times.","mediterranean world in ancient times","930 s22 m","","2019-01-28","2019-01-28","3ha","3h","0","1","0","0"
"irf","a","0","782.4213 c581","b2604129a","420909399137","2008","2008-05-08","Book","a","Songwriting : a complete guide to the craft","songwriting a complete guide to the craft","782.4213 c581","","2019-06-17","2019-06-17","3ra","3r","0","1","0","0"
"irf","a","0","781.2 qk11 1995","b3370941a","420910165949","1995","2018-08-06","Book","a","The guitar grimoire : a compendium of formulas for guitar scales and modes","guitar grimoire a compendium of formulas for guitar scales and modes","781.2 qk11 1995","","2018-10-26","2018-10-26","3ra","3r","0","1","0","0"
"irf","a","0","581.65 s849","b2610506a","420909405514","2009","2009-05-14","Book","a","Wicked plants : the weed that killed Lincoln's mother & other botanical atrocities","wicked plants the weed that killed lincolns mother and other botanical atrocities","581.65 s849","","2019-03-01","2019-03-01","2ra,sma","2r,sm","0","1","0","0"
"irf","a","0","799.31 ql366","b1665075a","420908460083","1996","1997-01-16","Book","a","The tactical marksman : a complete training manual for police and practical shooters","tactical marksman a complete training manual for police and practical shooters","799.31 ql366","","2019-05-10","2019-05-10","3ra","3r","0","1","0","0"
"irf","a","0","796.83092 a398 zmo 2017","b3258769a","420910053777","2017","2017-05-18","Book","a","Sting like a bee : Muhammad Ali vs. the United States of America, 1966-1971","sting like a bee muhammad ali vs the united states of america 1966 1971","796.83092 a398 zmo 2017","","2019-06-12","2019-06-12","dta,2ra,wha","dt,2r,wh","0","1","0","0"
"irf","c","161","m3.0586 fo58","b1864435a","420908659443","1995","1999-11-02","Music Score","c","100 great love songs.","100 great love songs","m3.0586 fo58","","2017-08-03","2017-08-03","3aa","3a","161","1","0","0"
"irf","a","0","292.07 c568 ne","b1693060a","420908488068","1997","1997-04-23","Book","a","The nature of the gods","nature of the gods","292.07 c568 ne","","2019-06-09","2019-06-09","2ra","2r","0","1","0","0"
"irf","a","0","796.522092 b762 zb","b1760332a","420908555340","2001","2001-12-19","Book","a","Above the clouds : the diaries of a high-altitude mountaineer","above the clouds the diaries of a high altitude mountaineer","796.522092 b762 zb","","2019-01-22","2019-01-22","3ra","3r","0","1","0","0"
"irf","a","0","746.7 qr217","b1570127a","420908365135","1960","1996-12-12","Book","a","Rugs of Armenia, their history and art,","rugs of armenia their history and art","746.7 qr217","","2018-10-16","2018-10-16","3aa","3a","0","1","0","0"
"irf","a","10","704.9424 qi31 je, 1992","b1648967a","420908443975","1992","1997-05-01","Book","a","Power and beauty : images of women in art","power and beauty images of women in art","704.9424 qi31 je, 1992","","2019-07-03","2019-07-03","3aa,3ra","3a,3r","10","1","0","0"
"irf","a","0","641.595 q86 .1","b1226317a","420908021325","1986","2004-08-09","Book","a","The best of Asian cooking","best of asian cooking","641.595 q86 .1","","2018-09-09","2018-09-09","2sa","2s","0","1","0","0"
"irf","a","0","613.713 qe41","b2778536a","420909573544","2010","2011-08-16","Book","a","Essentials of weightlifting & strength training. Part 2, Olympic weightlifting load & volume injuries","essentials of weightlifting and strength training part 2 olympic weightlifting load and volume injuries","613.713 qe41","v.02","2019-02-03","2019-02-03","3ra","3r","0","1","0","0"
"irf","a","0","133.91 s795 2016","b3202779a","420909997787","2016","2016-08-09","Book","a","Medium : a step-by-step guide to communicating with the spirit world","medium a step by step guide to communicating with the spirit world","133.91 s795 2016","","2019-03-23","2019-03-23","haa,2ra","ha,2r","0","1","0","0"
"irf","a","0","947.0862092 p988 zh 2015","b3026845a","420909821853","2015","2015-03-04","Book","a","Mr. Putin : operative in the Kremlin","mr putin operative in the kremlin","947.0862092 p988 zh 2015","","2019-04-16","2019-04-16","3ra","3r","0","1","0","0"
"irf","a","10","844 m761 eefr","b1214379a","420908009387","1958","1992-03-22","Book","a","The complete essays of Montaigne","complete essays of montaigne","844 m761 eefr","","2019-05-03","2019-05-03","3la","3l","10","1","0","0"
"irf","a","0","339.47 w163","b2694291a","420909489299","2009","2009-11-02","Book","a","Scroogenomics : why you shouldn't buy presents for the holidays","scroogenomics why you shouldnt buy presents for the holidays","339.47 w163","","2019-06-06","2019-06-06","2ra","2r","0","1","0","0"
"irf","a","0","133.92 d411","b1650373a","420908445381","1994","1995-06-01","Book","a","The Llewellyn practical guide to astral projection : the out-of-body experience","llewellyn practical guide to astral projection the out of body experience","133.92 d411","","2019-06-03","2019-06-03","2ra","2r","0","1","0","0"
"irf","a","0","917.27 w135","b1127952a","420907922960","1985","1988-08-04","Book","a","Fodor's fun in Acapulco.","fodors fun in acapulco","917.27 w135","1985","2019-04-18","2019-04-18","3ha","3h","0","1","0","0"
"irf","a","0","947.084092 z39 zb","b1795672a","420908590680","1998","1999-09-20","Book","a","Lenin's embalmers","lenins embalmers","947.084092 z39 zb","","2019-03-05","2019-03-05","3ra","3r","0","1","0","0"
"irf","a","0","653.18 m889 , 1998","b1906705a","420908701713","1998","2000-06-23","Book","a","How to become a medical transcriptionist : a career for the 21st century","how to become a medical transcriptionist a career for the 21st century","653.18 m889 , 1998","","2018-12-17","2018-12-17","2ga","2g","0","1","0","0"
"irf","a","0","641.3372 s839","b2592381a","420909387389","2009","2011-01-13","Book","a","Tea for you : blending custom teas to savor and share","tea for you blending custom teas to savor and share","641.3372 s839","","2019-05-23","2019-05-23","3ra","3r","0","1","0","0"
"irf","a","10","973.9 qg884 2011","b3310713a","420910105721","2011","2018-03-28","Book","a","Growing up : the magical memories of childhood.","growing up the magical memories of childhood","973.9 qg884 2011","","2019-04-11","2019-04-11","osa","os","10","1","0","0"
"irf","a","0","612 s571 2011","b2786421a","420909581429","2011","2011-09-06","Book","a","Anatomy & physiology for dummies","anatomy and physiology for dummies","612 s571 2011","","2019-05-28","2019-05-28","3ra,wha","3r,wh","0","1","0","0"
"irf","a","0","917.880433 c371","b1401214a","420908196222","1991","1991-08-12","Book","a","The Colorado guide","colorado guide","917.880433 c371","","2019-06-10","2019-06-10","3ha","3h","0","1","0","0"
"irf","a","0","944.05092 j83 ze, 1999","b1935192a","420908730200","1999","1999-04-01","Book","a","Josephine : a life of the empress","josephine a life of the empress","944.05092 j83 ze, 1999","","2019-02-07","2019-02-07","3ra","3r","0","1","0","0"
"irf","a","0","320.011 r567","b1968504a","420908763512","2001","2003-06-16","Book","a","Justice and reconciliation : after the violence","justice and reconciliation after the violence","320.011 r567","","2019-06-03","2019-06-03","2ra","2r","0","1","0","0"
"irf","a","0","339 n147 p, 1989","b1014485a","420907809493","1989","1992-03-22","Book","a","Political macroeconomics","political macroeconomics","339 n147 p, 1989","","2018-11-27","2018-11-27","2ga","2g","0","1","0","0"
"irf","a","0","595.7 fl917 , 1999","b1850800a","420908645808","1999","2000-04-28","Book","a","Bugs : insects, spiders, centipedes, millipedes, and other closely related arthropods","bugs insects spiders centipedes millipedes and other closely related arthropods","595.7 fl917 , 1999","","2019-06-09","2019-06-09","2ra","2r","0","1","0","0"
"irf","a","0","918.2047 a691","b2681170a","420909476178","2005","2018-08-17","Book","a","Argentina","argentina","918.2047 a691","8th_ed. 2012","2018-10-01","2018-10-01","ana,baa,haa,hpa,mda,3ra,mta,sha,sba,sma,wya","an,ba,ha,hp,md,3r,mt,sh,sb,sm,wy","0","1","0","0"
"irf","a","0","203.7 k99","b2546092a","420909341100","2007","2007-11-20","Book","a","Your altar : creating a sacred space for prayer and meditation","your altar creating a sacred space for prayer and meditation","203.7 k99","","2019-03-04","2019-03-04","haa,2ra","ha,2r","0","1","0","0"
"irf","a","0","616.858832 b414 2014","b2963167a","420909758175","2014","2014-04-18","Book","a","Been there, done that--try this! : an Aspie mentors' guide to life on earth","been there done that try this an aspie mentors guide to life on earth","616.858832 b414 2014","","2019-05-02","2019-05-02","3ra","3r","0","1","0","0"
"irf","a","0","786.916609 p362 zp2","b2729048a","420909524056","2006","2011-05-05","Book","a","Roadshow : landscape with drums : a concert tour by motorcycle","roadshow landscape with drums a concert tour by motorcycle","786.916609 p362 zp2","","2018-10-15","2018-10-15","3ra","3r","0","1","0","0"
"irf","a","10","791.43028 b2813zb","b1001692a","420907796700","1990","1991-02-05","Book","a","Little girl lost","little girl lost","791.43028 b2813zb","","2019-04-14","2019-04-14","3aa,osa","3a,os","10","1","0","0"
"irf","a","0","658.15224 89.1","b1020757a","420907815765","1989","1992-03-22","Book","a","How to write winning proposals for your company or client","how to write winning proposals for your company or client","658.15224 89.1","","2018-10-15","2018-10-15","2ga","2g","0","1","0","0"
"irf","a","0","646.2 qo62","b1932348a","420908727356","1998","2000-01-07","Book","a","Sewing packs, pouches, seats & sacks : 30 practical projects","sewing packs pouches seats and sacks 30 practical projects","646.2 qo62","","2019-06-14","2019-06-14","2sa","2s","0","1","0","0"
"irf","a","0","615.321 m663 d","b1957133a","420908752141","2002","2002-11-15","Book","a","Dr. Earl Mindell's amazing apple cider vinegar","dr earl mindells amazing apple cider vinegar","615.321 m663 d","","2019-05-08","2019-05-08","3ra","3r","0","1","0","0"
"irf","a","0","747 qi58 a","b1736304a","420908531312","1995","1996-10-22","Book","a","Applied artistry : a complete guide to decorative finishes for your home","applied artistry a complete guide to decorative finishes for your home","747 qi58 a","","2019-06-20","2019-06-20","3ra","3r","0","1","0","0"
"irf","a","0","560.9 m437 zc, 1992","b1454896a","420908249904","1992","1993-04-27","Book","a","William Diller Matthew, paleontologist : the splendid drama observed","william diller matthew paleontologist the splendid drama observed","560.9 m437 zc, 1992","","2018-08-27","2018-08-27","2sa","2s","0","1","0","0"
"irf","a","0","248.843 j25 , 1998","b1575801a","420908370809","1998","1998-08-05","Book","a","The lady, her lover, and her Lord","lady her lover and her lord","248.843 j25 , 1998","","2019-04-25","2019-04-25","gra,2ea","gr,2e","0","1","0","0"
"irf","a","0","658.2 s558 , 1992","b1265752a","420908060760","1992","1994-03-01","Book","a","TPM for workshop leaders","tpm for workshop leaders","658.2 s558 , 1992","","2019-04-07","2019-04-07","2ga","2g","0","1","0","0"
"irf","a","0","901 i13 m","b1071763a","420907866771","1958","1992-03-22","Book","a","The Muqaddimah; an introduction to history,","muqaddimah an introduction to history","901 i13 m","v.02","2019-02-02","2019-02-02","3ha","3h","0","1","0","0"
"irf","a","0","296.712 c776","b1603775a","420908398783","1997","1997-12-04","Book","a","God is a verb : kabbalah and the practice of mystical Judaism","god is a verb kabbalah and the practice of mystical judaism","296.712 c776","","2019-07-02","2019-07-02","2ra","2r","0","1","0","0"
"irf","a","0","468.2421 s819 co","b2404540a","420909199548","2004","2004-08-31","Book","a","Countdown to Spanish : learn to communicate in 24 hours","countdown to spanish learn to communicate in 24 hours","468.2421 s819 co","","2017-07-28","2017-07-28","3la","3l","0","1","0","0"
"irf","a","0","738.37 b6582","b1023025a","420907818033","1980","1992-03-22","Book","a","Southern Potteries Inc. Blue Ridge dinnerware","southern potteries inc blue ridge dinnerware","738.37 b6582","","2019-03-26","2019-03-26","3aa","3a","0","1","0","0"
"irf","a","0","617.0922 h758","b2740493a","420909535501","2010","2010-01-06","Book","a","The real Grey's anatomy : a behind-the-scenes look at the real lives of surgical residents","real greys anatomy a behind the scenes look at the real lives of surgical residents","617.0922 h758","","2018-12-28","2018-12-28","haa","ha","0","1","0","0"
"irf","c","157","m2.10946 fz38 m","b1799121a","420908594129","2000","2001-05-31","Music Score","c","Zarzuela! : songs from the zarzuela, for mezzo-soprano with piano accompaniment = romanzas para mezzo-soprano con acompañamiento de piano","zarzuela songs from the zarzuela for mezzo soprano with piano accompaniment romanzas para mezzo soprano con acompañamiento de piano","m2.10946 fz38 m","","2019-05-16","2019-05-16","3ra","3r","157","1","0","0"
"irf","a","0","611.013 52","b1328748a","420908123756","1952","1989-04-14","Book","a","Infant development; the embryology of early human behavior.","infant development the embryology of early human behavior","611.013 52","","2019-06-05","2019-06-05","2sa","2s","0","1","0","0"
"irf","c","157","m7.87 fv712 x 1990","b1633270a","420908428278","1990","1997-09-05","Music Score","c","Collected works for solo guitar","collected works for solo guitar","m7.87 fv712 x 1990","","2018-08-15","2018-08-15","3ra","3r","157","1","0","0"
"irf","a","0","684.16 qs5451","b1920902a","420908715910","2002","2002-11-14","Book","a","Shelves and bookcases : pro tips and simple steps.","shelves and bookcases pro tips and simple steps","684.16 qs5451","","2019-03-22","2019-03-22","ana,3ra","an,3r","0","1","0","0"
"irf","a","0","916.2044 g578 zg","b1056157a","420907851165","1979","1992-03-22","Book","a","Kayaks down the Nile","kayaks down the nile","916.2044 g578 zg","","2019-07-03","2019-07-03","3ha","3h","0","1","0","0"
"irf","a","0","268.6 ql479","b2364258a","420909159266","1982","1992-03-22","Book","a","Learning centers for better Christian education","learning centers for better christian education","268.6 ql479","","2019-06-11","2019-06-11","2ea","2e","0","1","0","0"
"irf","a","0","641.5636 qf353","b2104999a","420908900007","2003","2004-08-09","Book","a","Fresh and healthy vegetarian : over 150 tempting vegetarian dishes for all tastes and every occasion","fresh and healthy vegetarian over 150 tempting vegetarian dishes for all tastes and every occasion","641.5636 qf353","","2018-08-14","2018-08-14","3ra","3r","0","1","0","0"
"irf","a","0","649.155 k64","b2552750a","420909347758","2007","2007-11-15","Book","a","Raising gifted kids : everything you need to know to help your exceptional child thrive","raising gifted kids everything you need to know to help your exceptional child thrive","649.155 k64","","2019-05-29","2019-05-29","mta,osa","mt,os","0","1","0","0"
"irf","a","0","628.92076 qf5233","b1890801a","420908685809","2000","2016-01-22","Book","a","Firefighter exam.","firefighter exam","628.92076 qf5233","2016","2018-10-26","2018-10-26","2ra,2sa","2r,2s","0","1","0","0"
"irf","a","10","784.54009 qr7545zs","b1109095a","420907904103","1987","1992-03-22","Book","a","Rolling Thunder logbook","rolling thunder logbook","784.54009 qr7545zs","","2019-01-28","2019-01-28","3aa,3ra","3a,3r","10","1","0","0"
"irf","a","0","746.434041 qr651","b1961526a","420908756534","1999","1999-07-22","Book","a","Romantic crochet : 30 beautiful projects for your home","romantic crochet 30 beautiful projects for your home","746.434041 qr651","","2019-04-29","2019-04-29","3aa","3a","0","1","0","0"
"irf","a","0","796.357 h229 , 1999","b1818934a","420908613942","1999","1999-04-29","Book","a","How to snag major league baseballs : more than 100 tested tricks that really work","how to snag major league baseballs more than 100 tested tricks that really work","796.357 h229 , 1999","","2019-04-06","2019-04-06","3ra","3r","0","1","0","0"
"irf","a","0","610.76 qb561","b1665527a","420908460535","1992","1995-06-15","Book","a","The best test preparation for the MCAT, Medical College Admission Test","best test preparation for the mcat medical college admission test","610.76 qb561","","2019-05-04","2019-05-04","2sa","2s","0","1","0","0"
"irf","a","0","818.609 w582 zw 2017","b3412794a","420910207802","2017","2018-12-14","Book","a","With all my blessings above & beyond","with all my blessings above and beyond","818.609 w582 zw 2017","","2019-02-21","2019-02-21","3ra","3r","0","1","0","0"
"irf","a","0","133.129 b814","b2508009a","420909303017","2010","2011-10-06","Book","a","The haunted history of the Ohio State Reformatory","haunted history of the ohio state reformatory","133.129 b814","","2019-06-06","2019-06-06","2ra,rea","2r,re","0","1","0","0"
"irf","a","0","791.43013 c932 , 1993","b1426465a","420908221473","1993","1993-12-01","Book","a","Crisis cinema : the apocalyptic idea in postmodern narrative film","crisis cinema the apocalyptic idea in postmodern narrative film","791.43013 c932 , 1993","","2019-01-10","2019-01-10","3aa","3a","0","1","0","0"
"irf","a","0","001.9 m164 1999","b3346990a","420910141998","1999","1999-04-05","Book","a","The hollow earth enigma","hollow earth enigma","001.9 m164 1999","","2019-06-05","2019-06-05","3ha","3h","0","1","0","0"
"irf","a","0","595.709969 h853 , 1992","b1252510a","420908047518","1992","1992-09-11","Book","a","Hawaiian insects and their kin","hawaiian insects and their kin","595.709969 h853 , 1992","","2019-04-13","2019-04-13","2sa","2s","0","1","0","0"
"irf","a","0","761 qg886","b1527835a","420908322843","1996","1996-11-21","Book","a","The great rubber stamp book : designing, making, using","great rubber stamp book designing making using","761 qg886","","2019-06-10","2019-06-10","3ra","3r","0","1","0","0"
"irf","a","0","790.1926 qa791 r9 2002","b2814781a","420909609789","2002","2013-04-29","Book","a","The 1990s","1990s","790.1926 qa791 r9 2002","","2017-04-13","2017-04-13","osa","os","0","1","0","0"
"irf","a","0","204.2 s897 2014","b3095505a","420909890513","2014","2015-09-29","Book","a","DMT and the soul of prophecy : a new science of spiritual revelation in the Hebrew Bible","dmt and the soul of prophecy a new science of spiritual revelation in the hebrew bible","204.2 s897 2014","","2019-05-22","2019-05-22","2ra","2r","0","1","0","0"
"irf","a","0","616.002 80","b2270505a","420909065513","1980","1992-03-22","Book","a","The complete medicine book","complete medicine book","616.002 80","","2018-09-10","2018-09-10","2sa","2s","0","1","0","0"
"irf","a","0","358.450973 o45 , 1986","b1409036a","420908204044","1986","1992-04-27","Book","a","US sky spies since World War 1","us sky spies since world war 1","358.450973 o45 , 1986","","2019-06-11","2019-06-11","2ga","2g","0","1","0","0"
"irf","a","0","262 s888 2007","b2584658a","420909379666","2007","2008-01-25","Book","a","The living church : convictions of a lifelong pastor","living church convictions of a lifelong pastor","262 s888 2007","","2019-02-22","2019-02-22","2ra","2r","0","1","0","0"
"irf","a","0","371.042 j89","b2710491a","420909505499","2005","2005-12-02","Book","a","Homeschooling more than one child : a practical guide for families","homeschooling more than one child a practical guide for families","371.042 j89","","2019-01-22","2019-01-22","2ra","2r","0","1","0","0"
"irf","a","0","006.6869 qw723","b2644893a","420909439901","2009","2009-08-28","Book","a","The DC Comics guide to digitally drawing comics","dc comics guide to digitally drawing comics","006.6869 qw723","","2019-06-02","2019-06-02","2ra","2r","0","1","0","0"
"irf","a","0","595.78097 l461 2018","b3346079a","420910141087","2018","2018-04-16","Book","a","Peterson field guide to moths of southeastern North America","peterson field guide to moths of southeastern north america","595.78097 l461 2018","","2019-06-03","2019-06-03","baa,2ra","ba,2r","0","1","0","0"
"irf","a","0","664.9 36.2","b1669379a","420908464387","1936","1996-10-01","Book","a","Reference book of the meat packing industry.","reference book of the meat packing industry","664.9 36.2","","2019-02-28","2019-02-28","2sa","2s","0","1","0","0"
"irf","a","0","301.451 b181 n","b2139722a","420908934730","1984","1992-03-22","Book","a","Notes of a native son","notes of a native son","301.451 b181 n","","2018-07-24","2018-07-24","2ea","2e","0","1","0","0"
"irf","a","0","297.5697 s298 2018","b3410870a","420910205878","2018","2018-12-17","Book","a","On Islam : a chronological record 2002-2018","on islam a chronological record 2002 2018","297.5697 s298 2018","","2019-03-04","2019-03-04","2ra","2r","0","1","0","0"
"irf","a","0","153.6 s849 2014","b3000600a","420909795608","2014","2014-10-23","Book","a","U & me: communicating in moments that matter","u and me communicating in moments that matter","153.6 s849 2014","","2018-09-13","2018-09-13","ana,2ra","an,2r","0","1","0","0"
"irf","a","0","635.967 qd674","b1780536a","420908575544","1998","1999-05-11","Book","a","Urban jungle : the simple way to tame your town garden","urban jungle the simple way to tame your town garden","635.967 qd674","","2019-04-25","2019-04-25","3ra","3r","0","1","0","0"
"irf","c","157","m5.62192 fd612 m 1995","b2606921a","420909401929","1995","2005-04-29","Music Score","c","Disney movie hits for two : piano duets","disney movie hits for two piano duets","m5.62192 fd612 m 1995","","2018-07-26","2018-07-26","3ra","3r","157","1","0","0"
"irf","a","0","364.301 s187 2014","b3022589a","420909817597","2014","2015-01-22","Book","a","Inside the criminal mind","inside the criminal mind","364.301 s187 2014","","2019-05-17","2019-05-17","2ra","2r","0","1","0","0"
"irf","a","0","823.914 f597 zma 2008","b2617307a","420909412315","2008","2008-05-02","Book","a","For your eyes only : Ian Fleming and James Bond","for your eyes only ian fleming and james bond","823.914 f597 zma 2008","","2019-04-09","2019-04-09","3ra","3r","0","1","0","0"
"irf","a","0","346.771016 qo37","b1970132a","420908765140","1999","2000-08-22","Book","a","Ohio dissolution of marriage (no-fault-divorce) : a step-by-step guide to do-it-yourself.","ohio dissolution of marriage no fault divorce a step by step guide to do it yourself","346.771016 qo37","","2019-03-30","2019-03-30","nra","nr","0","1","0","0"
"irf","a","10","523.4 r547","b1458781a","420908253789","1993","1994-11-18","Book","a","Collins pocket guide to stars and planets","collins pocket guide to stars and planets","523.4 r547","","2018-12-28","2018-12-28","cva,2sa","cv,2s","10","1","0","0"
"irf","a","0","293.2114 s629 2008","b2609491a","420909404499","2008","2008-05-19","Book","a","Goddess afoot! : practicing magic with Celtic & Norse goddesses","goddess afoot practicing magic with celtic and norse goddesses","293.2114 s629 2008","","2019-01-20","2019-01-20","2ra","2r","0","1","0","0"
"irf","a","0","791.457502 t323","b1954471a","420908749479","1999","1999-07-09","Book","a","1,350 toughest TV trivia questions of all time","1 350 toughest tv trivia questions of all time","791.457502 t323","","2016-06-04","2016-06-04","3ra","3r","0","1","0","0"
"irf","a","0","813.6 u52 zu 2008","b2697854a","420909492862","2008","2008-10-23","Book","a","First darling of the morning : selected memories of an Indian childhood","first darling of the morning selected memories of an indian childhood","813.6 u52 zu 2008","","2019-03-12","2019-03-12","2ra","2r","0","1","0","0"
"irf","a","0","364.1092 s613 zs 2006","b2781130a","420909576138","2006","2011-08-23","Book","a","Inside the Crips : life inside L.A.'s most notorious gang","inside the crips life inside l a s most notorious gang","364.1092 s613 zs 2006","","2018-08-08","2018-08-08","2ra,pra","2r,pr","0","1","0","0"
"irf","a","10","785 f452 zw","b1162940a","420907957948","1968","1992-03-22","Book","a","Arthur Fiedler; music for the millions; the story of the conductor of the Boston Pops Orchestra.","arthur fiedler music for the millions the story of the conductor of the boston pops orchestra","785 f452 zw","","2018-11-26","2018-11-26","3aa","3a","10","1","0","0"
"irf","a","0","741.56973 m374 2014","b3387764a","420910182772","2014","2018-10-19","Book","a","Wonder Woman : the complete dailies 1944-1945","wonder woman the complete dailies 1944 1945","741.56973 m374 2014","","2019-06-09","2019-06-09","3ra","3r","0","1","0","0"
"irf","a","0","973.917 f862","b1950331a","420908745339","1965","1992-03-22","Book","a","F.D.R. and the South.","f d r and the south","973.917 f862","","2019-04-19","2019-04-19","3ha","3h","0","1","0","0"
"irf","a","0","332.765 s923","b1750601a","420908545609","1999","1999-01-18","Book","a","What every credit card user needs to know : how to protect yourself and your money","what every credit card user needs to know how to protect yourself and your money","332.765 s923","","2019-05-11","2019-05-11","2ga","2g","0","1","0","0"
"irf","a","0","327.2097 i59 2011","b2877817a","420909672825","2011","2013-07-02","Book","a","Inside a U.S. embassy : diplomacy at work","inside a u s embassy diplomacy at work","327.2097 i59 2011","","2019-05-11","2019-05-11","2ra","2r","0","1","0","0"
"irf","a","0","929.92 s358 , 2003","b2066543a","420908861551","2003","2003-09-19","Book","a","Stars & stripes forever : the history, stories, and memories of our American flag","stars and stripes forever the history stories and memories of our american flag","929.92 s358 , 2003","","2018-10-18","2018-10-18","3ra","3r","0","1","0","0"
"irf","a","0","333.33076 qb277","b2498252a","420909293260","2005","2019-05-10","Book","a","Barron's real estate licensing exams.","barrons real estate licensing exams","333.33076 qb277","10th_ed. 2016","2019-04-15","2019-04-15","bha,dta,foa,haa,2ra,2ga,nwa,sha,sba,wwa","bh,dt,fo,ha,2r,2g,nw,sh,sb,ww","0","1","0","0"
"irf","a","0","286.133 k53 zk","b1250824a","420908045832","1981","1992-03-22","Book","a","Daddy King : an autobiography","daddy king an autobiography","286.133 k53 zk","","2019-02-23","2019-02-23","osa","os","0","1","0","0"
"irf","a","0","760.28 qc688","b2628494a","420909423502","2010","2010-11-30","Book","a","Printmaking : a contemporary perspective","printmaking a contemporary perspective","760.28 qc688","","2018-09-14","2018-09-14","3ra","3r","0","1","0","0"
"irf","a","0","373.1262 qg2951","b1950935a","420908745943","2002","2002-12-10","Book","a","GED basics.","ged basics","373.1262 qg2951","","2019-04-15","2019-04-15","ava","av","0","1","0","0"
"irf","a","10","016.789912 qe93","b2246261a","420909041269","1985","1992-03-22","Book","a","Living legends : the Everly Brothers : the history of the Everly Brothers on record : an illustrated discography","living legends the everly brothers the history of the everly brothers on record an illustrated discography","016.789912 qe93","","2019-06-29","2019-06-29","3aa,2ra","3a,2r","10","1","0","0"
"irf","a","","919.4504v645","b1641204a","420908436212","1993","1996-12-16","Book","a","Victoria.","victoria","919.4504v645","","2019-01-04","2019-01-04","2ra","2r","","1","0","0"
"irf","a","0","746.92074 fc842 zb 2014","b3005710a","420909800718","2014","2014-11-10","Book","a","Vogue & the Metropolitan Museum of Art Costume Institute : parties, exhibitions, people","vogue and the metropolitan museum of art costume institute parties exhibitions people","746.92074 fc842 zb 2014","","2019-03-29","2019-03-29","3ra,nra","3r,nr","0","1","0","0"
"irf","a","0","364.106097 m644 zm","b1916235a","420908711243","2003","2003-05-19","Book","a","Mafia wife : my story of love, murder, and madness","mafia wife my story of love murder and madness","364.106097 m644 zm","","2019-04-15","2019-04-15","bha","bh","0","1","0","0"
"irf","a","0","398.208996073 m682","b2776699a","420909571707","2007","2007-07-24","Book","a","African American folk healing","african american folk healing","398.208996073 m682","","2019-05-29","2019-05-29","dta,2ra,3la","dt,2r,3l","0","1","0","0"
"irf","a","0","332.4942 b365","b2408647a","420909203655","1935","1992-03-22","Book","a","British international gold movements and banking policy, 1881-1913.","british international gold movements and banking policy 1881 1913","332.4942 b365","","2018-12-15","2018-12-15","2ga","2g","0","1","0","0"
"irf","a","0","303.482 c748","b1854148a","420908649156","2002","2002-09-11","Book","a","Confounding the color line : the Indian-Black experience in North America","confounding the color line the indian black experience in north america","303.482 c748","","2019-04-30","2019-04-30","2ra","2r","0","1","0","0"
"irf","a","0","746.92 qj79","b2577079a","420909372087","2005","2006-08-30","Book","a","Fashion design","fashion design","746.92 qj79","","2019-03-28","2019-03-28","3ra","3r","0","1","0","0"
"irf","a","0","641.65642 qc774","b1476775a","420908271783","1994","2004-08-09","Book","a","Tomatoes : a country garden cookbook","tomatoes a country garden cookbook","641.65642 qc774","","2019-05-25","2019-05-25","3ra","3r","0","1","0","0"
"irf","a","10","309.1769 c371","b2306462a","420909101470","1963","1992-03-22","Book","a","Night comes to the Cumberlands, a biography of a depressed area.","night comes to the cumberlands a biography of a depressed area","309.1769 c371","","2019-04-05","2019-04-05","2ea","2e","10","1","0","0"
"irf","a","0","610.14 i56 , 1992","b1495636a","420908290644","1992","1993-06-18","Book","a","The consumer's guide to medical lingo","consumers guide to medical lingo","610.14 i56 , 1992","","2018-08-04","2018-08-04","2sa","2s","0","1","0","0"
"irf","a","0","880.8 e71","b1927703a","420908722711","1856","1992-03-22","Book","a","Erotici scriptores : Parthenius, Achilles Tatius, Longus, Xenophon Ephesius, Heliodorus, Chariton Aphrodisiensis, Antonius Diogenes, Iamblichus","erotici scriptores parthenius achilles tatius longus xenophon ephesius heliodorus chariton aphrodisiensis antonius diogenes iamblichus","880.8 e71","","2019-06-26","2019-06-26","3la","3l","0","1","0","0"
"irf","a","0","746.2 v777","b1669632a","420908464640","1971","1995-06-21","Book","a","Renaissance patterns for lace, embroidery and needlepoint : an unabridged facsimile of the 'Singuliers et nouveaux pourtraicts' of 1587","renaissance patterns for lace embroidery and needlepoint an unabridged facsimile of the singuliers et nouveaux pourtraicts of 1587","746.2 v777","","2019-05-17","2019-05-17","3aa","3a","0","1","0","0"
"irf","a","0","153.8 d294","b2291640a","420909086648","1985","1992-03-22","Book","a","Intrinsic motivation and self-determination in human behavior","intrinsic motivation and self determination in human behavior","153.8 d294","","2019-07-01","2019-07-01","2ea","2e","0","1","0","0"
"irf","a","0","625.261097 qe24 n 1997","b2673891a","420909468899","1997","2009-08-11","Book","a","Steam locomotives of the New York Central lines","steam locomotives of the new york central lines","625.261097 qe24 n 1997","v.02","2019-02-11","2019-02-11","2ra,3ra","2r,3r","0","1","0","0"
"irf","a","0","320.8 p14 xfo","b1673298a","420908468306","1945","1989-04-11","Book","a","The complete writings of Thomas Paine,","complete writings of thomas paine","320.8 p14 xfo","v.02","2019-05-13","2019-05-13","2ga","2g","0","1","0","0"
"irf","a","0","293 qm999 , 1998","b1865787a","420908660795","1998","1999-01-18","Book","a","Myths and legends of the Vikings","myths and legends of the vikings","293 qm999 , 1998","","2018-12-31","2018-12-31","2ra","2r","0","1","0","0"
"irf","a","10","759.9 qb74 le","b1016755a","420907811763","1959","1992-03-22","Book","a","Paintings.","paintings","759.9 qb74 le","","2019-02-23","2019-02-23","3aa","3a","10","1","0","0"
"irf","a","10","907.2 b894","b1974673a","420908769681","2002","2003-06-23","Book","a","Going to the sources : a guide to historical research and writing","going to the sources a guide to historical research and writing","907.2 b894","","2019-05-03","2019-05-03","3ha","3h","10","1","0","0"
"irf","a","0","623.746044 qk56","b1413174a","420908208182","1992","1994-10-12","Book","a","F-89 Scorpion : in detail & scale, the first nuclear armed jet interceptor","f 89 scorpion in detail and scale the first nuclear armed jet interceptor","623.746044 qk56","","2019-07-02","2019-07-02","2sa","2s","0","1","0","0"
"irf","a","0","502.3 e13 , 2004","b2388892a","420909183900","2004","2004-07-31","Book","a","Careers in science","careers in science","502.3 e13 , 2004","","2018-07-24","2018-07-24","2sa","2s","0","1","0","0"
"irf","a","0","613.69 o52","b1757702a","420908552710","1997","1998-10-09","Book","a","Outdoor survival skills","outdoor survival skills","613.69 o52","","2019-04-04","2019-04-04","2sa","2s","0","1","0","0"
"irf","a","0","791.430233 s423 zs","b1375680a","420908170688","1990","1991-06-10","Book","a","Scorsese on Scorsese","scorsese on scorsese","791.430233 s423 zs","","2019-05-09","2019-05-09","3aa","3a","0","1","0","0"
"irf","a","0","709.22 qc132 zd","b2715668a","420909510676","2006","2007-03-21","Book","a","Don't kiss me : the art of Claude Cahun and Marcel Moore","dont kiss me the art of claude cahun and marcel moore","709.22 qc132 zd","","2019-06-29","2019-06-29","3ra","3r","0","1","0","0"
"irf","a","0","016.78164 qg619 r","b1948822a","420908743830","1999","2019-03-21","Book","a","Goldmine record album price guide.","goldmine record album price guide","016.78164 qg619 r","10th_ed. 2019","2019-06-26","2019-06-26","ana,baa,cha,foa,gea,3aa,2ra","an,ba,ch,fo,ge,3a,2r","0","1","0","0"
"irf","a","0","133.43 h945","b1589866a","420908384874","1997","1998-01-14","Book","a","21st century Wicca : a young witch's guide to living the magical life","21st century wicca a young witchs guide to living the magical life","133.43 h945","","2017-06-21","2017-06-21","2ea","2e","0","1","0","0"
"irf","a","0","796.046 w821 2013","b3053941a","420909848949","2013","2015-07-03","Book","a","The Ultimate parkour & freerunning book : discover your possibilities","ultimate parkour and freerunning book discover your possibilities","796.046 w821 2013","","2019-05-30","2019-05-30","3ra","3r","0","1","0","0"
"irf","a","0","301.45196 c623 , 1999","b1963391a","420908758399","1999","2003-06-23","Book","a","Soul on ice","soul on ice","301.45196 c623 , 1999","","2019-04-14","2019-04-14","2ra","2r","0","1","0","0"
"irf","a","0","384 e37 2013","b2889166a","420909684174","2013","2013-10-31","Book","a","Blockbusters : hit-making, risk-taking, and the big business of entertainment","blockbusters hit making risk taking and the big business of entertainment","384 e37 2013","","2019-06-22","2019-06-22","2ra","2r","0","1","0","0"
"irf","a","0","155.916 b369","b2452106a","420909247114","1987","1990-07-11","Book","a","Codependent no more : how to stop controlling others and start caring for yourself","codependent no more how to stop controlling others and start caring for yourself","155.916 b369","","2019-01-23","2019-01-23","2ea,mma","2e,mm","0","1","0","0"
"irf","a","0","616.716 n428 , 2006","b2568833a","420909363841","2006","2006-07-13","Book","a","Strong women, strong bones : everything you need to know to prevent, treat, and beat osteoporosis","strong women strong bones everything you need to know to prevent treat and beat osteoporosis","616.716 n428 , 2006","","2018-11-02","2018-11-02","2sa","2s","0","1","0","0"
"irf","a","0","220.52 a","b1370792a","420908165800","1991","1992-03-20","Book","a","The Hebrew-Greek key study Bible : King James Version, Zodhaites' original and complete system of Bible study","hebrew greek key study bible king james version zodhaites original and complete system of bible study","220.52 a","","2019-05-09","2019-05-09","2ea","2e","0","1","0","0"
"irf","a","0","917.94210453 s468","b1241654a","420908036662","1989","1990-10-09","Book","a","The Mt. Shasta book : a guide to hiking, climbing, skiing, and exploring the mountain and surrounding area","mt shasta book a guide to hiking climbing skiing and exploring the mountain and surrounding area","917.94210453 s468","","2019-06-10","2019-06-10","3ha","3h","0","1","0","0"
"irf","c","161","m2.14 fg562","b1881253a","420908676261","1997","2002-04-04","Music Score","c","The glory of Broadway. Showstoppers forever.","glory of broadway showstoppers forever","m2.14 fg562","","2019-03-05","2019-03-05","3aa,3ra","3a,3r","161","1","0","0"
"irf","a","0","918.17 b653","b1797500a","420908592508","1960","1992-03-22","Book","a","Chavante; an expedition to the tribes of the Mato Grosso.","chavante an expedition to the tribes of the mato grosso","918.17 b653","","2019-06-04","2019-06-04","3ha","3h","0","1","0","0"
"irf","a","0","746.4222 b311","b1924541a","420908719549","1973","1999-12-02","Book","a","The basic book of macramé and tatting","basic book of macramé and tatting","746.4222 b311","","2019-07-05","2019-07-05","3aa","3a","0","1","0","0"
"irf","a","0","751.422 qs996 zo","b1992906a","420908787914","2002","2003-01-23","Book","a","Zoltan Szabo's 70 favorite watercolor techniques.","zoltan szabos 70 favorite watercolor techniques","751.422 qs996 zo","","2019-02-25","2019-02-25","3ra","3r","0","1","0","0"
"irf","a","10","594.147702 qs862 , 1968","b1411722a","420908206730","1968","1992-03-22","Book","a","The shell; five hundred million years of inspired design","shell five hundred million years of inspired design","594.147702 qs862 , 1968","","2019-04-04","2019-04-04","2sa","2s","10","1","0","0"
"irf","a","0","641.71 p558 , 2002","b1780497a","420908575505","2002","2004-08-09","Book","a","The ultimate rotisserie cookbook : 300 mouthwatering recipes for making the most of your rotisserie oven","ultimate rotisserie cookbook 300 mouthwatering recipes for making the most of your rotisserie oven","641.71 p558 , 2002","","2018-09-24","2018-09-24","3ra","3r","0","1","0","0"
"irf","a","0","615.892 qh449 2007","b3001272a","420909796280","2007","2014-10-21","Book","a","Acupressure taping : the practice of acutaping for chronic pain and injuries","acupressure taping the practice of acutaping for chronic pain and injuries","615.892 qh449 2007","","2019-02-11","2019-02-11","cha,3ra","ch,3r","0","1","0","0"
"irf","a","0","305.800973 o77 2018","b3319487a","420910114495","2018","2018-02-08","Book","a","An African American and Latinx history of the United States","african american and latinx history of the united states","305.800973 o77 2018","","2019-05-01","2019-05-01","2ra","2r","0","1","0","0"
"irf","a","0","646 59.1","b1161757a","420907956765","1959","1992-03-22","Book","a","The dress doctor","dress doctor","646 59.1","","2019-02-06","2019-02-06","2sa","2s","0","1","0","0"
"irf","a","10","812.52 w553 h","b2112767a","420908907775","1981","1992-03-22","Book","a","The house of mirth : the play of the novel","house of mirth the play of the novel","812.52 w553 h","","2019-06-09","2019-06-09","3la","3l","10","1","0","0"
"irf","a","0","270.2092 p314 zpce2 , 1998","b1686184a","420908481192","1998","1998-06-08","Book","a","The confession of St. Patrick and Letter to Coroticus","confession of st patrick and letter to coroticus","270.2092 p314 zpce2 , 1998","","2019-04-10","2019-04-10","2ra","2r","0","1","0","0"
"irf","a","0","616.975 s655 2015","b3065627a","420909860635","2015","2015-07-17","Book","a","Another person's poison : a history of food allergy","another persons poison a history of food allergy","616.975 s655 2015","","2019-05-01","2019-05-01","3ra","3r","0","1","0","0"
"irf","a","0","362.76092 k61 zk","b2585027a","420909380035","2009","2010-09-17","Book","a","The white house boys : an American tragedy","white house boys an american tragedy","362.76092 k61 zk","","2018-12-20","2018-12-20","2ra","2r","0","1","0","0"
"irf","b","0","363.179909 t531 zw","b2213030a","420909008038","2004","2004-03-18","Government Document","b","Three Mile Island : a nuclear crisis in historical perspective","three mile island a nuclear crisis in historical perspective","363.179909 t531 zw","","2019-05-10","2019-05-10","2ra,4da","2r,4d","0","1","0","0"
"irf","a","10","621.02 qm483","b3239471a","420910034479","2017","2018-12-11","Book","a","Mechanical costs with RSMeans data.","mechanical costs with rsmeans data","621.02 qm483","41st_ed. 2018","2018-12-12","2018-12-12","2ra,2sa","2r,2s","10","1","0","0"
"irf","a","0","641.331 q81","b2281196a","420909076204","1981","2004-08-09","Book","a","Whole grains : grow, harvest, and cook your own","whole grains grow harvest and cook your own","641.331 q81","","2019-05-13","2019-05-13","2sa","2s","0","1","0","0"
"irf","a","0","582.130941 s428 , 2000","b1946295a","420908741303","2000","2001-03-05","Book","a","Scottish wild flowers","scottish wild flowers","582.130941 s428 , 2000","","2019-07-06","2019-07-06","2sa","2s","0","1","0","0"
"irf","a","0","173.5 l434","b2064485a","420908859493","1950","1992-03-22","Book","a","Teen, a book for parents.","teen a book for parents","173.5 l434","","2019-01-26","2019-01-26","2ea","2e","0","1","0","0"
"irf","a","0","811.54 n8561l 1995","b2795341a","420909590349","1995","2013-03-26","Book","a","Little girls in church","little girls in church","811.54 n8561l 1995","","2018-11-16","2018-11-16","3la","3l","0","1","0","0"
"irf","a","0","613.96 a546 1997","b1512835a","420908307843","1997","1998-03-20","Book","a","Sex tips for straight women from a gay man","sex tips for straight women from a gay man","613.96 a546 1997","","2019-04-14","2019-04-14","3ra","3r","0","1","0","0"
"irf","a","0","658.408 g761 2015","b3212445a","420910007453","2015","2016-10-11","Book","a","The social profit handbook : the essential guide to setting goals, assessing outcomes, and achieving success for mission-driven organizations","social profit handbook the essential guide to setting goals assessing outcomes and achieving success for mission driven organizations","658.408 g761 2015","","2019-05-08","2019-05-08","2ra","2r","0","1","0","0"
"irf","a","0","361.3076 qa861 2014","b2974849a","420909769857","2014","2014-07-03","Book","a","ASWB bachelor exam study guide.","aswb bachelor exam study guide","361.3076 qa861 2014","","2019-04-20","2019-04-20","2ra","2r","0","1","0","0"
"irf","a","0","704.0874 qm959 2014","b2963085a","420909758093","2014","2014-04-14","Book","a","Drawing autism","drawing autism","704.0874 qm959 2014","","2019-04-08","2019-04-08","3ra","3r","0","1","0","0"
"irf","c","157","m6.2165 fd612 2016","b3161272a","420909956280","2016","2016-04-05","Music Score","c","Disney : 12 favorites reimagined with a jazz flair.","disney 12 favorites reimagined with a jazz flair","m6.2165 fd612 2016","","2019-06-22","2019-06-22","3ra","3r","157","1","0","0"
"irf","a","0","781.640266 qg619","b1888292a","420908683300","1998","2016-04-18","Book","a","Goldmine standard catalog of American records.","goldmine standard catalog of american records","781.640266 qg619","2016","2019-01-16","2019-01-16","baa,dpa,3aa,2ra","ba,dp,3a,2r","0","1","0","0"
"irf","a","0","759.4 qg268 zsh","b2762853a","420909557861","2004","2007-11-06","Book","a","Gauguin Tahiti","gauguin tahiti","759.4 qg268 zsh","","2019-02-24","2019-02-24","3ra","3r","0","1","0","0"
"irf","a","0","070.502 p745","b1179431a","420907974439","1986","2018-10-15","Book","a","Poet's market.","poets market","070.502 p745","32nd_ed. 2019","2019-05-09","2019-05-09","2ra,3la","2r,3l","0","1","0","0"
"irf","a","0","220.5208 a","b1771677a","420908566685","1999","2000-03-10","Book","a","Holy Bible : African American Jubilee edition : Contemporary English Version.","holy bible african american jubilee edition contemporary english version","220.5208 a","","2019-05-15","2019-05-15","2ra,2ea,wha","2r,2e,wh","0","1","0","0"
"irf","a","0","364.152309 f755 zg","b2785768a","420909580776","2006","2010-04-01","Book","a","Someone has to die tonight","someone has to die tonight","364.152309 f755 zg","","2019-05-20","2019-05-20","2ra","2r","0","1","0","0"
"irf","a","0","791.43028 qt287 zdu","b2678051a","420909473059","2006","2007-01-18","Book","a","Shirley Temple : a pictorial history of the world's greatest child star","shirley temple a pictorial history of the worlds greatest child star","791.43028 qt287 zdu","","2019-01-25","2019-01-25","3ra","3r","0","1","0","0"
"irf","a","0","770.232 c899 , 2003","b2462402a","420909257410","2003","2005-01-18","Book","a","Starting your career as a freelance photographer","starting your career as a freelance photographer","770.232 c899 , 2003","","2019-01-13","2019-01-13","3aa","3a","0","1","0","0"
"irf","a","0","914.690444 k18","b1959097a","420908754105","1998","2010-03-23","Book","a","Karen Brown's Portugal.","karen browns portugal","914.690444 k18","2002","2019-03-04","2019-03-04","3ra","3r","0","1","0","0"
"irf","a","0","363.705 t463 , 1995","b1661776a","420908456784","1995","1995-05-26","Book","a","Ecological identity : becoming a reflective environmentalist","ecological identity becoming a reflective environmentalist","363.705 t463 , 1995","","2018-08-23","2018-08-23","2ra","2r","0","1","0","0"
"irf","a","0","597.3 s813","b1730859a","420908525867","1992","1998-04-03","Book","a","Sharks of the world","sharks of the world","597.3 s813","","2019-05-19","2019-05-19","2sa","2s","0","1","0","0"
"irf","a","0","741.6023 a546 2016","b3122047a","420909917055","2016","2016-02-05","Book","a","Stand out : design a personal brand, build a killer portfolio, find a great design job","stand out design a personal brand build a killer portfolio find a great design job","741.6023 a546 2016","","2019-01-29","2019-01-29","2ra","2r","0","1","0","0"
"irf","a","0","909 fh6733","b2524302a","420909319310","2007","2007-10-16","Book","a","History : the definitive visual guide : from the dawn of civilization to the present day","history the definitive visual guide from the dawn of civilization to the present day","909 fh6733","","2019-03-12","2019-03-12","coa,gha","co,gh","0","1","0","0"
"irf","a","0","650.14024 82.1","b1035121a","420907830129","1982","1992-03-22","Book","a","Making the most of your first job","making the most of your first job","650.14024 82.1","","2019-06-11","2019-06-11","2ga","2g","0","1","0","0"
"irf","a","0","641.56318 qr165","b2789315a","420909584323","2007","2011-09-22","Book","a","Healing foods : cooking for celiacs, colitis, Crohn's and IBS : over 200 recipes for the Specific Carbohydrate Diet","healing foods cooking for celiacs colitis crohns and ibs over 200 recipes for the specific carbohydrate diet","641.56318 qr165","","2019-06-11","2019-06-11","3ra,wya","3r,wy","0","1","0","0"
"irf","a","10","621.02 qm483","b3239471a","420910034479","2017","2018-12-11","Book","a","Mechanical costs with RSMeans data.","mechanical costs with rsmeans data","621.02 qm483","40th_ed. 2017","2018-12-12","2018-12-12","2ra,2sa","2r,2s","10","1","0","0"
"irf","a","0","133.32424 r399 , 2000","b1836129a","420908631137","2000","2000-11-27","Book","a","Tarot spells","tarot spells","133.32424 r399 , 2000","","2019-03-22","2019-03-22","2ra","2r","0","1","0","0"
"irf","a","0","683.422 qm972 c 2014","b3014307a","420909809315","2014","2014-12-15","Book","a","Gun digest guide to customizing your AR-15","gun digest guide to customizing your ar 15","683.422 qm972 c 2014","","2019-04-11","2019-04-11","3ra","3r","0","1","0","0"
"irf","a","0","914.4904 qc843 e","b1186453a","420907981461","999","2016-02-03","Book","a","French Riviera, Côte d'Azur.","french riviera côte dazur","914.4904 qc843 e","2013","2019-04-07","2019-04-07","2ra,3ra","2r,3r","0","1","0","0"
"irf","a","0","373.1262 qr288","b2599107a","420909394115","2005","2005-04-28","Book","a","Barron's how to prepare for the OGT, Ohio graduation test in mathematics","barrons how to prepare for the ogt ohio graduation test in mathematics","373.1262 qr288","","2019-04-11","2019-04-11","2ra,2ea","2r,2e","0","1","0","0"
"irf","a","0","702.3 h823","b1165770a","420907960778","1975","1992-03-22","Book","a","Art careers","art careers","702.3 h823","","2019-03-29","2019-03-29","3aa,1lj","3a,1l","0","1","0","0"
"irf","a","0","332.722 r323 2018","b3322540a","420910117548","2018","2018-02-19","Book","a","Mortgages 101 : quick answers to over 250 critical questions about your home loan","mortgages 101 quick answers to over 250 critical questions about your home loan","332.722 r323 2018","","2019-05-29","2019-05-29","2ra","2r","0","1","0","0"
"irf","a","0","231 g793 2018","b3394090a","420910189098","2018","2018-11-06","Book","a","Not God enough : why your small God leads to big problems","not god enough why your small god leads to big problems","231 g793 2018","","2019-05-13","2019-05-13","2ra","2r","0","1","0","0"
"irf","a","0","613.04244 p965","b2786191a","420909581199","2010","2010-04-08","Book","a","Look better naked!","look better naked","613.04244 p965","","2019-04-23","2019-04-23","ana,pla","an,pl","0","1","0","0"
"irf","a","10","364.152309 d131 zd","b1290177a","420908085185","1994","1994-04-27","Book","a","A father's story","fathers story","364.152309 d131 zd","","2019-07-06","2019-07-06","2ea,nwa","2e,nw","10","1","0","0"
"irf","a","0","917.480444 l729","b2642902a","420909437910","2006","2006-11-15","Book","a","The journey through hallowed ground : the official guide to where America happened from Gettysburg to Monticello","journey through hallowed ground the official guide to where america happened from gettysburg to monticello","917.480444 l729","","2019-06-26","2019-06-26","3ra","3r","0","1","0","0"
"irf","c","157","m6.21546 ft111","b1562197a","420908357205","1994","1995-03-17","Music Score","c","TV themes : piano solos.","tv themes piano solos","m6.21546 ft111","","2019-06-25","2019-06-25","3aa","3a","157","1","0","0"
"irf","a","0","635.9092 qm383 , 1994","b1416707a","420908211715","1994","1994-10-17","Book","a","Tasha Tudor's garden","tasha tudors garden","635.9092 qm383 , 1994","","2018-12-08","2018-12-08","3ra","3r","0","1","0","0"
"irf","a","0","523.1 k13","b2523531a","420909318539","2005","2005-02-03","Book","a","Parallel worlds : a journey through creation, higher dimensions, and the future of the cosmos","parallel worlds a journey through creation higher dimensions and the future of the cosmos","523.1 k13","","2018-03-20","2018-03-20","2ra","2r","0","1","0","0"
"irf","c","157","m7.2 qg786 2015","b3182429a","420909977437","2015","2016-06-13","Music Score","c","Great movie themes : violin.","great movie themes violin","m7.2 qg786 2015","","2019-07-03","2019-07-03","3ra","3r","157","1","0","0"
"irf","a","2","745.6199 r112","b1117988a","420907912996","1987","1992-03-22","Book","a","Aleph-bet","aleph bet","745.6199 r112","","2019-07-05","2019-07-05","3aa,1cj","3a,1c","2","1","0","0"
"irf","a","0","914.20485 d6655","b1204768a","420907999776","1980","1992-03-22","Book","a","Dollar wise guide to England and Scotland.","dollar wise guide to england and scotland","914.20485 d6655","","2019-04-24","2019-04-24","3ha","3h","0","1","0","0"
"irf","a","0","346.730666 b985","b2585158a","420909380166","2006","2006-08-08","Book","a","The Sarbanes-Oxley debacle : what we've learned; how to fix It","sarbanes oxley debacle what weve learned how to fix it","346.730666 b985","","2019-05-07","2019-05-07","2ra","2r","0","1","0","0"
"irf","a","0","973.926092 c323 zb, 1997","b1562800a","420908357808","1997","1997-03-27","Book","a","Jimmy Carter : a comprehensive biography from Plains to postpresidency","jimmy carter a comprehensive biography from plains to postpresidency","973.926092 c323 zb, 1997","","2019-03-23","2019-03-23","3ha","3h","0","1","0","0"
"irf","a","0","616.8914 83.4","b2080289a","420908875297","1983","1992-03-22","Book","a","Awakening the heart : East/West approaches to psychotherapy and the healing relationship","awakening the heart east west approaches to psychotherapy and the healing relationship","616.8914 83.4","","2019-01-24","2019-01-24","2sa","2s","0","1","0","0"
"irf","a","0","663 19","b1658414a","420908453422","1919","1996-09-26","Book","a","Alcohol, its production, properties, chemistry, and industrial applications; with chapters on methyl alcohol, fusel oil, and spirituous beverages,","alcohol its production properties chemistry and industrial applications with chapters on methyl alcohol fusel oil and spirituous beverages","663 19","","2018-12-13","2018-12-13","2sa","2s","0","1","0","0"
"irf","a","0","305.896073 b181 , 1995","b1630724a","420908425732","1995","1995-05-16","Book","a","The fire next time","fire next time","305.896073 b181 , 1995","","2019-06-10","2019-06-10","2ea,wya","2e,wy","0","1","0","0"
"irf","a","0","616.89 w228 2012","b2794763a","420909589771","2012","2012-08-16","Book","a","Nutrient power : [heal your biochemistry and heal your brain]","nutrient power heal your biochemistry and heal your brain","616.89 w228 2012","","2019-06-03","2019-06-03","ana,gra,3ra","an,gr,3r","0","1","0","0"
"irf","a","0","335.430972 c355 xek","b1911229a","420908706237","2002","2003-05-14","Book","a","War, racism and economic injustice : the global ravages of capitalism","war racism and economic injustice the global ravages of capitalism","335.430972 c355 xek","","2019-05-06","2019-05-06","2ra","2r","0","1","0","0"
"irf","a","0","248.4 g8741a 2013","b2923460a","420909718468","2013","2013-12-10","Book","a","Altar ego : becoming who God says you are","altar ego becoming who god says you are","248.4 g8741a 2013","","2019-05-30","2019-05-30","2ra","2r","0","1","0","0"
"irf","a","0","225.5208 a","b1982029a","420908777037","1987","2001-04-03","Book","a","The amplified Bible : containing the amplified New Testament.","amplified bible containing the amplified new testament","225.5208 a","","2019-05-22","2019-05-22","2ea","2e","0","1","0","0"
"irf","a","0","915.694045 i854 , 1973","b1812275a","420908607283","1973","2002-11-26","Book","a","Israel: a Holiday magazine travel guide","israel a holiday magazine travel guide","915.694045 i854 , 1973","","2019-03-06","2019-03-06","3ha","3h","0","1","0","0"
"irf","a","0","812.54 l237 w","b1089358a","420907884366","1964","1992-03-22","Book","a","The wall : a drama in three acts","wall a drama in three acts","812.54 l237 w","","2019-04-27","2019-04-27","3la","3l","0","1","0","0"
"irf","a","0","629.2872 qr397","b2542406a","420909337414","2006","2010-07-28","Book","a","The car book","car book","629.2872 qr397","","2019-06-04","2019-06-04","gra,3ra,nwa","gr,3r,nw","0","1","0","0"
"irf","-","0","248 t757","b2162152a","420908957160","1948","1992-03-22","Undefined","-","The pursuit of God","pursuit of god","248 t757","","2018-12-19","2018-12-19","2ea","2e","0","1","0","0"
"irf","a","0","917.2930454 d6713","b1792038a","420908587046","2000","2017-12-06","Book","a","The Rough guide to the Dominican Republic","rough guide to the dominican republic","917.2930454 d6713","1st_ed. 2000","2019-03-29","2019-03-29","cva,3ra","cv,3r","0","1","0","0"
"irf","a","0","782.42164 fn714 zd","b1868125a","420908663133","2000","2000-05-24","Book","a","Ninety eight Degrees","ninety eight degrees","782.42164 fn714 zd","","2019-06-19","2019-06-19","3aa","3a","0","1","0","0"
"irf","a","0","973.92902 f829 l 2004a","b3286491a","420910081499","2004","2017-06-16","Book","a","Lies : and the lying liars who tell them : a fair and balanced look at the Right","lies and the lying liars who tell them a fair and balanced look at the right","973.92902 f829 l 2004a","","2019-05-15","2019-05-15","3ra,pla,sma","3r,pl,sm","0","1","0","0"
"irf","a","0","303.4 z82 2018","b3322514a","420910117522","2018","2018-02-16","Book","a","The courage of hopelessness : a year of acting dangerously","courage of hopelessness a year of acting dangerously","303.4 z82 2018","","2019-04-20","2019-04-20","2ra","2r","0","1","0","0"
"irf","a","0","629.2872 qc554","b2526035a","420909321043","2004","2004-12-06","Book","a","Clueless about cars : an easy guide to car maintenance and repair","clueless about cars an easy guide to car maintenance and repair","629.2872 qc554","","2019-04-26","2019-04-26","3ra,2kt","3r,2k","0","1","0","0"
"irf","a","0","811.54 f357fe 2017","b3336580a","420910131588","2017","2018-03-02","Book","a","Ferlinghetti's greatest poems","ferlinghettis greatest poems","811.54 f357fe 2017","","2019-06-17","2019-06-17","2ra","2r","0","1","0","0"
"irf","a","0","798.8 qc785","b2495195a","420909290203","1977","1992-03-22","Book","a","The world of sled dogs : from Siberia to sport racing","world of sled dogs from siberia to sport racing","798.8 qc785","","2018-12-26","2018-12-26","2ea","2e","0","1","0","0"
"irf","a","0","810.809287 c855","b1999246a","420908794254","2003","2003-01-27","Book","a","Couldn't keep it to myself : testimonies from our imprisoned sisters","couldnt keep it to myself testimonies from our imprisoned sisters","810.809287 c855","","2019-06-02","2019-06-02","3la,wha","3l,wh","0","1","0","0"
"irf","a","0","597.9092 i72 zj, 2001","b1951171a","420908746179","2001","2001-11-01","Book","a","The crocodile hunter : the incredible life and adventures of Steve and Terri Irwin","crocodile hunter the incredible life and adventures of steve and terri irwin","597.9092 i72 zj, 2001","","2019-03-13","2019-03-13","2ra","2r","0","1","0","0"
"irf","a","0","901 i13 m","b1071763a","420907866771","1958","1992-03-22","Book","a","The Muqaddimah; an introduction to history,","muqaddimah an introduction to history","901 i13 m","v.01","2019-02-02","2019-02-02","3ha","3h","0","1","0","0"
"irf","a","0","943.155 s394 2015","b2843241a","420909638249","2015","2014-09-09","Book","a","Berlin","berlin","943.155 s394 2015","","2019-06-02","2019-06-02","dta,3ra,wya","dt,3r,wy","0","1","0","0"
"irf","a","46","977.103092 z47 zz 1885","b1187337a","420907982345","1885","1992-03-22","Book","a","Diary of David Zeisberger : a Moravian missionary among the Indians of Ohio","diary of david zeisberger a moravian missionary among the indians of ohio","977.103092 z47 zz 1885","v.01","2018-08-21","2018-08-21","3ca,3ha","3c,3h","46","1","0","0"
"irf","a","0","468.24 c829","b1879695a","420908674703","1990","2002-04-10","Book","a","Conversational Spanish in 20 lessons, illustrated : intended for self-study and for use in schools : with a simplified system of phonetic pronunciation","conversational spanish in 20 lessons illustrated intended for self study and for use in schools with a simplified system of phonetic pronunciation","468.24 c829","","2019-01-30","2019-01-30","wha","wh","0","1","0","0"
"irf","a","0","598.072347 b974","b1815780a","420908610788","1999","2002-01-30","Book","a","Audubon backyard birdwatcher : birdfeeders & bird gardens","audubon backyard birdwatcher birdfeeders and bird gardens","598.072347 b974","","2019-04-24","2019-04-24","2ra,sma","2r,sm","0","1","0","0"
"irf","a","0","378.3025 qd5984af","b1616386a","420908411394","1999","2014-05-02","Book","a","Financial aid for African Americans.","financial aid for african americans","378.3025 qd5984af","2014/16","2018-06-24","2018-06-24","ava,2ra,2ea,2tt,sha","av,2r,2e,2t,sh","0","1","0","0"
"irf","a","0","363.289 qt779","b1532490a","420908327498","1995","1996-11-18","Book","a","Introduction to private investigation : essential knowledge and procedures for the private investigator","introduction to private investigation essential knowledge and procedures for the private investigator","363.289 qt779","","2019-04-30","2019-04-30","2ga","2g","0","1","0","0"
"irf","a","0","808.02 s819","b1513614a","420908308622","1995","1996-01-31","Book","a","Stein on writing : a master editor of some of the most successful writers of our century shares his craft techniques and strategies","stein on writing a master editor of some of the most successful writers of our century shares his craft techniques and strategies","808.02 s819","","2019-03-04","2019-03-04","3ra","3r","0","1","0","0"
"irf","a","0","016.88 s64","b1392875a","420908187883","1930","1989-04-05","Book","a","The classics in translation, an annotated guide to the best translations of the Greek and Latin classics into English,","classics in translation an annotated guide to the best translations of the greek and latin classics into english","016.88 s64","","2019-02-04","2019-02-04","3la","3l","0","1","0","0"
"irf","a","0","813.54 s165zben 2018","b3330665a","420910125673","2018","2018-04-09","Book","a","J.D. Salinger's The catcher in the rye : a cultural history of the rebel novel","j d salingers the catcher in the rye a cultural history of the rebel novel","813.54 s165zben 2018","","2019-07-03","2019-07-03","2ra,3ra","2r,3r","0","1","0","0"
"irf","a","0","782.421649 fh6672","b2555264a","420909350272","2003","2005-02-15","Book","a","Hip-hop hits : [rap, rhyme and flow along with 6 chart-topping tracks].","hip hop hits rap rhyme and flow along with 6 chart topping tracks","782.421649 fh6672","","2019-05-03","2019-05-03","3ra","3r","0","1","0","0"
"irf","a","0","796.812 w927 zp 2015","b3051665a","420909846673","2015","2015-06-24","Book","a","WWE ultimate superstar guide","wwe ultimate superstar guide","796.812 w927 zp 2015","","2019-07-03","2019-07-03","mda,3ra,wwa","md,3r,ww","0","1","0","0"
"irf","a","0","939.8 b234 ne, 2007","b2725966a","420909520974","2007","2007-04-09","Book","a","The day of the barbarians : the battle that led to the fall of the Roman Empire","day of the barbarians the battle that led to the fall of the roman empire","939.8 b234 ne, 2007","","2019-01-07","2019-01-07","3ra,nsa","3r,ns","0","1","0","0"
"irf","a","0","158.1 m6211 2014","b2913642a","420909708650","2014","2014-01-03","Book","a","The power of you : how to live your authentic, exciting, joy-filled life now!","power of you how to live your authentic exciting joy filled life now","158.1 m6211 2014","","2019-06-16","2019-06-16","baa,cha,gra,maa,2ra,wha","ba,ch,gr,ma,2r,wh","0","1","0","0"
"irf","a","0","798.4 h885","b2775775a","420909570783","2011","2011-08-11","Book","a","Horse racing's most wanted : the top 10 book of derby delights, frenetic finishes, and backstretch banter","horse racings most wanted the top 10 book of derby delights frenetic finishes and backstretch banter","798.4 h885","","2019-04-23","2019-04-23","3ra","3r","0","1","0","0"
"irf","a","0","972.974 fj61","b1804235a","420908599243","1999","1999-04-29","Book","a","Antigua and Barbuda : a photographic journey","antigua and barbuda a photographic journey","972.974 fj61","","2019-04-05","2019-04-05","3ra","3r","0","1","0","0"
"irf","a","0","812.54 r313 xd, 1986","b1083476a","420907878484","1986","1992-03-22","Book","a","Desperadoes ; Throwing smoke ; Keyhole lover : three one act plays","desperadoes throwing smoke keyhole lover three one act plays","812.54 r313 xd, 1986","","2018-12-08","2018-12-08","3ra","3r","0","1","0","0"
"irf","a","0","823.912 t649 zju 2017","b3300952a","420910095960","2017","2017-10-12","Book","a","Flora of Middle-Earth : plants of J.R.R. Tolkien's legendarium","flora of middle earth plants of j r r tolkiens legendarium","823.912 t649 zju 2017","","2019-05-08","2019-05-08","3ra","3r","0","1","0","0"
"irf","a","","917.13541044t6862","b2064028a","420908859036","2001","2007-08-14","Book","a","Toronto.","toronto","917.13541044t6862","","2019-05-28","2019-05-28","2ra","2r","","1","0","0"
"irf","a","10","741.944 qm9423","b2108694a","420908903702","1978","1992-03-22","Book","a","Drawings of Mucha : 70 works","drawings of mucha 70 works","741.944 qm9423","","2019-05-28","2019-05-28","3aa","3a","10","1","0","0"
"irf","a","0","796.510974 c487 , 1989","b1184329a","420907979337","1989","1990-09-10","Book","a","Backpacker magazine's guide to the Appalachian Trail","backpacker magazines guide to the appalachian trail","796.510974 c487 , 1989","","2018-08-27","2018-08-27","2ea","2e","0","1","0","0"
"irf","a","0","235.4 s642","b2126079a","420908921087","2003","2003-11-21","Book","a","Spiritual house cleaning","spiritual house cleaning","235.4 s642","","2019-05-17","2019-05-17","2ra","2r","0","1","0","0"
"irf","a","0","796.6092 t244 zk 2014","b3094708a","420909889716","2014","2015-09-23","Book","a","Major Taylor : the inspiring story of a black cyclist and the men who helped him achieve worldwide fame","major taylor the inspiring story of a black cyclist and the men who helped him achieve worldwide fame","796.6092 t244 zk 2014","","2019-05-04","2019-05-04","3ra","3r","0","1","0","0"
"irf","a","0","363.259523 n532 zh, 2005","b2621672a","420909416680","2005","2005-07-25","Book","a","The restless sleep : inside New York City's Cold Case Squad","restless sleep inside new york citys cold case squad","363.259523 n532 zh, 2005","","2019-04-17","2019-04-17","2ra","2r","0","1","0","0"
"irf","a","0","941.0099 a826 , 1998","b1827669a","420908622677","1998","1998-11-06","Book","a","The mammoth book of British kings & queens : the complete biographical encyclopedia of the kings and queens of Britain","mammoth book of british kings and queens the complete biographical encyclopedia of the kings and queens of britain","941.0099 a826 , 1998","","2019-06-28","2019-06-28","dpa,3ha","dp,3h","0","1","0","0"
"irf","a","10","737.4075 o32","b1694714a","420908489722","1997","2013-06-10","Book","a","The official ... price guide to world coins.","official price guide to world coins","737.4075 o32","","2015-08-20","2015-08-20","3aa,2ra","3a,2r","10","1","0","0"
"irf","a","0","468.3421 b992","b2640430a","420909435438","2009","2009-07-09","Book","a","Spanish beginner","spanish beginner","468.3421 b992","","2019-01-30","2019-01-30","2ra","2r","0","1","0","0"
"irf","a","0","616.69 80","b2183327a","420908978335","1980","1992-03-22","Book","a","How to get pregnant","how to get pregnant","616.69 80","","2019-05-22","2019-05-22","2sa","2s","0","1","0","0"
"irf","a","0","305.896073 a584 za, 1993","b1765488a","420908560496","1993","2003-02-05","Book","a","I know why the caged bird sings","i know why the caged bird sings","305.896073 a584 za, 1993","","2019-03-20","2019-03-20","gha,nra","gh,nr","0","1","0","0"
"irf","a","0","636.80887 r154","b2376055a","420909171063","2004","2004-08-11","Book","a","Kittens for dummies","kittens for dummies","636.80887 r154","","2019-06-11","2019-06-11","3ra,pla","3r,pl","0","1","0","0"
"irf","a","0","271.5302 c579 zc","b2352742a","420909147750","1964","1992-03-22","Book","a","With God in Russia","with god in russia","271.5302 c579 zc","","2019-03-29","2019-03-29","2ea","2e","0","1","0","0"
"irf","a","0","818.5409 h355 zh2 , 2002","b1928174a","420908723182","2002","2002-11-04","Book","a","Between grass and sky : where I live and work","between grass and sky where i live and work","818.5409 h355 zh2 , 2002","","2019-04-02","2019-04-02","3ra","3r","0","1","0","0"
"irf","a","0","491.49 h982","b1782639a","420908577647","1999","1999-09-10","Book","a","Nepali","nepali","491.49 h982","","2019-05-11","2019-05-11","3la","3l","0","1","0","0"
"irf","a","0","658.406 c778","b2694667a","420909489675","2005","2007-02-07","Book","a","Appreciative inquiry : a positive revolution in change","appreciative inquiry a positive revolution in change","658.406 c778","","2019-05-06","2019-05-06","3ra","3r","0","1","0","0"
"irf","a","0","299.94 m818 2018","b3362120a","420910157128","2018","2018-07-13","Book","a","Traditional Wicca : a seeker's guide","traditional wicca a seekers guide","299.94 m818 2018","","2019-04-11","2019-04-11","2ra","2r","0","1","0","0"
"irf","a","0","005.57 m626 uzb3 2010","b2654527a","420909449535","2010","2010-12-20","Book","a","Microsoft Outlook 2010 plain & simple","microsoft outlook 2010 plain and simple","005.57 m626 uzb3 2010","","2019-03-12","2019-03-12","hpa,2ra","hp,2r","0","1","0","0"
"irf","a","0","154.63 d923","b2540618a","420909335626","2004","2005-03-11","Book","a","Dream finder : discovering the divine through your dreams","dream finder discovering the divine through your dreams","154.63 d923","","2014-09-05","2014-09-05","2ra","2r","0","1","0","0"
"irf","a","0","635 qs439","b2574726a","420909369734","2004","2008-02-06","Book","a","Delia's kitchen garden : a beginner's guide to growing and cooking fruit and vegetables","delias kitchen garden a beginners guide to growing and cooking fruit and vegetables","635 qs439","","2019-04-12","2019-04-12","3ra","3r","0","1","0","0"
"irf","a","0","220.1 p119","b1921967a","420908716975","1999","2001-07-27","Book","a","Truth & power : the place of Scripture in the Christian life","truth and power the place of scripture in the christian life","220.1 p119","","2019-06-03","2019-06-03","2ra","2r","0","1","0","0"
"irf","c","157","m6.21894 qt268 xd 1987","b1458732a","420908253740","1987","1991-09-18","Music Score","c","The 36 fantasias for keyboard","36 fantasias for keyboard","m6.21894 qt268 xd 1987","","2018-07-18","2018-07-18","3ra","3r","157","1","0","0"
"irf","a","0","940.53180944 m361 , 1981","b2268938a","420909063946","1981","1992-03-22","Book","a","Vichy France and the Jews","vichy france and the jews","940.53180944 m361 , 1981","","2019-01-29","2019-01-29","3ha","3h","0","1","0","0"
"irf","a","0","651.37 q82 .1","b2352139a","420909147147","1982","1992-03-22","Book","a","Beginning office worker","beginning office worker","651.37 q82 .1","","2019-03-30","2019-03-30","2ga","2g","0","1","0","0"
"irf","a","0","625.19 qc532 2011","b3089850a","420909884858","2011","2015-09-01","Book","a","Model railroading in small spaces","model railroading in small spaces","625.19 qc532 2011","","2018-11-15","2018-11-15","3ra","3r","0","1","0","0"
"irf","a","0","378.1662 qd878","b2621501a","420909416509","2007","2010-08-06","Book","a","McGraw-Hill's ACT.","mcgraw hills act","378.1662 qd878","2011","2019-06-12","2019-06-12","ana,gea","an,ge","0","1","0","0"
"irf","a","0","327.73 c297 2019","b3448313a","420910243321","2019","2019-04-18","Book","a","Gullible superpower : U.S. support for bogus democratic movements","gullible superpower u s support for bogus democratic movements","327.73 c297 2019","","2019-04-30","2019-04-30","2ra","2r","0","1","0","0"
"irf","a","0","811.54 k37 l","b1266764a","420908061772","1990","1994-03-21","Book","a","Let evening come : poems","let evening come poems","811.54 k37 l","","2019-05-13","2019-05-13","3la","3l","0","1","0","0"
"irf","a","0","781.640787 qk95","b2608074a","420909403082","2011","2012-01-25","Book","a","A perfect haze : the illustrated history of the Monterey International Pop Festival","perfect haze the illustrated history of the monterey international pop festival","781.640787 qk95","","2019-05-27","2019-05-27","3ra","3r","0","1","0","0"
"irf","a","0","391.65 qm163 2013","b2925979a","420909720987","2013","2014-01-09","Book","a","Skin graf : masters of graffiti tattoo","skin graf masters of graffiti tattoo","391.65 qm163 2013","","2019-04-02","2019-04-02","2ra","2r","0","1","0","0"
"irf","a","10","784.54 w721 zw","b1084826a","420907879834","1975","1992-03-22","Book","a","The man who gave the Beatles away","man who gave the beatles away","784.54 w721 zw","","2019-05-08","2019-05-08","3aa","3a","10","1","0","0"
"irf","a","0","884.01 s241 zf 2016","b3134206a","420909929214","2016","2016-02-18","Book","a","Searching for Sappho : the lost songs and world of the first woman poet : including new translations of all of Sappho's surviving poetry","searching for sappho the lost songs and world of the first woman poet including new translations of all of sapphos surviving poetry","884.01 s241 zf 2016","","2019-02-07","2019-02-07","3ra","3r","0","1","0","0"
"irf","a","0","808.02 a244 1999","b1873633a","420908668641","1999","1999-05-06","Book","a","Advice to writers : a compendium of quotes, anecdotes, and writerly wisdom from a dazzling array of literary lights","advice to writers a compendium of quotes anecdotes and writerly wisdom from a dazzling array of literary lights","808.02 a244 1999","","2018-12-12","2018-12-12","3ra","3r","0","1","0","0"
"irf","a","0","643 g227 2017","b3255373a","420910050381","2017","2017-05-08","Book","a","Stone building : how to make New England-style walls and other structures the old way","stone building how to make new england style walls and other structures the old way","643 g227 2017","","2019-05-23","2019-05-23","3ra","3r","0","1","0","0"
"irf","a","46","917.71794 a566","b1309828a","420908104836","1981","1992-03-22","Book","a","Chateau Laroche, Loveland, Ohio.","chateau laroche loveland ohio","917.71794 a566","","2019-05-06","2019-05-06","3ca,3ha,3ea","3c,3h,3e","46","1","0","0"
"irf","a","0","613.712 s792","b2557770a","420909352778","2004","2010-08-05","Book","a","Prevention's firm up in 3 weeks : lose your belly and burn fat fast--the Prevention way!","preventions firm up in 3 weeks lose your belly and burn fat fast the prevention way","613.712 s792","","2019-02-12","2019-02-12","3ra","3r","0","1","0","0"
"irf","a","0","796.357092 c186 zc","b2205644a","420909000652","1959","1992-03-22","Book","a","It's good to be alive","its good to be alive","796.357092 c186 zc","","2019-04-30","2019-04-30","2ea","2e","0","1","0","0"
"irf","a","0","005.432 u15 zo, 2006","b2566220a","420909361228","2006","2006-07-18","Book","a","Ubuntu hacks","ubuntu hacks","005.432 u15 zo, 2006","","2019-01-31","2019-01-31","2ra","2r","0","1","0","0"
"irf","a","0","658.11 a924 2013","b2888384a","420909683392","2013","2013-10-21","Book","a","Disciplined entrepreneurship : 24 steps to a successful startup","disciplined entrepreneurship 24 steps to a successful startup","658.11 a924 2013","","2019-04-10","2019-04-10","2ra","2r","0","1","0","0"
"irf","a","0","794.733 qk16","b2663104a","420909458112","2011","2011-01-05","Book","a","Pool player's edge","pool players edge","794.733 qk16","","2019-04-29","2019-04-29","ana,3ra","an,3r","0","1","0","0"
"irf","a","10","751.494 qr894","b1007771a","420907802779","1981","1992-03-22","Book","a","Encyclopedia of the airbrush","encyclopedia of the airbrush","751.494 qr894","v.02","2019-06-25","2019-06-25","3aa","3a","10","1","0","0"
"irf","a","0","330.122 l536","b2223271a","420909018279","1981","1989-01-05","Book","a","Capitalism for beginners","capitalism for beginners","330.122 l536","","2019-04-09","2019-04-09","2ga","2g","0","1","0","0"
"irf","a","0","759.13 fh766 zu","b1848344a","420908643352","2001","2002-02-27","Book","a","The watercolors of Winslow Homer","watercolors of winslow homer","759.13 fh766 zu","","2019-03-23","2019-03-23","osa","os","0","1","0","0"
"irf","a","0","782.421644 g795 z","b1992218a","420908787226","2000","2000-09-07","Book","a","Take me to the river","take me to the river","782.421644 g795 z","","2019-05-01","2019-05-01","3aa","3a","0","1","0","0"
"irf","a","0","270.6092 t987 zd, 1994","b1458159a","420908253167","1994","1994-11-28","Book","a","William Tyndale : a biography","william tyndale a biography","270.6092 t987 zd, 1994","","2018-12-25","2018-12-25","2ra","2r","0","1","0","0"
"irf","a","0","943.48 qw386","b2150276a","420908945284","1979","1992-03-22","Book","a","The Danube : 2,000 years of history, myth, and legend","danube 2 000 years of history myth and legend","943.48 qw386","","2019-04-24","2019-04-24","3ha","3h","0","1","0","0"
"irf","a","0","235.3 j55","b2553113a","420909348121","2006","2006-09-18","Book","a","Angels : the strange and mysterious truth","angels the strange and mysterious truth","235.3 j55","","2019-06-22","2019-06-22","2ra","2r","0","1","0","0"
"irf","a","0","613.713 qc227 2015","b3014164a","420909809172","2015","2014-12-31","Book","a","Anatomy & bodybuilding : a complete visual guide","anatomy and bodybuilding a complete visual guide","613.713 qc227 2015","","2019-04-26","2019-04-26","baa,3ra","ba,3r","0","1","0","0"
"irf","a","0","917.30492 qr286","b2469773a","420909264781","1973","1992-03-22","Book","a","Reader's digest scenic wonders of America.","readers digest scenic wonders of america","917.30492 qr286","","2019-06-19","2019-06-19","3ha","3h","0","1","0","0"
"irf","a","0","848.91408 c211 xg, 2004","b2404592a","420909199600","2004","2004-09-09","Book","a","The plague ; The fall ; Exile and the kingdom ; and, selected essays","plague the fall exile and the kingdom and selected essays","848.91408 c211 xg, 2004","","2019-02-23","2019-02-23","3ra","3r","0","1","0","0"
"irf","a","10","651.3741 q86 .2","b1169043a","420907964051","1986","1992-03-22","Book","a","Secretarial procedures for the electronic office","secretarial procedures for the electronic office","651.3741 q86 .2","","2019-03-01","2019-03-01","2ga","2g","10","1","0","0"
"irf","a","0","615.324324 w676 , 1997","b1649747a","420908444755","1997","1997-05-01","Book","a","Garlic : nature's super healer","garlic natures super healer","615.324324 w676 , 1997","","2019-05-17","2019-05-17","2sa","2s","0","1","0","0"
"irf","a","0","361.3076 qa8612 2017","b3253656a","420910048664","2017","2017-04-17","Book","a","ASWB clinical study guide","aswb clinical study guide","361.3076 qa8612 2017","","2019-06-25","2019-06-25","2ra","2r","0","1","0","0"
"irf","a","0","616.85227 c899","b2523560a","420909318568","2004","2005-01-07","Book","a","The obsessive-compulsive trap : real help for a real disorder","obsessive compulsive trap real help for a real disorder","616.85227 c899","","2019-04-19","2019-04-19","3ra","3r","0","1","0","0"
"irf","a","0","891.7342 g878 zgr 2013","b2877323a","420909672331","2013","2013-07-03","Book","a","An Armenian sketchbook","armenian sketchbook","891.7342 g878 zgr 2013","","2019-04-24","2019-04-24","3ra","3r","0","1","0","0"
"irf","a","0","222.4 a569 2009","b3158825a","420909953833","2009","2016-03-28","Book","a","I & II Samuel","i and ii samuel","222.4 a569 2009","","2018-09-26","2018-09-26","2ra","2r","0","1","0","0"
"irf","a","0","914.60482 c595","b1983369a","420908778377","1971","1992-03-22","Book","a","All the best in Spain and Portugal.","all the best in spain and portugal","914.60482 c595","","2018-08-29","2018-08-29","3ha","3h","0","1","0","0"
"irf","a","0","783.22 b415 zf","b1414434a","420908209442","1979","1989-04-02","Book","a","Beethoven's Missa Solemnis","beethovens missa solemnis","783.22 b415 zf","","2019-03-04","2019-03-04","3aa","3a","0","1","0","0"
"irf","a","0","741.56973 fm391","b2734736a","420909529744","2009","2009-12-01","Book","a","The Marvel Comics encyclopedia : a complete guide to the characters of the Marvel Universe","marvel comics encyclopedia a complete guide to the characters of the marvel universe","741.56973 fm391","","2019-06-24","2019-06-24","wha","wh","0","1","0","0"
"irf","c","157","m6.21825 fh571","b2291907a","420909086915","2002","2004-06-14","Music Score","c","24 variations on a Bach chorale : piano solo","24 variations on a bach chorale piano solo","m6.21825 fh571","","2019-07-01","2019-07-01","3ra","3r","157","1","0","0"
"irf","a","0","796.352092 w897 zo, 2001","b1969426a","420908764434","2001","2001-11-15","Book","a","The chosen one : Tiger Woods and the dilemma of greatness","chosen one tiger woods and the dilemma of greatness","796.352092 w897 zo, 2001","","2018-09-26","2018-09-26","3ra","3r","0","1","0","0"
"irf","a","0","641.5088 q88","b1240718a","420908035726","1988","2004-08-09","Book","a","The best of Amish cooking : traditional and contemporary recipes adapted from the kitchens and pantries of old order Amish cooks","best of amish cooking traditional and contemporary recipes adapted from the kitchens and pantries of old order amish cooks","641.5088 q88","","2019-01-16","2019-01-16","2sa","2s","0","1","0","0"
"irf","a","0","796.522097 r628","b2780439a","420909575447","1999","2006-06-23","Book","a","Colorado's fourteeners : from hikes to climbs","colorados fourteeners from hikes to climbs","796.522097 r628","","2019-06-23","2019-06-23","3ra","3r","0","1","0","0"
"irf","a","0","745.546 qd2612","b1785281a","420908580289","2001","2001-05-21","Book","a","The decoupage gallery : a collection of over 450 color and 550 black-and-white design motifs","decoupage gallery a collection of over 450 color and 550 black and white design motifs","745.546 qd2612","","2019-06-04","2019-06-04","3aa","3a","0","1","0","0"
"irf","a","0","746.443041 qh224 c","b2659987a","420909454995","2008","2008-09-09","Book","a","Cross stitch art nouveau : over 70 inspirational designs","cross stitch art nouveau over 70 inspirational designs","746.443041 qh224 c","","2019-04-03","2019-04-03","3ra","3r","0","1","0","0"
"irf","c","157","m3.065 fb474 b","b1357750a","420908152758","1994","1994-07-20","Music Score","c","The best of George Benson.","best of george benson","m3.065 fb474 b","","2019-05-29","2019-05-29","3ra","3r","157","1","0","0"
"irf","a","0","790.1926 d997","b2615468a","420909410476","2010","2010-11-22","Book","a","Memory games for groups","memory games for groups","790.1926 d997","","2019-01-09","2019-01-09","osa","os","0","1","0","0"
"irf","a","","915.904f653","b1014313a","420907809321","1975","1990-04-25","Book","a","Fodor's Southeast Asia.","fodors southeast asia","915.904f653","","2018-11-29","2018-11-29","ana,baa,dta,gea,gra,haa,hpa,maa,2ra,nra,sha,sma","an,ba,dt,ge,gr,ha,hp,ma,2r,nr,sh,sm","","1","0","0"
"irf","a","0","741.9492 qb742 zb","b1105528a","420907900536","1973","1992-03-22","Book","a","The complete drawings of Hieronymus Bosch [introduction and notes by] Charles van Beuningen.","complete drawings of hieronymus bosch introduction and notes by charles van beuningen","741.9492 qb742 zb","","2019-02-23","2019-02-23","3aa","3a","0","1","0","0"
"irf","a","0","332.6 m255 2014","b2983887a","420909778895","2014","2014-08-25","Book","a","The 5 mistakes every investor makes and how to avoid them : getting investing right","5 mistakes every investor makes and how to avoid them getting investing right","332.6 m255 2014","","2019-01-20","2019-01-20","2ra","2r","0","1","0","0"
"irf","a","0","746.46041 qm374 l, 2003","b2452888a","420909247896","2003","2004-10-28","Book","a","Liberated string quilts","liberated string quilts","746.46041 qm374 l, 2003","","2018-12-24","2018-12-24","3aa","3a","0","1","0","0"
"irf","a","0","362.196831 b435","b2710782a","420909505790","1997","2005-12-22","Book","a","The best friends approach to Alzheimer's care","best friends approach to alzheimers care","362.196831 b435","","2019-04-26","2019-04-26","osa","os","0","1","0","0"
"irf","a","0","372.414 b918","b1392580a","420908187588","1991","1992-03-03","Book","a","Teach a beginning reader with common sense and a cookie sheet : a guide for parents","teach a beginning reader with common sense and a cookie sheet a guide for parents","372.414 b918","","2019-04-29","2019-04-29","2ra","2r","0","1","0","0"
"irf","a","0","370.92 w317 zsm","b2627457a","420909422465","2009","2009-06-10","Book","a","Booker T. Washington : black leadership in the age of Jim Crow","booker t washington black leadership in the age of jim crow","370.92 w317 zsm","","2019-04-01","2019-04-01","2ra","2r","0","1","0","0"
"irf","a","0","746.46041 qz72","b1789140a","420908584148","2001","2001-05-29","Book","a","Quick quilted miniatures","quick quilted miniatures","746.46041 qz72","","2019-01-31","2019-01-31","sma","sm","0","1","0","0"
"irf","a","0","940.481 a42","b1022712a","420907817720","1926","1992-03-22","Book","a","Toward the flame,","toward the flame","940.481 a42","","2019-05-19","2019-05-19","3ha","3h","0","1","0","0"
"irf","a","0","781.54 k82 zs 2015","b3045001a","420909840009","2015","2015-05-15","Book","a","Super Mario Bros.","super mario bros","781.54 k82 zs 2015","","2019-01-19","2019-01-19","3ra","3r","0","1","0","0"
"irf","a","0","821.008092 r237","b1022080a","420907817088","1985","1992-03-22","Book","a","The Rattle bag : an anthology of poetry","rattle bag an anthology of poetry","821.008092 r237","","2019-03-31","2019-03-31","3la","3l","0","1","0","0"
"irf","a","0","770.9 fa581 2014","b3014591a","420909809599","2014","2014-12-08","Book","a","Photography : the definitive visual history","photography the definitive visual history","770.9 fa581 2014","","2019-02-06","2019-02-06","3ra","3r","0","1","0","0"
"irf","a","0","629.133349 82.1","b1099151a","420907894159","1982","1992-03-22","Book","a","Flying Concorde","flying concorde","629.133349 82.1","","2019-05-07","2019-05-07","3ra","3r","0","1","0","0"
"irf","a","0","382.71 r696 2018","b3310586a","420910105594","2018","2017-11-13","Book","a","Straight talk on trade : ideas for a sane world economy","straight talk on trade ideas for a sane world economy","382.71 r696 2018","","2019-06-10","2019-06-10","2ra","2r","0","1","0","0"
"irf","a","0","616.831 d229","b2775699a","420909570707","2005","2006-04-06","Book","a","Alzheimer's disease","alzheimers disease","616.831 d229","","2019-01-28","2019-01-28","3ra","3r","0","1","0","0"
"irf","a","0","b l4194lu","b1081215a","420907876223","1932","1992-03-22","Book","a","Lorenzo in Taos.","lorenzo in taos","b l4194lu","","2019-07-02","2019-07-02","3la","3l","0","1","0","0"
"irf","a","0","746.432 n598 2013","b2875621a","420909670629","2013","2013-06-20","Book","a","50 sunflowers to knit, crochet & felt : patterns and projects packed with lush and vibrant colors that you will love to make","50 sunflowers to knit crochet and felt patterns and projects packed with lush and vibrant colors that you will love to make","746.432 n598 2013","","2019-04-01","2019-04-01","3ra","3r","0","1","0","0"
"irf","a","0","495.783421 d376 , 2005","b2452341a","420909247349","2005","2006-06-19","Book","a","Instant Korean : how to express 1,000 different ideas with just 100 key words and phrases","instant korean how to express 1 000 different ideas with just 100 key words and phrases","495.783421 d376 , 2005","","2019-03-05","2019-03-05","2ra","2r","0","1","0","0"
"irf","a","0","220.93 m998 , 2004","b2619361a","420909414369","2004","2005-07-22","Book","a","Mysteries of the Bible : from the location of Eden to the Shroud of Turin : a collection of essays published by the Biblical Archaeology Society","mysteries of the bible from the location of eden to the shroud of turin a collection of essays published by the biblical archaeology society","220.93 m998 , 2004","","2018-10-24","2018-10-24","2ra","2r","0","1","0","0"
"irf","a","0","708.0092 h798 zh 2017","b3280356a","420910075364","2017","2017-06-12","Book","a","The dream colony : a life in art","dream colony a life in art","708.0092 h798 zh 2017","","2019-02-19","2019-02-19","3ra","3r","0","1","0","0"
"irf","a","0","629.26 qp252","b2190963a","420908985971","2003","2004-02-20","Book","a","How to paint your car","how to paint your car","629.26 qp252","","2019-04-29","2019-04-29","3ra","3r","0","1","0","0"
"irf","a","0","809.04 w9562","b1082439a","420907877447","1958","1992-03-22","Book","a","Writers at work : the Paris review interviews.","writers at work the paris review interviews","809.04 w9562","v.01","2019-06-24","2019-06-24","3la","3l","0","1","0","0"
"irf","a","0","306.766309 b719 zb","b1973810a","420908768818","2002","2002-06-27","Book","a","The end of innocence : a memoir","end of innocence a memoir","306.766309 b719 zb","","2019-07-02","2019-07-02","2ra","2r","0","1","0","0"
"irf","a","0","746.432 qv888 k, 1989","b1371771a","420908166779","1989","1991-06-11","Book","a","Vogue knitting : the ultimate knitting book","vogue knitting the ultimate knitting book","746.432 qv888 k, 1989","","2019-01-18","2019-01-18","3aa","3a","0","1","0","0"
"irf","a","0","712.6 qs958","b2223434a","420909018442","1960","1992-03-22","Book","a","Garden & patio building book; five complete Sunset books in one volume to cover your basic outdoor building needs.","garden and patio building book five complete sunset books in one volume to cover your basic outdoor building needs","712.6 qs958","","2019-07-02","2019-07-02","3aa","3a","0","1","0","0"
"irf","a","0","704.943679 fn253 , 1995","b1537023a","420908332031","1995","1996-02-27","Book","a","Facing Eden : 100 years of landscape art in the Bay area","facing eden 100 years of landscape art in the bay area","704.943679 fn253 , 1995","","2019-07-03","2019-07-03","3ra","3r","0","1","0","0"
"irf","a","10","615.05 qp97","b1119697a","420907914705","1974","2017-01-06","Book","a","Physicians' desk reference.","physicians desk reference","615.05 qp97","69th_ed. 2015","2018-09-17","2018-09-17","ana,ava,baa,bha,cha,cla,coa,cra,cva,epa,foa,gea,gra,haa,lva,maa,2ra,2sa,mna,moa,mwa,nra,nsa,nwa,oaa,pla,pra,rea,sha,sba,sma,wha,wwa,wya","an,av,ba,bh,ch,cl,co,cr,cv,ep,fo,ge,gr,ha,lv,ma,2r,2s,mn,mo,mw,nr,ns,nw,oa,pl,pr,re,sh,sb,sm,wh,ww,wy","10","1","0","0"
"irf","a","10","016.9769 j61 k","b1526762a","420908321770","1936","1989-04-06","Book","a","Kentucky history, a check and finding list of the principal published and manuscript sources of the general, regional, and county history of the commonwealth, 1729-1936,","kentucky history a check and finding list of the principal published and manuscript sources of the general regional and county history of the commonwealth 1729 1936","016.9769 j61 k","","2019-03-29","2019-03-29","3ha","3h","10","1","0","0"
"irf","a","10","782.42092273 g773","b1256645a","420908051653","1993","1993-06-29","Book","a","American women songwriters : a biographical dictionary","american women songwriters a biographical dictionary","782.42092273 g773","","2019-06-16","2019-06-16","3aa","3a","10","1","0","0"
"irf","a","0","848.91409 s251 zg","b1339317a","420908134325","1989","1991-04-11","Book","a","Jean-Paul Sartre : hated conscience of his century","jean paul sartre hated conscience of his century","848.91409 s251 zg","","2019-05-02","2019-05-02","3ra,3la","3r,3l","0","1","0","0"
"irf","a","0","133.9013 e26","b1592982a","420908387990","1996","1996-08-09","Book","a","Reincarnation : a critical examination","reincarnation a critical examination","133.9013 e26","","2019-04-10","2019-04-10","2ra","2r","0","1","0","0"
"irf","a","10","366.1097 m972","b2477158a","420909272166","1975","1992-03-22","Book","a","Middle-class blacks in a white society : Prince Hall Freemasonry in America","middle class blacks in a white society prince hall freemasonry in america","366.1097 m972","","2019-05-14","2019-05-14","2ea","2e","10","1","0","0"
"irf","a","0","204.4 l841 2017","b3296062a","420910091070","2017","2017-08-14","Book","a","The mind of God : neuroscience, faith, and a search for the soul","mind of god neuroscience faith and a search for the soul","204.4 l841 2017","","2018-09-17","2018-09-17","2ra","2r","0","1","0","0"
"irf","a","0","349.73092 a161","b2302160a","420909097168","1986","1992-03-22","Book","a","Where they are now : the story of the women of Harvard Law 1974","where they are now the story of the women of harvard law 1974","349.73092 a161","","2018-10-04","2018-10-04","2ga","2g","0","1","0","0"
"irf","a","0","793.3 s979","b2347914a","420909142922","1982","1992-03-22","Book","a","Dancers! : horizons in American dance","dancers horizons in american dance","793.3 s979","","2018-08-02","2018-08-02","3aa","3a","0","1","0","0"
"irf","a","0","728.922097 fs697","b2792428a","420909587436","1997","2012-07-26","Book","a","The old barn book","old barn book","728.922097 fs697","","2019-02-07","2019-02-07","osa","os","0","1","0","0"
"irf","a","0","746.46 qr643 , 1995","b1680221a","420908475229","1995","1995-06-09","Book","a","Decoupage quilts","decoupage quilts","746.46 qr643 , 1995","","2019-01-31","2019-01-31","3aa","3a","0","1","0","0"
"irf","a","0","629.287 q88 .2","b1028718a","420907823726","1988","1992-03-22","Book","a","Chilton's guide to automatic transmission repair, 1980-84: domestic cars & trucks.","chiltons guide to automatic transmission repair 1980 84 domestic cars and trucks","629.287 q88 .2","","2018-10-21","2018-10-21","2sa","2s","0","1","0","0"
"irf","a","0","286.1092 f831 zs, 2005","b2556205a","420909351213","2005","2005-02-17","Book","a","Singing in a strange land : C. L. Franklin, the Black church, and the transformation of America","singing in a strange land c l franklin the black church and the transformation of america","286.1092 f831 zs, 2005","","2018-09-10","2018-09-10","2ra","2r","0","1","0","0"
"irf","a","0","778.6 fl695 1951","b1636769a","420908431777","1951","1989-04-20","Book","a","The art and technique of color photography; a treasury of color photographs","art and technique of color photography a treasury of color photographs","778.6 fl695 1951","","2019-06-14","2019-06-14","3aa","3a","0","1","0","0"
"irf","a","0","781.57 j84","b1343834a","420908138842","1994","1994-06-16","Book","a","Free jazz","free jazz","781.57 j84","","2019-04-08","2019-04-08","3aa","3a","0","1","0","0"
"irf","a","0","793.74 g227 mc","b1526429a","420908321437","1992","1995-02-15","Book","a","Mathematical circus : more puzzles, games, paradoxes and other mathematical entertainments from Scientific American","mathematical circus more puzzles games paradoxes and other mathematical entertainments from scientific american","793.74 g227 mc","","2019-04-22","2019-04-22","3ra","3r","0","1","0","0"
"irf","a","0","493.111 m279","b2738398a","420909533406","2012","2012-06-07","Book","a","Egyptian hieroglyphs for complete beginners","egyptian hieroglyphs for complete beginners","493.111 m279","","2019-03-24","2019-03-24","2ra","2r","0","1","0","0"
"irf","-","0","xx(1328120.1)","b2260572a","420909055580","1967","1992-03-22","Undefined","-","Baseball-istics : the basic physics of baseball","baseball istics the basic physics of baseball","xx(1328120.1)","","2019-03-12","2019-03-12","2sa","2s","0","1","0","0"
"irf","a","0","796.64 z78","b2372113a","420909167121","2004","2004-07-31","Book","a","Zinn's cycling primer : maintenance tips and skill building for cyclists","zinns cycling primer maintenance tips and skill building for cyclists","796.64 z78","","2019-06-14","2019-06-14","3ra","3r","0","1","0","0"
"irf","a","0","320.014 h551 , 2002","b1768522a","420908563530","2002","2002-07-25","Book","a","Manufacturing consent : the political economy of the mass media","manufacturing consent the political economy of the mass media","320.014 h551 , 2002","","2018-06-28","2018-06-28","2ra","2r","0","1","0","0"
"irf","a","10","658.041 h889 s, 1999","b1791130a","420908586138","1999","1999-09-21","Book","a","101 best home-business success secrets for women : proven ideas and strategies to help you start, manage, and profit from whichever business you choose","101 best home business success secrets for women proven ideas and strategies to help you start manage and profit from whichever business you choose","658.041 h889 s, 1999","","2019-04-16","2019-04-16","2ra","2r","10","1","0","0"
"irf","a","0","264.2 g232 , 1996","b1538311a","420908333319","1996","1997-06-26","Book","a","Songs in the night : inspiring stories behind 100 hymns born in trial and suffering","songs in the night inspiring stories behind 100 hymns born in trial and suffering","264.2 g232 , 1996","","2019-01-30","2019-01-30","2ra,2ea","2r,2e","0","1","0","0"
"irf","a","0","307.760979 s688 , 2000","b1977132a","420908772140","2000","2001-02-02","Book","a","Hollow city : the siege of San Francisco and the crisis of American urbanism","hollow city the siege of san francisco and the crisis of american urbanism","307.760979 s688 , 2000","","2019-03-08","2019-03-08","2ra","2r","0","1","0","0"
"irf","a","0","362.292 b753 2017","b3284472a","420910079480","2017","2017-06-29","Book","a","Raising the bottom : making mindful choices in a drinking culture","raising the bottom making mindful choices in a drinking culture","362.292 b753 2017","","2019-07-04","2019-07-04","2ra","2r","0","1","0","0"
"irf","a","10","610.73 q84 .1","b2049216a","420908844224","1984","1992-03-22","Book","a","Nurse's aide handbook","nurses aide handbook","610.73 q84 .1","","2019-04-20","2019-04-20","2sa","2s","10","1","0","0"
"irf","a","0","226.2 f791 1938","b1011746a","420907806754","1938","1989-03-31","Book","a","The Sermon on the Mount; a general introduction to scientific Christianity in the form of a spiritual key to Matthew V, VI and VII.","sermon on the mount a general introduction to scientific christianity in the form of a spiritual key to matthew v vi and vii","226.2 f791 1938","","2018-12-05","2018-12-05","2ea","2e","0","1","0","0"
"irf","a","0","641.5973 qa51292","b2686278a","420909481286","2011","2012-04-05","Book","a","American food by the decades","american food by the decades","641.5973 qa51292","","2019-06-11","2019-06-11","ana,3ra","an,3r","0","1","0","0"
"irf","a","0","781.635 j17","b1248224a","420908043232","1979","1992-03-22","Book","a","Conductors on conducting","conductors on conducting","781.635 j17","","2019-01-06","2019-01-06","3aa","3a","0","1","0","0"
"irf","a","0","363.3217 k64 2018","b3391652a","420910186660","2018","2018-11-15","Book","a","A savage order : how the world's deadliest countries can forge a path to security","savage order how the worlds deadliest countries can forge a path to security","363.3217 k64 2018","","2019-06-19","2019-06-19","2ra","2r","0","1","0","0"
"irf","a","0","821.7 b636 zau","b1214935a","420908009943","1986","1992-03-22","Book","a","Watchmen of eternity : Blake's debt to Jacob Boehme","watchmen of eternity blakes debt to jacob boehme","821.7 b636 zau","","2019-05-22","2019-05-22","3la","3l","0","1","0","0"
"irf","a","0","613.25 a551","b2738062a","420909533070","2011","2012-06-07","Book","a","Tracy Anderson's 30-day method : the weight-loss kick-start that makes perfection possible","tracy andersons 30 day method the weight loss kick start that makes perfection possible","613.25 a551","","2019-04-02","2019-04-02","haa,lva,3ra,rea","ha,lv,3r,re","0","1","0","0"
"irf","a","0","495.922834 p535 2013","b2975527a","420909770535","2013","2014-07-02","Book","a","Essential Vietnamese : speak Vietnamese with confidence","essential vietnamese speak vietnamese with confidence","495.922834 p535 2013","","2019-06-14","2019-06-14","2ra","2r","0","1","0","0"
"irf","a","0","616.89156 d618","b1906458a","420908701466","2000","2001-07-16","Book","a","Diverse families, competent families : innovations in research and preventive intervention practice","diverse families competent families innovations in research and preventive intervention practice","616.89156 d618","","2019-02-11","2019-02-11","2sa","2s","0","1","0","0"
"irf","a","0","248.4 m465 , 2002","b1799767a","420908594775","2002","2003-02-28","Book","a","Be all you can be","be all you can be","248.4 m465 , 2002","","2018-07-27","2018-07-27","2ra,oaa","2r,oa","0","1","0","0"
"irf","a","0","795.415 k29 te, 1991","b1382899a","420908177907","1991","1994-07-01","Book","a","Test your finessing","test your finessing","795.415 k29 te, 1991","","2018-10-26","2018-10-26","3ra","3r","0","1","0","0"
"irf","a","0","811.54 w994 lo","b1084590a","420907879598","1967","1992-03-22","Book","a","Love poems for the very married.","love poems for the very married","811.54 w994 lo","","2019-02-08","2019-02-08","3ra","3r","0","1","0","0"
"irf","a","0","746.430432 qb649 , 2002","b1865422a","420908660430","2002","2003-04-11","Book","a","The baby knits book : the ultimate collection of knitwear designs for newborns to 3-year-olds","baby knits book the ultimate collection of knitwear designs for newborns to 3 year olds","746.430432 qb649 , 2002","","2018-12-12","2018-12-12","3aa","3a","0","1","0","0"
"irf","a","0","613.262 r634","b2782692a","420909577700","2011","2011-08-25","Book","a","The food revolution : how your diet can help save your life and our world","food revolution how your diet can help save your life and our world","613.262 r634","","2019-02-02","2019-02-02","3ra","3r","0","1","0","0"
"irf","a","0","616.852 78","b1227208a","420908022216","1978","1992-03-22","Book","a","How to end mental depression","how to end mental depression","616.852 78","","2019-05-20","2019-05-20","2sa","2s","0","1","0","0"
"irf","a","0","301.154 b52 e","b1312853a","420908107861","1955","1989-03-27","Book","a","The engineering of consent.","engineering of consent","301.154 b52 e","","2019-06-07","2019-06-07","2ea","2e","0","1","0","0"
"irf","c","157","m5.5 c780","b1085656a","420907880664","1967","1996-04-03","Music Score","c","An outdoor overture : for orchestra","outdoor overture for orchestra","m5.5 c780","","2019-03-14","2019-03-14","3aa","3a","157","1","0","0"
"irf","a","0","786.916509 l675zs 2014","b3416981a","420910211989","2014","2019-01-16","Book","a","The view from the back of the band : the life and music of Mel Lewis","view from the back of the band the life and music of mel lewis","786.916509 l675zs 2014","","2019-05-29","2019-05-29","2ra","2r","0","1","0","0"
"irf","a","0","813.54 l521 lzb","b1168161a","420907963169","1987","1989-02-03","Book","a","Ursula K. Le Guin's the left hand of darkness","ursula k le guins the left hand of darkness","813.54 l521 lzb","","2019-05-22","2019-05-22","3la","3l","0","1","0","0"
"irf","a","0","232 w952","b1862336a","420908657344","1999","2000-05-17","Book","a","The challenge of Jesus : rediscovering who Jesus was and is","challenge of jesus rediscovering who jesus was and is","232 w952","","2019-04-10","2019-04-10","cra","cr","0","1","0","0"
"irf","a","0","791.430233 w673 za","b1810797a","420908605805","2000","2002-01-15","Book","a","Billy Wilder, American film realist","billy wilder american film realist","791.430233 w673 za","","2019-06-29","2019-06-29","3ra","3r","0","1","0","0"
"irf","a","0","385.5 c382","b2488216a","420909283224","1976","1992-03-22","Book","a","Trolleys : riding and remembering the electric interurban railways","trolleys riding and remembering the electric interurban railways","385.5 c382","","2019-05-24","2019-05-24","2ga","2g","0","1","0","0"
"irf","a","0","559.9 82","b1471189a","420908266197","1982","1992-03-22","Book","a","Planets of rock and ice : from Mercury to the moons of Saturn","planets of rock and ice from mercury to the moons of saturn","559.9 82","","2018-12-12","2018-12-12","2sa","2s","0","1","0","0"
"irf","a","0","184 p718 aew","b2078049a","420908873057","1979","1992-03-22","Book","a","Plato's ""Apology of Socrates"" : an interpretation, with a new translation","platos apology of socrates an interpretation with a new translation","184 p718 aew","","2018-07-15","2018-07-15","2ea","2e","0","1","0","0"
"irf","a","0","617.43 k96","b2714452a","420909509460","2005","2005-11-21","Book","a","Weight loss surgery for dummies","weight loss surgery for dummies","617.43 k96","","2019-05-09","2019-05-09","haa,3ra","ha,3r","0","1","0","0"
"irf","a","10","133.43 qc9531","b1687624a","420908482632","1997","1998-05-01","Book","a","Magick : Liber ABA, book four, parts I-IV","magick liber aba book four parts i iv","133.43 qc9531","","2019-04-12","2019-04-12","2ea","2e","10","1","0","0"
"irf","a","0","635 qc295 2015","b3045356a","420909840364","2015","2015-05-21","Book","a","The organic medicinal herb farmer : the ultimate guide to producing high-quality herbs on a market scale","organic medicinal herb farmer the ultimate guide to producing high quality herbs on a market scale","635 qc295 2015","","2019-02-21","2019-02-21","3ra,mwa","3r,mw","0","1","0","0"
"irf","a","0","947.52 b112 zbae","b2567515a","420909362523","2007","2008-01-17","Book","a","One soldier's war","one soldiers war","947.52 b112 zbae","","2019-05-07","2019-05-07","3ra","3r","0","1","0","0"
"irf","a","0","613.2 c321","b2668172a","420909463180","2009","2009-08-03","Book","a","A long bright future : an action plan for a lifetime of happiness, health, and financial security","long bright future an action plan for a lifetime of happiness health and financial security","613.2 c321","","2019-06-02","2019-06-02","3ra,2sa","3r,2s","0","1","0","0"
"irf","a","0","759.13 qw576 zr","b2606008a","420909401016","2007","2008-03-12","Book","a","A fragile modernism : Whistler and his impressionist followers","fragile modernism whistler and his impressionist followers","759.13 qw576 zr","","2019-04-23","2019-04-23","3ra","3r","0","1","0","0"
"irf","a","0","796.48 s761","b2396021a","420909191029","2004","2004-07-31","Book","a","The ancient Olympics","ancient olympics","796.48 s761","","2018-12-07","2018-12-07","3ra","3r","0","1","0","0"
"irf","a","0","323.3291 b236","b1698822a","420908493830","1998","1998-07-08","Book","a","Ethics of citizenship : immigration and group rights in Germany","ethics of citizenship immigration and group rights in germany","323.3291 b236","","2019-06-07","2019-06-07","2ra","2r","0","1","0","0"
"irf","a","0","363.283094 g3731zf","b1997942a","420908792950","2003","2003-07-14","Book","a","Stasiland","stasiland","363.283094 g3731zf","","2019-05-22","2019-05-22","2ra","2r","0","1","0","0"
"irf","a","0","305 f234","b2615518a","420909410526","2005","2009-04-29","Book","a","Pathologies of power : health, human rights, and the new war on the poor : with a new preface by the author","pathologies of power health human rights and the new war on the poor with a new preface by the author","305 f234","","2019-05-08","2019-05-08","2ra","2r","0","1","0","0"
"irf","a","0","283.092 d718","b1658484a","420908453492","1998","1998-08-20","Book","a","A love observed : Joy Davidman's life & marriage to C.S. Lewis","love observed joy davidmans life and marriage to c s lewis","283.092 d718","","2019-04-20","2019-04-20","2ea","2e","0","1","0","0"
"irf","a","0","294.3 c539","b1941277a","420908736285","2003","2003-06-09","Book","a","Buddhism : the wisdom of compassion and awakening","buddhism the wisdom of compassion and awakening","294.3 c539","","2019-06-13","2019-06-13","2ra","2r","0","1","0","0"
"irf","a","0","641.65642 d265","b2773993a","420909569001","2010","2010-02-28","Book","a","Tomato : a fresh-from-the-vine cookbook","tomato a fresh from the vine cookbook","641.65642 d265","","2019-05-25","2019-05-25","haa,3ra,sma","ha,3r,sm","0","1","0","0"
"irf","a","0","940.548 h853","b1499651a","420908294659","1951","1992-03-22","Book","a","Across to Norway.","across to norway","940.548 h853","","2019-05-26","2019-05-26","3ha","3h","0","1","0","0"
"irf","a","10","364.1523 j72 zc","b1219685a","420908014693","1989","1990-10-26","Book","a","Horror in Hocking County","horror in hocking county","364.1523 j72 zc","","2019-04-30","2019-04-30","2ea","2e","10","1","0","0"
"irf","a","0","791.45028 f191 zf","b2594113a","420909389121","2006","2006-09-20","Book","a","Just one more thing","just one more thing","791.45028 f191 zf","","2019-05-18","2019-05-18","3aa","3a","0","1","0","0"
"irf","a","10","759.4 qi55 b2","b1635482a","420908430490","1930","1997-01-16","Book","a","Un choix de dessins de Jean Dominique Ingres.","un choix de dessins de jean dominique ingres","759.4 qi55 b2","","2019-03-08","2019-03-08","3aa","3a","10","1","0","0"
"irf","a","0","748.2075 w2774","b2561129a","420909356137","2002","2010-08-16","Book","a","Warman's Depression glass field guide.","warmans depression glass field guide","748.2075 w2774","2010","2019-01-26","2019-01-26","baa,3ra","ba,3r","0","1","0","0"
"irf","a","0","510.71 l816 2009","b3312957a","420910107965","2009","2017-12-06","Book","a","A mathematician's lament","mathematicians lament","510.71 l816 2009","","2018-08-13","2018-08-13","2ra","2r","0","1","0","0"
"irf","a","0","796.502 k17","b2483210a","420909278218","1974","1992-03-22","Book","a","The complete outdoorsman's handbook : a guide to outdoor living and wilderness survival","complete outdoorsmans handbook a guide to outdoor living and wilderness survival","796.502 k17","","2019-03-08","2019-03-08","3ra,2ea","3r,2e","0","1","0","0"
"irf","a","0","646.7 s143","b1678196a","420908473204","1994","1995-06-29","Book","a","Simplify your life : 100 ways to slow down and enjoy the things that really matter","simplify your life 100 ways to slow down and enjoy the things that really matter","646.7 s143","","2019-06-26","2019-06-26","2sa","2s","0","1","0","0"
"irf","a","0","788.01 qw785","b1040571a","420907835579","1969","1992-03-22","Book","a","The brass instruments; performance and instructional techniques","brass instruments performance and instructional techniques","788.01 qw785","","2019-04-29","2019-04-29","3aa","3a","0","1","0","0"
"irf","a","0","070.5025 i59","b2242862a","420909037870","2004","2010-10-14","Book","a","Jeff Herman's guide to book publishers, editors, & literary agents.","jeff hermans guide to book publishers editors and literary agents","070.5025 i59","2011","2019-03-01","2019-03-01","2ra,3la","2r,3l","0","1","0","0"
"irf","a","0","833.912 k11 zbe","b2639504a","420909434512","2008","2008-06-17","Book","a","The tremendous world I have inside my head : Franz Kafka : a biographical essay","tremendous world i have inside my head franz kafka a biographical essay","833.912 k11 zbe","","2019-05-13","2019-05-13","3ra","3r","0","1","0","0"
"irf","a","0","248.842 j25","b2362405a","420909157413","2004","2004-07-31","Book","a","He-motions : even strong men struggle","he motions even strong men struggle","248.842 j25","","2018-11-20","2018-11-20","gra,osa","gr,os","0","1","0","0"
"irf","a","0","616.895 g855 zg 2016","b3177499a","420909972507","2016","2016-06-13","Book","a","Tristimania : a diary of manic depression","tristimania a diary of manic depression","616.895 g855 zg 2016","","2019-06-22","2019-06-22","2ra","2r","0","1","0","0"
"irf","a","0","917.8604 w458 2016","b3159789a","420909954797","2016","2016-04-14","Book","a","Backroads & byways of Montana : drives, day trips & weekend excursions","backroads and byways of montana drives day trips and weekend excursions","917.8604 w458 2016","","2019-05-18","2019-05-18","3ra","3r","0","1","0","0"
"irf","a","0","362.198929 l784 zl, 1995","b1621386a","420908416394","1995","1995-04-25","Book","a","Only spring : on mourning the death of my son","only spring on mourning the death of my son","362.198929 l784 zl, 1995","","2018-11-29","2018-11-29","2ra","2r","0","1","0","0"
"irf","a","0","370.117 g285 c","b1851028a","420908646036","2000","2001-05-30","Book","a","Culturally responsive teaching : theory, research, and practice","culturally responsive teaching theory research and practice","370.117 g285 c","","2019-03-11","2019-03-11","2ra","2r","0","1","0","0"
"irf","a","0","759.9492 qb742 gzb","b2204815a","420908999823","2002","2004-03-05","Book","a","Hieronymus Bosch, Garden of earthly delights","hieronymus bosch garden of earthly delights","759.9492 qb742 gzb","","2019-02-23","2019-02-23","3aa","3a","0","1","0","0"
"irf","a","0","625.261097 qs689","b1740983a","420908535991","1998","1998-08-04","Book","a","American steam locomotive","american steam locomotive","625.261097 qs689","","2019-06-08","2019-06-08","3ra","3r","0","1","0","0"
"irf","a","0","636.753709 m966 zm","b2584043a","420909379051","2010","2010-09-15","Book","a","Fixing Freddie : a true story about a boy, a mom, and a very, very bad beagle","fixing freddie a true story about a boy a mom and a very very bad beagle","636.753709 m966 zm","","2019-06-29","2019-06-29","dta","dt","0","1","0","0"
"irf","a","0","799.1758 qs715","b1884344a","420908679352","1999","1999-09-29","Book","a","The Field & stream bass-fishing handbook","field and stream bass fishing handbook","799.1758 qs715","","2019-04-28","2019-04-28","3ra","3r","0","1","0","0"
"irf","a","0","919.30437 qn532","b1540715a","420908335723","999","1995-01-18","Book","a","New Zealand travel & accommodation guide.","new zealand travel and accommodation guide","919.30437 qn532","1994","2018-08-27","2018-08-27","3ha","3h","0","1","0","0"
"irf","a","0","641.5636 b126 , 1981","b1271195a","420908066203","1981","2004-08-09","Book","a","The Back to Eden cookbook","back to eden cookbook","641.5636 b126 , 1981","","2019-01-13","2019-01-13","2sa","2s","0","1","0","0"
"irf","a","10","338.0025 qn2771","b1861708a","420908656716","2004","2019-02-27","Book","a","National minority and women-owned business directory.","national minority and women owned business directory","338.0025 qn2771","2019","2019-03-01","2019-03-01","2ra,2ga","2r,2g","10","1","0","0"
"irf","a","0","780.92 d289 zdeb","b1868473a","420908663481","1999","2000-05-05","Book","a","Debussy in performance","debussy in performance","780.92 d289 zdeb","","2019-03-20","2019-03-20","3ra","3r","0","1","0","0"
"irf","a","10","755.2 qc532","b1241083a","420908036091","1954","1992-03-22","Book","a","Masterpieces of religious art; exhibition held in connection with the Second Assembly of the World Council of Churches, July 15 through August 31, 1954.","masterpieces of religious art exhibition held in connection with the second assembly of the world council of churches july 15 through august 31 1954","755.2 qc532","","2019-02-06","2019-02-06","3aa","3a","10","1","0","0"
"irf","a","0","643.7 qc987 , 2002","b2246276a","420909041284","2002","2004-04-14","Book","a","Customizing your home : 39 step-by-step projects for turning your new house into a home","customizing your home 39 step by step projects for turning your new house into a home","643.7 qc987 , 2002","","2019-04-10","2019-04-10","3ra","3r","0","1","0","0"
"irf","a","0","821.1 c496 ztra","b1155590a","420907950598","1987","1992-03-22","Book","a","Chaucer : the earlier poetry : a study in poetic development","chaucer the earlier poetry a study in poetic development","821.1 c496 ztra","","2019-04-01","2019-04-01","3la","3l","0","1","0","0"
"irf","a","0","305.48896 g618","b2241541a","420909036549","2004","2004-04-22","Book","a","Don't play in the sun : one woman's journey through the color complex","dont play in the sun one womans journey through the color complex","305.48896 g618","","2019-05-10","2019-05-10","bha,wya","bh,wy","0","1","0","0"
"irf","a","10","977.199 qg67 1912","b2328717a","420909123725","1912","1992-03-22","Book","a","Cincinnati, the Queen City, 1788-1912","cincinnati the queen city 1788 1912","977.199 qg67 1912","","2019-04-16","2019-04-16","cra,hpa,maa,ymhs,3ca,3ga,3ha,3ea","cr,hp,ma,ym,3c,3g,3h,3e","10","1","0","0"
"irf","a","0","780 qb862 zw","b1115906a","420907910914","1970","1992-03-22","Book","a","Benjamin Britten, his life and operas.","benjamin britten his life and operas","780 qb862 zw","","2019-07-05","2019-07-05","3aa","3a","0","1","0","0"
"irf","c","157","m3.064 fj76 l","b2761044a","420909556052","2009","2010-01-28","Music Score","c","Lines, vines and trying times","lines vines and trying times","m3.064 fj76 l","","2019-06-07","2019-06-07","3ra","3r","157","1","0","0"
"irf","a","0","822.33 t7 ba","b2640669a","420909435677","2009","2009-08-20","Book","a","Othello","othello","822.33 t7 ba","","2019-06-04","2019-06-04","gra,haa,3ra","gr,ha,3r","0","1","0","0"
"irf","c","157","m6.2164 fc737 1999","b2572113a","420909367121","1999","2006-07-24","Music Score","c","Complete advanced piano solos : music for all occasions","complete advanced piano solos music for all occasions","m6.2164 fc737 1999","","2019-04-22","2019-04-22","3ra","3r","157","1","0","0"
"irf","a","0","954.035092 g195 zf 1950","b1299263a","420908094271","1950","1992-03-22","Book","a","The life of Mahatma Gandhi","life of mahatma gandhi","954.035092 g195 zf 1950","","2019-01-13","2019-01-13","3ha","3h","0","1","0","0"
"irf","a","0","305.896 f855 , 2003","b2577206a","420909372214","2003","2005-03-30","Book","a","Return to glory : the powerful stirring of the black race","return to glory the powerful stirring of the black race","305.896 f855 , 2003","","2018-10-24","2018-10-24","2ra","2r","0","1","0","0"
"irf","a","0","761 qb354 d","b2767661a","420909562669","1997","2011-07-26","Book","a","The decorative stamping sourcebook : 200+ designs for making stamps to decorate your home","decorative stamping sourcebook 200+ designs for making stamps to decorate your home","761 qb354 d","","2019-06-15","2019-06-15","osa","os","0","1","0","0"
"irf","a","0","618.9289 r573 , 1997","b1751008a","420908546016","1997","1998-08-12","Book","a","The defiant child : a parent's guide to oppositional defiant disorder","defiant child a parents guide to oppositional defiant disorder","618.9289 r573 , 1997","","2019-01-28","2019-01-28","haa","ha","0","1","0","0"
"irf","a","0","618.92855 a267","b2052711a","420908847719","2003","2003-09-08","Book","a","The late talker : what to do if your child isn't talking yet","late talker what to do if your child isnt talking yet","618.92855 a267","","2019-05-29","2019-05-29","3ra,osa","3r,os","0","1","0","0"
"irf","a","0","917.304927 k73 , 1980","b2324563a","420909119571","1980","1992-03-22","Book","a","Know your America : a guide to every state in the Union","know your america a guide to every state in the union","917.304927 k73 , 1980","v.01","2019-04-01","2019-04-01","3ha","3h","0","1","0","0"
"irf","a","0","940.530869 g885 , 2000","b1925703a","420908720711","2000","2000-07-11","Book","a","Haven : the dramatic story of 1000 World War II refugees and how they came to America","haven the dramatic story of 1000 world war ii refugees and how they came to america","940.530869 g885 , 2000","","2019-03-19","2019-03-19","3ra,osa","3r,os","0","1","0","0"
"irf","a","0","133.2548 qs592 2015","b3072615a","420909867623","2015","2015-08-12","Book","a","The book of stones : who they are & what they teach","book of stones who they are and what they teach","133.2548 qs592 2015","","2019-06-30","2019-06-30","haa,2ra","ha,2r","0","1","0","0"
"irf","a","0","302.2 c967 2008","b2733746a","420909528754","2008","2011-05-13","Book","a","35 dumb things well-intended people say : surprising things we say that widen the diversity gap","35 dumb things well intended people say surprising things we say that widen the diversity gap","302.2 c967 2008","","2019-06-05","2019-06-05","cla,wwa","cl,ww","0","1","0","0"
"irf","a","0","305.896074 b877 zb","b2157993a","420908953001","1999","2004-01-13","Book","a","Manchild in the promised land","manchild in the promised land","305.896074 b877 zb","","2019-04-10","2019-04-10","2ea","2e","0","1","0","0"
"irf","a","0","201.5 k71","b1698552a","420908493560","1995","1995-12-15","Book","a","One earth many religions : multifaith dialogue and global responsibility","one earth many religions multifaith dialogue and global responsibility","201.5 k71","","2019-06-10","2019-06-10","2ea","2e","0","1","0","0"
"irf","a","0","751.4 qd457","b1840620a","420908635628","2001","2001-07-03","Book","a","Design & composition secrets of professional artists : 16 successful painters show how they create prize-winning work","design and composition secrets of professional artists 16 successful painters show how they create prize winning work","751.4 qd457","","2019-02-04","2019-02-04","3ra","3r","0","1","0","0"
"irf","a","0","796.352097 b256 , 2000","b1916118a","420908711126","2000","2000-06-14","Book","a","Gettin' to the dance floor : an oral history of American golf","gettin to the dance floor an oral history of american golf","796.352097 b256 , 2000","","2019-02-21","2019-02-21","3ra","3r","0","1","0","0"
"irf","a","10","344.73023 s678","b2696555a","420909491563","2006","2019-04-16","Book","a","Social security handbook : overview of social security programs.","social security handbook overview of social security programs","344.73023 s678","2019","2019-04-18","2019-04-18","2ra","2r","10","1","0","0"
"irf","a","0","200.19 l438 , 1995","b1647813a","420908442821","1995","1996-04-24","Book","a","High priest","high priest","200.19 l438 , 1995","","2018-10-26","2018-10-26","2ra,2ea","2r,2e","0","1","0","0"
"irf","a","0","340.092 f831 zf, 1997","b1892560a","420908687568","1997","1998-12-07","Book","a","My life and an era : the autobiography of Buck Colbert Franklin","my life and an era the autobiography of buck colbert franklin","340.092 f831 zf, 1997","","2019-01-22","2019-01-22","2ra","2r","0","1","0","0"
"irf","a","10","011.62 w747","b1470025a","420908265033","1987","1992-08-13","Book","a","Books children love : a guide to the best children's literature","books children love a guide to the best childrens literature","011.62 w747","","2018-10-24","2018-10-24","3la","3l","10","1","0","0"
"irf","a","0","641.578 q89","b1152569a","420907947577","1989","2004-08-09","Book","a","Fresh ways with picnics & barbecues","fresh ways with picnics and barbecues","641.578 q89","","2019-05-30","2019-05-30","2sa","2s","0","1","0","0"
"irf","a","0","973.0974 n393 fo","b2109615a","420908904623","1970","1992-03-22","Book","a","America's black past; a reader in Afro-American history.","americas black past a reader in afro american history","973.0974 n393 fo","","2018-11-09","2018-11-09","3ha","3h","0","1","0","0"
"irf","a","46","780.92 f75 ma","b1019963a","420907814971","1932","1997-02-18","Book","a","The significance of Stephen Collins Foster","significance of stephen collins foster","780.92 f75 ma","","2019-07-05","2019-07-05","3ca,3aa","3c,3a","46","1","0","0"
"irf","a","10","760.074 qa332","b1114250a","420907909258","1977","1992-03-22","Book","a","Anni Albers","anni albers","760.074 qa332","","2018-09-21","2018-09-21","3aa","3a","10","1","0","0"
"irf","a","0","153.35 c182 w, 2002","b1843519a","420908638527","2002","2002-10-03","Book","a","Walking in this world : the practical art of creativity","walking in this world the practical art of creativity","153.35 c182 w, 2002","","2018-09-11","2018-09-11","2ra","2r","0","1","0","0"
"irf","a","0","179.9 c533 2016","b3220227a","420910015235","2016","2016-10-10","Book","a","Chicken soup for the soul : the power of gratitude : 101 stories about how being thankful can change your life","chicken soup for the soul the power of gratitude 101 stories about how being thankful can change your life","179.9 c533 2016","","2019-04-16","2019-04-16","osa","os","0","1","0","0"
"irf","a","0","610.730698 qa173 2016","b3015620a","420909810628","2016","2015-01-16","Book","a","Nursing assistant : a nursing process approach","nursing assistant a nursing process approach","610.730698 qa173 2016","","2018-11-13","2018-11-13","3ra","3r","0","1","0","0"
"irf","a","0","643.520973 qp884","b1901027a","420908696035","2001","2002-04-22","Book","a","Bungalow bathrooms","bungalow bathrooms","643.520973 qp884","","2019-06-08","2019-06-08","3ra","3r","0","1","0","0"
"irf","a","0","332.02401 c187 , 2006","b2547583a","420909342591","2006","2006-07-03","Book","a","Zero to zillionaire : 8 foolproof steps to financial peace of mind","zero to zillionaire 8 foolproof steps to financial peace of mind","332.02401 c187 , 2006","","2019-04-17","2019-04-17","2ra","2r","0","1","0","0"
"irf","a","0","913.32 c851 s","b2345756a","420909140764","1964","1989-04-23","Book","a","The secrets of Tutankhamen's tomb.","secrets of tutankhamens tomb","913.32 c851 s","","2019-02-05","2019-02-05","3ha","3h","0","1","0","0"
"irf","a","0","758.2 qw855 , 1997","b1592103a","420908387111","1997","1998-04-24","Book","a","Painting ships, shores, and the sea","painting ships shores and the sea","758.2 qw855 , 1997","","2019-05-16","2019-05-16","3ra","3r","0","1","0","0"
"irf","a","0","706.88 qs644","b2597665a","420909392673","2004","2006-09-13","Book","a","Internet 101 for the fine artist : with a special guide to selling art on eBay","internet 101 for the fine artist with a special guide to selling art on ebay","706.88 qs644","","2019-07-05","2019-07-05","3ra","3r","0","1","0","0"
"irf","a","0","155.937 c118 2017","b3284461a","420910079469","2017","2017-06-29","Book","a","Bearing the unbearable : love, loss, and the heartbreaking path of grief","bearing the unbearable love loss and the heartbreaking path of grief","155.937 c118 2017","","2019-05-23","2019-05-23","2ra","2r","0","1","0","0"
"irf","a","0","364.1092 h6461zh","b2409896a","420909204904","2004","2004-11-16","Book","a","On the run : a Mafia childhood","on the run a mafia childhood","364.1092 h6461zh","","2018-12-17","2018-12-17","2ra,osa","2r,os","0","1","0","0"
"irf","a","0","364.152309 r127 zb","b2737988a","420909532996","2007","2007-06-13","Book","a","Bind, torture, kill : the inside story of the serial killer next door","bind torture kill the inside story of the serial killer next door","364.152309 r127 zb","","2019-04-03","2019-04-03","cva,lva,2ra,sma,wha","cv,lv,2r,sm,wh","0","1","0","0"
"irf","a","0","758.9978 fa512 zt 2000","b1800579a","420908595587","2000","2000-10-18","Book","a","Painters and the American West : the Anschutz collection","painters and the american west the anschutz collection","758.9978 fa512 zt 2000","","2019-05-15","2019-05-15","3aa","3a","0","1","0","0"
"irf","a","0","361.70681 d618","b1795292a","420908590300","2002","2002-12-17","Book","a","Diversity in the fundraising profession","diversity in the fundraising profession","361.70681 d618","","2019-06-06","2019-06-06","2ea","2e","0","1","0","0"
"irf","a","0","428.0076 qg292 , 2006","b2567504a","420909362512","2006","2006-10-02","Book","a","Cambridge preparation for the TOEFL test","cambridge preparation for the toefl test","428.0076 qg292 , 2006","","2019-06-26","2019-06-26","2ra","2r","0","1","0","0"
"irf","a","0","133.32424 t645","b1974814a","420908769822","1999","2000-08-24","Book","a","The complete idiot's guide to tarot and fortune-telling","complete idiots guide to tarot and fortune telling","133.32424 t645","","2019-05-13","2019-05-13","2ea","2e","0","1","0","0"
"irf","a","0","635 ql897 s, 1991","b1558780a","420908353788","1991","1995-03-10","Book","a","Sunflower houses : garden discoveries for children of all ages","sunflower houses garden discoveries for children of all ages","635 ql897 s, 1991","","2019-02-05","2019-02-05","3ra","3r","0","1","0","0"
"irf","a","0","796.357092 o13 2015","b3039968a","420909834976","2015","2015-04-27","Book","a","The Cy Young catcher","cy young catcher","796.357092 o13 2015","","2018-08-05","2018-08-05","3ra","3r","0","1","0","0"
"irf","a","0","201.77 o26 2010","b2725513a","420909520521","2010","2012-05-17","Book","a","Four elements : reflections on nature","four elements reflections on nature","201.77 o26 2010","","2019-04-12","2019-04-12","2ra","2r","0","1","0","0"
"irf","a","0","613.25 t822","b2159599a","420908954607","2003","2004-01-06","Book","a","Intuitive eating : a revolutionary program that works","intuitive eating a revolutionary program that works","613.25 t822","","2019-04-26","2019-04-26","3ra,2sa","3r,2s","0","1","0","0"
"irf","a","0","332.632283 a586 2009","b2768284a","420909563292","2009","2010-02-12","Book","a","Trading options at expiration : strategies and models for winning the endgame","trading options at expiration strategies and models for winning the endgame","332.632283 a586 2009","","2019-01-22","2019-01-22","2ra","2r","0","1","0","0"
"irf","a","0","747 fj45 2014","b2959498a","420909754506","2014","2014-04-07","Book","a","Jay Jeffers : collected cool - the art of bold, stylish interiors","jay jeffers collected cool the art of bold stylish interiors","747 fj45 2014","","2018-05-24","2018-05-24","coa,foa,3ra","co,fo,3r","0","1","0","0"
"irf","a","0","158.1 h647 b 1991","b1407471a","420908202479","1991","1991-10-25","Book","a","Think and grow rich : a Black choice","think and grow rich a black choice","158.1 h647 b 1991","","2019-06-07","2019-06-07","gra,2ea,wta","gr,2e,wt","0","1","0","0"
"irf","a","0","811.6 c514 s 2014","b2969676a","420909764684","2014","2014-05-21","Book","a","Split","split","811.6 c514 s 2014","","2019-05-20","2019-05-20","3ra","3r","0","1","0","0"
"irf","a","0","658.154 d551 b, 1993","b1406763a","420908201771","1993","1993-12-08","Book","a","Budgeting for a small business","budgeting for a small business","658.154 d551 b, 1993","","2018-12-08","2018-12-08","2ga","2g","0","1","0","0"
"irf","a","0","512 h888 c","b2636377a","420909431385","2004","2005-08-02","Book","a","College algebra demystified","college algebra demystified","512 h888 c","","2019-06-29","2019-06-29","2ra,2sa","2r,2s","0","1","0","0"
"irf","a","0","709.519 qm158 , 1992","b1314796a","420908109804","1992","1992-11-25","Book","a","Korean art and design","korean art and design","709.519 qm158 , 1992","","2019-02-25","2019-02-25","3aa","3a","0","1","0","0"
"irf","a","0","253 a432 2006","b2879786a","420909674794","2006","2013-07-26","Book","a","Leading with a limp : take full advantage of your most powerful weakness","leading with a limp take full advantage of your most powerful weakness","253 a432 2006","","2019-04-30","2019-04-30","2ra","2r","0","1","0","0"
"irf","a","10","796.357 b928 zs 2012","b3412087a","420910207095","2012","2018-12-12","Book","a","One season in the sun","one season in the sun","796.357 b928 zs 2012","","2018-12-29","2018-12-29","1haoo","1h","10","1","0","0"
"irf","a","0","610.730711 qn961","b2681949a","420909476957","2005","2016-08-04","Book","a","NSEE : nursing school entrance exams.","nsee nursing school entrance exams","610.730711 qn961","4th_ed. 2011","2013-05-13","2013-05-13","cra,gra,2ra,rea","cr,gr,2r,re","0","0","0","0"
"mag","a","","346.771043qo372","b1870767a","420908665775","1997","1999-06-01","Book","a","Anderson's ... Ohio real estate law handbook.","andersons ohio real estate law handbook","346.771043qo372","","2019-04-06","2019-04-06","2ma","2m","","1","0","0"
"none","g","","dvd children a3161k 2005","b2649549a","420909444557","2005","2005-07-22","DVD","g","Aladdin and the King of Thieves [videorecording]","aladdin and the king of thieves videorecording","dvd children a3161k 2005","","2019-04-22","2019-06-28","none","no","","17","0","0"
"none","j","","cd-rock j. j11j 1993","b1855343a","420908650351","1993","1999-11-02","Music CD","j","The J. Geils Band anthology [sound recording] : houseparty.","j geils band anthology sound recording houseparty","cd-rock j. j11j 1993","","2019-01-10","2019-07-04","none","no","","10","0","0"
"none","l","","fiction","b2871473a","420909666481","2012","2013-05-20","Large Print","l","The 100-year-old man who climbed out the window and disappeared","100 year old man who climbed out the window and disappeared","fiction","","2019-01-21","2019-07-05","none","no","","10","0","0"
"none","a","","595.799 s452hon2 2010","b3248708a","420910043716","2010","2017-03-21","Book","a","Honeybee democracy","honeybee democracy","595.799 s452hon2 2010","","2019-02-18","2019-06-17","none","no","","8","0","0"
"none","g","","dvd comedy f648 2005","b2761620a","420909556628","2005","2006-02-27","DVD","g","The flying deuces [videorecording].","flying deuces videorecording","dvd comedy f648 2005","","2016-07-27","2019-03-29","none","no","","7","0","0"
"none","j","","cd-rap salt-n-pepa s178bl 1990","b1694476a","420908489484","1990","1998-09-21","Music CD","j","Blacks' magic [sound recording]","blacks magic sound recording","cd-rap salt-n-pepa s178bl 1990","","2018-10-13","2019-06-22","none","no","","6","0","0"
"none","a","","fiction","b2696123a","420909491131","2012","2012-04-25","Book","a","Silenced","silenced","fiction","","2018-07-05","2019-06-21","none","no","","5","0","0"
"none","a","","917.87520433 i59","b1798991a","420908593999","1999","2011-04-04","Book","a","The Insiders' guide to Yellowstone & Grand Teton.","insiders guide to yellowstone and grand teton","917.87520433 i59","","2019-02-18","2019-05-17","none","no","","5","0","0"
"none","j","","cd-rock godsmack g589o 2004","b2209925a","420909004933","2004","2004-03-18","Music CD","j","The other side [sound recording]","other side sound recording","cd-rock godsmack g589o 2004","","2019-04-26","2019-06-30","none","no","","5","0","0"
"none","a","","796.8159 qo63 2011","b2799151a","420909594159","2011","2013-01-04","Book","a","Modern wing chun kung fu : a practical guide to combat and self-defense","modern wing chun kung fu a practical guide to combat and self defense","796.8159 qo63 2011","","2018-08-22","2019-04-02","none","no","","4","0","0"
"none","a","","378.1662 d878 2006","b2564977a","420909359985","2006","2006-07-21","Book","a","GRE","gre","378.1662 d878 2006","","2019-03-22","2019-06-04","none","no","","4","0","0"
"none","a","","917.8652 i59","b2545936a","420909340944","2001","2011-05-02","Book","a","Insiders' guide to Glacier National Park.","insiders guide to glacier national park","917.8652 i59","","2018-08-09","2019-07-05","none","no","","4","0","0"
"none","a","","919.6941h632","b2396309a","420909191317","2002","2009-01-02","Book","a","Hidden Kauai.","hidden kauai","919.6941h632","","2018-11-28","2019-06-14","none","no","","4","0","0"
"none","j","","cd-popular billboard b596h88 1994","b1779085a","420908574093","1994","1999-05-10","Music CD","j","Billboard top hits. 1988 [sound recording].","billboard top hits 1988 sound recording","cd-popular billboard b596h88 1994","","2018-07-07","2019-02-10","none","no","","4","0","0"
"none","a","","917.9248f932","b2388277a","420909183285","1998","2012-02-28","Book","a","Frommer's Zion & Bryce Canyon National Parks.","frommers zion and bryce canyon national parks","917.9248f932","","2018-08-10","2019-07-01","none","no","","4","0","0"
"none","j","","cd-popular gaye g286l 2002","b1882536a","420908677544","2002","2002-04-10","Music CD","j","Love songs [sound recording] : bedroom ballads","love songs sound recording bedroom ballads","cd-popular gaye g286l 2002","","2019-04-12","2019-06-23","none","no","","3","0","0"
"none","l","","fiction","b2874953a","420909669961","2013","2013-06-07","Large Print","l","A bat in the belfry","bat in the belfry","fiction","","2018-07-12","2018-12-05","none","no","","3","0","0"
"none","a","","158.1 s972 2016","b3204728a","420909999736","2016","2016-08-31","Book","a","The completion process : the practice of putting yourself back together again","completion process the practice of putting yourself back together again","158.1 s972 2016","","2018-07-30","2019-06-21","none","no","","3","0","0"
"none","q","","pl-pack easy m678 2013","b2960110a","420909755118","2013","2014-05-12","Playaway","q","Miss Nelson is missing! : and other storybook classics","miss nelson is missing and other storybook classics","pl-pack easy m678 2013","","2019-01-06","2019-05-10","none","no","","3","0","0"
"none","a","","fiction","b1768839a","420908563847","1997","2002-07-30","Book","a","Killer calories : a Savannah Reid mystery","killer calories a savannah reid mystery","fiction","","2018-10-13","2019-03-21","none","no","","3","0","0"
"none","a","","917.88604i59","b1584766a","420908379774","1994","2009-08-18","Book","a","The Insiders' guide to Boulder & Rocky Mountain National Park.","insiders guide to boulder and rocky mountain national park","917.88604i59","","2018-10-18","2019-05-06","none","no","","3","0","0"
"none","a","","917.970443 f932","b1799104a","420908594112","1998","2010-11-05","Book","a","Frommer's ... Washington State.","frommers washington state","917.970443 f932","","2018-11-19","2019-02-11","none","no","","3","0","0"
"none","q","","pl-spoken fiction evans","b2808774a","420909603782","2012","2012-09-19","Playaway","q","The road to grace [electronic resource] : a novel","road to grace electronic resource a novel","pl-spoken fiction evans","","2018-07-31","2019-06-11","none","no","","2","0","0"
"none","a","","917.950444f932","b1979054a","420908774062","1998","2012-04-30","Book","a","Frommer's Oregon.","frommers oregon","917.950444f932","","2018-11-19","2019-06-18","none","no","","2","0","0"
"none","a","","fiction","b2886847a","420909681855","2008","2013-10-01","Book","a","The shadow of the bear : a fairy tale retold","shadow of the bear a fairy tale retold","fiction","","2018-08-18","2018-12-15","none","no","","2","0","0"
"none","j","","cd-rap trick t823t 2001","b2953600a","420909748608","2001","2014-03-20","Music CD","j","Thugs are us [sound recording]","thugs are us sound recording","cd-rap trick t823t 2001","","2019-03-07","2019-05-29","none","no","","2","0","0"
"none","a","4","332.024008 k62","b2516518a","420909311526","2004","2004-12-06","Book","a","Rich dad, poor dad for teens : the secrets about money, that you don't learn in school!","rich dad poor dad for teens the secrets about money that you dont learn in school","332.024008 k62","","2019-03-13","2019-06-21","wwt","ww","4","2","0","0"
"none","a","","614.150979 s438zs 2014","b2983703a","420909778711","2014","2014-09-12","Book","a","Behind the gates of Gomorrah : a year with the criminally insane","behind the gates of gomorrah a year with the criminally insane","614.150979 s438zs 2014","","2019-02-25","2019-06-30","none","no","","2","0","0"
"none","a","","304.2076 qc883","b2986898a","420909781906","2009","2014-09-16","Book","a","Cracking the AP human geography exam.","cracking the ap human geography exam","304.2076 qc883","","2019-02-18","2019-06-06","none","no","","2","0","0"
"none","a","","fiction","b2814792a","420909609800","2012","2012-11-13","Book","a","Stranger in the moonlight : a novel","stranger in the moonlight a novel","fiction","","2018-08-22","2019-03-11","none","no","","2","0","0"
"none","g","","dvd 613.7148 q1 2004","b2604284a","420909399292","2004","2006-09-27","DVD","g","Qigong [videorecording] : beginning practice","qigong videorecording beginning practice","dvd 613.7148 q1 2004","","2019-03-27","2019-04-28","none","no","","2","0","0"
"none","a","","917.59410463l634","b1069318a","420907864326","1990","2008-10-14","Book","a","Hidden Florida Keys & Everglades.","hidden florida keys and everglades","917.59410463l634","","2019-02-07","2019-06-13","none","no","","2","0","0"
"none","a","","916.2045f653","b1218997a","420908014005","999","2011-03-14","Book","a","Fodor's Egypt.","fodors egypt","916.2045f653","","2019-04-29","2019-06-14","none","no","","2","0","0"
"none","l","","fiction","b2499646a","420909294654","2004","2004-12-07","Large Print","l","Photo finished","photo finished","fiction","","2019-01-25","2019-03-26","none","no","","2","0","0"
"none","a","","813.54 k54zl 2011","b2888870a","420909683878","2011","2013-11-15","Book","a","How to analyze the works of Stephen King","how to analyze the works of stephen king","813.54 k54zl 2011","","2019-02-19","2019-05-19","none","no","","2","0","0"
"none","a","","613.2 w494 2014","b2995566a","420909790574","2014","2014-10-20","Book","a","The earth diet : your complete guide to living using earth's natural ingredients","earth diet your complete guide to living using earths natural ingredients","613.2 w494 2014","","2019-05-09","2019-06-10","none","no","","2","0","0"
"none","a","","581.630981s386zd, 1996","b1664321a","420908459329","1996","1996-09-13","Book","a","One river : explorations and discoveries in the Amazon rain forest","one river explorations and discoveries in the amazon rain forest","581.630981s386zd, 1996","","2018-03-20","2019-01-24","none","no","","2","0","0"
"none","a","","917.4702 b864 2013","b2874791a","420909669799","2013","2013-06-17","Book","a","Discovering vintage New York : a guide to the city's timeless shops, bars, delis & more","discovering vintage new york a guide to the citys timeless shops bars delis and more","917.4702 b864 2013","","2018-09-28","2019-06-20","none","no","","2","0","0"
"none","a","","914.3712045f932","b1825233a","420908620241","1996","2012-04-02","Book","a","Frommer's Prague and the best of the Czech Republic.","frommers prague and the best of the czech republic","914.3712045f932","","2018-11-30","2019-01-13","none","no","","2","0","0"
"none","a","","917.860405f932","b1597803a","420908392811","1996","2012-06-05","Book","a","Frommer's ... Montana & Wyoming.","frommers montana and wyoming","917.860405f932","","2018-07-29","2019-05-20","none","no","","2","0","0"
"none","a","","730.1 s617 2016","b3211091a","420910006099","2016","2016-09-29","Book","a","Ceramics : contemporary artists working in clay","ceramics contemporary artists working in clay","730.1 s617 2016","","2018-07-27","2019-02-11","none","no","","2","0","0"
"none","a","","738.144 qt238 2014","b3016769a","420909811777","2014","2015-01-13","Book","a","Glaze : the ultimate ceramic artist's guide to glaze and color","glaze the ultimate ceramic artists guide to glaze and color","738.144 qt238 2014","","2019-02-11","2019-03-27","none","no","","2","0","0"
"none","j","","cd-rap insane i59h 2004","b2536595a","420909331603","2004","2006-02-03","Music CD","j","Hell's pit [sound recording]","hells pit sound recording","cd-rap insane i59h 2004","","2015-04-09","2019-05-01","none","no","","2","0","0"
"none","a","","fiction","b2690936a","420909485944","2007","2007-03-15","Book","a","Drake & Josh : alien invasion","drake and josh alien invasion","fiction","","2018-11-28","2019-01-30","none","no","","2","0","0"
"none","a","","fiction","b2046910a","420908841918","2003","2003-09-02","Book","a","Ricky Ricotta's Mighty Robot vs. the Stupid Stinkbugs from Saturn : the sixth robot adventure novel","ricky ricottas mighty robot vs the stupid stinkbugs from saturn the sixth robot adventure novel","fiction","","2019-05-06","2019-05-06","none","no","","2","0","0"
"none","q","","pl-spoken fiction bass","b2808799a","420909603807","2012","2012-09-19","Playaway","q","The inquisitor's key [electronic resource]","inquisitors key electronic resource","pl-spoken fiction bass","","2018-10-10","2019-01-30","none","no","","2","0","0"
"none","j","","cd-rap method m592ti 1994","b2580093a","420909375101","1994","2012-01-30","Music CD","j","Tical [sound recording]","tical sound recording","cd-rap method m592ti 1994","","2019-03-17","2019-05-11","none","no","","2","0","0"
"none","a","","916.76204f653","b1303696a","420908098704","1992","1992-09-30","Book","a","Fodor's Kenya & Tanzania.","fodors kenya and tanzania","916.76204f653","","2014-07-18","2019-04-30","none","no","","2","0","0"
"none","a","","m7.89164 fs612 2016","b3182436a","420909977444","2016","2016-07-06","Book","a","Simple songs : the easiest tunes to strum & sing on ukulele.","simple songs the easiest tunes to strum and sing on ukulele","m7.89164 fs612 2016","","2019-03-04","2019-05-16","none","no","","2","0","0"
"none","q","","pl-view easy m495pb 2014","b2993235a","420909788243","2014","2014-10-20","Playaway","q","Meet the phonics. Blends","meet the phonics blends","pl-view easy m495pb 2014","","2019-04-05","2019-05-13","none","no","","2","0","0"
"none","a","","796.812092 h746zh 2013","b2843234a","420909638242","2013","2013-04-29","Book","a","The hardcore truth : the Bob Holly story","hardcore truth the bob holly story","796.812092 h746zh 2013","","2018-10-28","2019-05-17","none","no","","2","0","0"
"none","a","","919.04d665","b1143304a","420907938312","1991","2008-08-07","Book","a","Frommer's ... South Pacific.","frommers south pacific","919.04d665","","2017-05-05","2018-06-08","none","no","","2","0","0"
"none","a","","364.152303 qn565 2006","b2982731a","420909777739","2006","2014-08-08","Book","a","The encyclopedia of serial killers","encyclopedia of serial killers","364.152303 qn565 2006","","2019-01-23","2019-04-04","none","no","","2","0","0"
"none","a","","641.58o39, 2005","b2590049a","420909385057","2005","2011-01-13","Book","a","Cooking with convection","cooking with convection","641.58o39, 2005","","2019-02-25","2019-07-03","none","no","","2","0","0"
"none","j","","cd-rap twista t974k 2004","b2233731a","420909028739","2004","2004-04-15","Music CD","j","Kamikaze [sound recording]","kamikaze sound recording","cd-rap twista t974k 2004","","2019-03-08","2019-05-12","none","no","","2","0","0"
"none","a","","917.55044f653","b1584711a","420908379719","1991","2011-05-02","Book","a","Fodor's Virginia & Maryland.","fodors virginia and maryland","917.55044f653","","2019-05-01","2019-07-03","none","no","","2","0","0"
"none","a","","917.940453f932","b1664359a","420908459367","1996","2013-01-04","Book","a","Frommer's ... California.","frommers california","917.940453f932","","2019-02-16","2019-07-05","none","no","","2","0","0"
"none","a","","917.530442m991","b2609619a","420909404627","2003","2011-10-24","Book","a","Washington, DC.","washington dc","917.530442m991","","2019-02-19","2019-04-14","none","no","","2","0","0"
"none","2","123","ebook","b3334174a","420910129182","2018","2018-02-08","Downloadable Book","2","Hope in the holler [electronic resource]","hope in the holler electronic resource","ebook","","2018-07-15","2018-07-15","vi","vi","123","1","0","0"
"none","a","","easy","b2718322a","420909513330","2007","2008-11-06","Book","a","Cincinnati Reds 101 : my first team-board-book","cincinnati reds 101 my first team board book","easy","","2019-06-15","2019-06-15","none","no","","1","0","0"
"none","l","","fiction","b2538116a","420909333124","2004","2005-01-12","Large Print","l","Indelible","indelible","fiction","","2018-09-05","2018-09-05","none","no","","1","0","0"
"none","j","","cd-rap slum s634f1 2006","b2981814a","420909776822","2006","2014-11-13","Music CD","j","Fan-tas-tic. Vol. 1 [sound recording]","fan tas tic vol 1 sound recording","cd-rap slum s634f1 2006","","2019-04-30","2019-04-30","none","no","","1","0","0"
"none","a","","738.127 qb862 2014","b3014150a","420909809158","2014","2014-12-11","Book","a","The complete guide to mid-range glazes : glazing and firing at cones 4-7","complete guide to mid range glazes glazing and firing at cones 4 7","738.127 qb862 2014","","2019-03-11","2019-03-11","none","no","","1","0","0"
"none","a","4","fiction","b2647180a","420909442188","2005","2005-08-10","Book","a","Kissing coffins","kissing coffins","fiction","","2018-08-27","2018-08-27","cvt,hat,lvt,ret","cv,ha,lv,re","4","1","0","0"
"none","2","123","ebook","b3381412a","420910176420","2018","2018-08-28","Downloadable Book","2","The official ACT prep guide. [electronic resource] 2018-2019 : the only official prep guide from the makers of the ACT","official act prep guide electronic resource 2018 2019 the only official prep guide from the makers of the act","ebook","","2019-03-18","2019-03-18","vi","vi","123","1","0","0"
"none","-","199","xx(1331339.1)","b2281173a","420909076181","1956","1990-11-06","Undefined","-","Ferdinand Magellan","ferdinand magellan","xx(1331339.1)","","2019-05-08","2019-05-08","1zzzz","1z","199","1","0","0"
"none","a","","914.40483l649","b1954902a","420908749910","1998","2011-01-04","Book","a","Let's go. France.","lets go france","914.40483l649","","2016-09-03","2016-09-03","none","no","","1","0","0"
"none","a","","914.336404882 f932","b2290391a","420909085399","1997","2011-02-28","Book","a","Frommer's Munich & the Bavarian Alps.","frommers munich and the bavarian alps","914.336404882 f932","","2019-04-01","2019-04-01","none","no","","1","0","0"
"none","3","121","emusic","b3143870a","420909938878","2016","2016-02-10","Downloadable Music","3","The day life began [electronic resource]","day life began electronic resource","emusic","","2018-07-06","2018-07-06","vi","vi","121","1","0","0"
"none","q","","pl-spoken fiction griggs","b2819301a","420909614309","2012","2012-12-10","Playaway","q","The other side of goodness [electronic resource]","other side of goodness electronic resource","pl-spoken fiction griggs","","2019-07-06","2019-07-06","none","no","","1","0","0"
"none","a","","fiction","b2794047a","420909589055","2009","2012-08-07","Book","a","Sir Dalton and the shadow heart","sir dalton and the shadow heart","fiction","","2019-05-02","2019-05-02","none","no","","1","0","0"
"none","a","","fiction","b2644021a","420909439029","2006","2006-11-10","Book","a","Lady sings the cruels","lady sings the cruels","fiction","","2018-03-03","2018-03-03","none","no","","1","0","0"
"none","l","","fiction","b2996290a","420909791298","2014","2014-10-08","Large Print","l","What she left behind","what she left behind","fiction","","2018-10-30","2018-10-30","none","no","","1","0","0"
"none","j","","cd-popular 90s n714n 1997 v.1","b1930326a","420908725334","1997","2000-01-07","Music CD","j","90s now. Volume 1 [sound recording].","90s now volume 1 sound recording","cd-popular 90s n714n 1997 v.1","","2018-08-06","2018-08-06","none","no","","1","0","0"
"none","a","","919.69210441 f932","b1687214a","420908482222","1996","2012-09-25","Book","a","Frommer's ... Maui.","frommers maui","919.69210441 f932","","2019-06-04","2019-06-04","none","no","","1","0","0"
"none","a","4","fiction","b2692955a","420909487963","2007","2007-02-08","Book","a","Divine confidential","divine confidential","fiction","","2018-03-03","2018-03-03","avt,mdt","av,md","4","1","0","0"
"none","a","","fiction","b2753305a","420909548313","2011","2011-08-03","Book","a","Pride : the 1st deadly sin","pride the 1st deadly sin","fiction","","2018-03-03","2018-03-03","none","no","","1","0","0"
"none","3","121","emusic","b3223022a","420910018030","2016","2016-10-07","Downloadable Music","3","Unbreakable [electronic resource]","unbreakable electronic resource","emusic","","2018-07-06","2018-07-06","vi","vi","121","1","0","0"
"none","j","","cd-rock doors d691la 1985","b1424853a","420908219861","1985","1993-03-23","Music CD","j","L.A. woman [sound recording]","l a woman sound recording","cd-rock doors d691la 1985","","2018-12-11","2018-12-11","none","no","","1","0","0"
"none","a","","977.01 l338zb 2016","b3160550a","420909955558","2016","2016-04-11","Book","a","The last voyageurs : retracing La Salle's journey across America : sixteen teenagers on the adventure of a lifetime","last voyageurs retracing la salles journey across america sixteen teenagers on the adventure of a lifetime","977.01 l338zb 2016","","2019-03-22","2019-03-22","none","no","","1","0","0"
"none","a","","fiction","b2547699a","420909342707","2005","2005-02-16","Book","a","Going broke","going broke","fiction","","2018-03-03","2018-03-03","none","no","","1","0","0"
"none","a","4","fiction","b2553078a","420909348086","2008","2009-01-16","Book","a","Friends close, enemies closer : an in or out novel","friends close enemies closer an in or out novel","fiction","","2019-05-16","2019-05-16","cot","co","4","1","0","0"
"none","a","","355.00973qa8613","b1961974a","420908756982","2001","2001-10-31","Book","a","ASVAB, Armed Services Vocational Aptitude Battery.","asvab armed services vocational aptitude battery","355.00973qa8613","2004","2018-12-03","2018-12-03","none","no","","1","0","0"
"none","a","","fiction","b2536297a","420909331305","2007","2007-10-12","Book","a","Blow your mind","blow your mind","fiction","","2018-03-03","2018-03-03","none","no","","1","0","0"
"none","a","","513.12qs631, 1994","b1401026a","420908196034","1994","1994-09-23","Book","a","Basic math skills","basic math skills","513.12qs631, 1994","","2018-10-05","2018-10-05","none","no","","1","0","0"
"none","l","","616.89 c648zc 2015a","b3184831a","420909979839","2015","2016-06-28","Large Print","l","Resilience : two sisters and a story of mental illness","resilience two sisters and a story of mental illness","616.89 c648zc 2015a","","2018-07-29","2018-07-29","none","no","","1","0","0"
"none","a","","917.59380464u58","b2452774a","420909247782","2001","2004-11-30","Book","a","The unofficial guide to South Florida, including Miami & the Keys.","unofficial guide to south florida including miami and the keys","917.59380464u58","","2019-06-21","2019-06-21","none","no","","1","0","0"
"none","a","","919.6910442h389","b2064013a","420908859021","2002","2008-09-25","Book","a","Hawaii, the big island.","hawaii the big island","919.6910442h389","","2019-01-11","2019-01-11","none","no","","1","0","0"
"none","a","","338.040973 f671 2010","b2808726a","420909603734","1991","2012-09-25","Book","a","The myth of the robber barons : a new look at the rise of big business in America","myth of the robber barons a new look at the rise of big business in america","338.040973 f671 2010","","2019-05-23","2019-05-23","none","no","","1","0","0"
"none","2","123","ebook","b2924267a","420909719275","2012","2013-12-06","Downloadable Book","2","The outsiders [electronic resource]","outsiders electronic resource","ebook","","2017-06-16","2017-06-16","vi","vi","123","1","0","0"
"none","a","4","fiction","b2644764a","420909439772","2008","2008-06-06","Book","a","Evernight","evernight","fiction","","2018-11-10","2018-11-10","smt","sm","4","1","0","0"
"none","1","120","eaudio","b3445256a","420910240264","2019","2019-03-22","Downloadable Audiobook","1","Sissy [electronic resource] : a coming-of-gender story","sissy electronic resource a coming of gender story","eaudio","","2019-06-27","2019-06-27","vi","vi","120","1","0","0"
"none","a","","917.890453 f9322","b1983452a","420908778460","1997","2011-01-24","Book","a","Frommer's New Mexico.","frommers new mexico","917.890453 f9322","","2019-05-31","2019-05-31","none","no","","1","0","0"
"none","a","","fiction","b2872139a","420909667147","2013","2013-05-14","Book","a","Storm of sharks","storm of sharks","fiction","","2019-02-26","2019-02-26","none","no","","1","0","0"
"none","-","141","374 ft583","b1817145a","420908612153","1988","2002-02-12","Undefined","-","Time well-spent : a manual for visiting older adults","time well spent a manual for visiting older adults","374 ft583","","2017-08-31","2017-08-31","osa","os","141","1","0","0"
"none","a","","305.235095 d687 2008","b3042068a","420909837076","2008","2015-05-12","Book","a","Teens in South Korea","teens in south korea","305.235095 d687 2008","","2019-02-13","2019-02-13","none","no","","1","0","0"
"none","1","120","eaudio","b3080236a","420909875244","2014","2015-08-14","Downloadable Audiobook","1","China dolls [electronic resource] : a novel","china dolls electronic resource a novel","eaudio","","2018-07-18","2018-07-18","vi","vi","120","1","0","0"
"none","a","4","fiction","b2773573a","420909568581","2011","2011-08-09","Book","a","I'm not her","im not her","fiction","","2018-07-08","2018-07-08","sht,wwt","sh,ww","4","1","0","0"
"none","1","120","eaudio","b3022987a","420909817995","2014","2015-01-26","Downloadable Audiobook","1","Twist [electronic resource] : a Mageri series novel","twist electronic resource a mageri series novel","eaudio","","2018-06-30","2018-06-30","vi","vi","120","1","0","0"
"none","a","","808.1f614, 2002","b1920351a","420908715359","2002","2002-10-22","Book","a","Poetry matters : writing a poem from the inside out","poetry matters writing a poem from the inside out","808.1f614, 2002","","2018-08-21","2018-08-21","none","no","","1","0","0"
"none","a","","fiction","b2571437a","420909366445","2008","2008-01-04","Book","a","Leftovers","leftovers","fiction","","2017-10-20","2017-10-20","none","no","","1","0","0"
"none","a","","576.501d271, 1976","b2018541a","420908813549","1976","1992-03-22","Book","a","The selfish gene","selfish gene","576.501d271, 1976","","2019-04-11","2019-04-11","none","no","","1","0","0"
"none","2","123","ebook","b3284914a","420910079922","2012","2017-06-08","Downloadable Book","2","Teach like a pirate [electronic resource] : increase student engagement, boost your creativity, and transform your life as an educator","teach like a pirate electronic resource increase student engagement boost your creativity and transform your life as an educator","ebook","","2018-07-13","2018-07-13","vi","vi","123","1","0","0"
"none","a","","914.210486 a771","b1828646a","420908623654","2001","2013-06-07","Book","a","Around London with kids.","around london with kids","914.210486 a771","","2019-06-26","2019-06-26","none","no","","1","0","0"
"none","l","","fiction","b1990160a","420908785168","1999","1999-08-02","Large Print","l","Kissed a sad goodbye","kissed a sad goodbye","fiction","","2017-09-13","2017-09-13","none","no","","1","0","0"
"none","a","","613.7046 s587 2014","b3004961a","420909799969","2014","2014-11-03","Book","a","The joy of yoga : fifty sequences for your home and studio practice","joy of yoga fifty sequences for your home and studio practice","613.7046 s587 2014","","2019-06-13","2019-06-13","none","no","","1","0","0"
"none","a","","easy","b1901710a","420908696718","2000","2001-01-24","Book","a","Maisy drives the bus","maisy drives the bus","easy","","2018-06-23","2018-06-23","none","no","","1","0","0"
"none","a","","easy","b2108947a","420908903955","1970","2003-10-21","Book","a","Henny-Penny : a picture book","henny penny a picture book","easy","","2017-08-14","2017-08-14","none","no","","1","0","0"
"none","1","120","eaudio","b2949499a","420909744507","2009","2014-02-25","Downloadable Audiobook","1","Your money or your life [electronic resource]","your money or your life electronic resource","eaudio","","2018-07-23","2018-07-23","vi","vi","120","1","0","0"
"none","1","120","eaudio","b3347993a","420910143001","2018","2018-04-11","Downloadable Audiobook","1","The burning maze [electronic resource]","burning maze electronic resource","eaudio","","2018-07-13","2018-07-13","vi","vi","120","1","0","0"
"none","2","123","ebook","b3363582a","420910158590","2018","2018-06-14","Downloadable Book","2","Christmas cake murder [electronic resource]","christmas cake murder electronic resource","ebook","","2018-10-19","2018-10-19","vi","vi","123","1","0","0"
"none","a","","917.530441 w3193","b1792087a","420908587095","1997","2011-08-01","Book","a","The Rough guide to Washington DC.","rough guide to washington dc","917.530441 w3193","","2019-04-14","2019-04-14","none","no","","1","0","0"
"none","2","123","ebook","b3167958a","420909962966","2013","2016-04-12","Downloadable Book","2","The wolf princess [electronic resource]","wolf princess electronic resource","ebook","","2018-07-10","2018-07-10","vi","vi","123","1","0","0"
"none","g","103","dvd 973 t5832e3 2014","b3125690a","420909920698","2014","2015-12-17","DVD","g","Timeless trivia. Episode three, Famous faces, famous places [videorecording]","timeless trivia episode three famous faces famous places videorecording","dvd 973 t5832e3 2014","","2019-06-26","2019-06-26","osa","os","103","1","0","0"
"none","j","","cdp 01150a","b2629295a","420909424303","1991","2006-10-16","Music CD","j","Out of time [sound recording]","out of time sound recording","cdp 01150a","","2019-04-11","2019-04-11","none","no","","1","0","0"
"none","a","","658.827 y54 2014","b2924089a","420909719097","2014","2014-01-17","Book","a","What great brands do : the seven brand-building principles that separate the best from the rest","what great brands do the seven brand building principles that separate the best from the rest","658.827 y54 2014","","2019-02-26","2019-02-26","none","no","","1","0","0"
"none","a","","fiction","b2773715a","420909568723","2010","2010-03-03","Book","a","Split ends","split ends","fiction","","2018-03-03","2018-03-03","none","no","","1","0","0"
"none","a","","379.260973 s617 2015","b3099363a","420909894371","2015","2015-10-16","Book","a","Courageous conversations about race : a field guide for achieving equity in schools","courageous conversations about race a field guide for achieving equity in schools","379.260973 s617 2015","","2019-05-11","2019-05-11","none","no","","1","0","0"
"none","q","","pl-spoken fiction patterson","b2808788a","420909603796","2012","2012-09-19","Playaway","q","Fall from grace [electronic resource]","fall from grace electronic resource","pl-spoken fiction patterson","","2019-03-23","2019-03-23","none","no","","1","0","0"
"none","a","","799.202832 qt114 2013","b2888511a","420909683519","2013","2013-10-17","Book","a","Shooter's bible guide to the hunting rifle & its ammunition","shooters bible guide to the hunting rifle and its ammunition","799.202832 qt114 2013","","2018-12-22","2018-12-22","none","no","","1","0","0"
"none","a","","616.8526 b824 2000","b2793719a","420909588727","2000","2012-08-13","Book","a","Health food junkies : overcoming the obession with healthful eating","health food junkies overcoming the obession with healthful eating","616.8526 b824 2000","","2019-05-05","2019-05-05","none","no","","1","0","0"
"none","2","123","ebook","b2973711a","420909768719","2014","2014-06-18","Downloadable Book","2","China dolls [electronic resource] : a novel","china dolls electronic resource a novel","ebook","","2018-07-18","2018-07-18","vi","vi","123","1","0","0"
"none","a","","759.4 qm86zm2 2012","b2808903a","420909603911","2012","2012-09-24","Book","a","Berthe Morisot (1841-1895)","berthe morisot 1841 1895","759.4 qm86zm2 2012","","2018-09-21","2018-09-21","none","no","","1","0","0"
"none","a","","346.77105 qa222","b1273843a","420908068851","1990","2013-07-24","Book","a","Anderson's ... Ohio probate practice and procedure.","andersons ohio probate practice and procedure","346.77105 qa222","","2019-05-04","2019-05-04","none","no","","1","0","0"
"none","a","","833.914 s783zs 2012","b2794008a","420909589016","2012","2012-08-07","Book","a","We're flying : stories","were flying stories","833.914 s783zs 2012","","2018-10-31","2018-10-31","none","no","","1","0","0"
"none","1","120","eaudio","b3422159a","420910217167","2019","2019-02-04","Downloadable Audiobook","1","The Lost girl [electronic resource]","lost girl electronic resource","eaudio","","2019-05-14","2019-05-14","vi","vi","120","1","0","0"
"none","l","","fiction","b1910748a","420908705756","2001","2001-09-17","Large Print","l","Never change","never change","fiction","","2018-06-29","2018-06-29","none","no","","1","0","0"
"none","a","","916.1045 n864","b2793239a","420909588247","2009","2012-10-02","Book","a","North Africa : the Roman coast : the Bradt travel guide.","north africa the roman coast the bradt travel guide","916.1045 n864","","2019-03-29","2019-03-29","none","no","","1","0","0"