-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyunreading.sql
9282 lines (9232 loc) · 432 KB
/
yunreading.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 3.3.2deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Nov 09, 2012 at 05:29 AM
-- Server version: 5.1.41
-- PHP Version: 5.3.2-1ubuntu4.17
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `yunreading`
--
-- --------------------------------------------------------
--
-- Table structure for table `Book`
--
CREATE TABLE IF NOT EXISTS `Book` (
`b_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
`UUID` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`author` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
`publisher` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
`publish_date` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`create_date` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`rights` text COLLATE utf8_unicode_ci,
`cover_path` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
`content_path` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
`price` decimal(10,0) DEFAULT NULL,
`totalChapter` int(11) DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
`borrowerLimit` int(11) DEFAULT NULL,
`popularity` int(11) DEFAULT '0',
`language` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL,
`uploaded_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`uploader` int(11) DEFAULT NULL,
PRIMARY KEY (`b_id`),
UNIQUE KEY `UUID` (`UUID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=202 ;
--
-- Dumping data for table `Book`
--
INSERT INTO `Book` (`b_id`, `title`, `UUID`, `author`, `publisher`, `publish_date`, `create_date`, `rights`, `cover_path`, `content_path`, `price`, `totalChapter`, `description`, `borrowerLimit`, `popularity`, `language`, `uploaded_time`, `uploader`) VALUES
(2, 'The Arabian Nights', 'UUID:36e03bc6-bfb9-4306-bbe0-a9f1cbff75a9', 'Anonymous', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-26 20:46:33', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 21, NULL, NULL, 229, 'en', '2011-10-26 12:46:33', NULL),
(3, 'Alice in Wonderland', 'UUID:19c2b129-40b2-40f4-88e3-59d12871da25', 'Lewis Carroll', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 14:07:05', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', 'images/bookcover.jpg', 'content.opf', NULL, 12, NULL, NULL, 2024, 'en', '2011-10-27 06:07:05', NULL),
(4, 'Alice''s Adventures Under Ground', 'UUID:1205bd86-cb2f-47a7-b442-a85c0cc6c485', 'Lewis Carroll', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 14:07:15', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 7, NULL, NULL, 271, 'en', '2011-10-27 06:07:15', NULL),
(5, 'The Little Prince', 'BS64:VGhlIExpdHRsZSBQcmluY2U=', 'Antoine de Saint-Exupéry', 'ePub Bud (www.epubbud.com)', '2011-04-07', '2011-10-27 15:53:56', '', 'cover.jpg', 'content.opf', NULL, 29, NULL, NULL, 1170, 'en', '2011-10-27 07:53:56', NULL),
(7, 'Little Women', 'UUID:7b43c746-3a58-4b3e-9d06-d3325e33cc97', 'Louisa May Alcott', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 15:55:49', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 51, NULL, NULL, 103, 'en-gb', '2011-10-27 07:55:49', NULL),
(8, 'A Little Princess', 'UUID:C3F63087-6C00-1014-AB60-F608940B1655', 'Frances Hodgson Burnett', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 15:56:11', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 21, NULL, NULL, 40, 'en-us', '2011-10-27 07:56:11', NULL),
(9, 'The Secret Garden', 'UUID:ABEF6544-6C44-1014-B497-F6AB7121DF9B', 'Frances Hodgson Burnett', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 15:56:19', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 29, NULL, NULL, 40, 'en-us', '2011-10-27 07:56:19', NULL),
(11, 'A Christmas Carol', 'UUID:1abee045-f3dd-46d4-a3a0-3428c8173c1f', 'Charles Dickens', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:16:30', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 8, NULL, NULL, 69, 'en', '2011-10-27 08:16:30', NULL),
(12, 'A Tale of Two Cities', 'UUID:720f81dd-fb0f-4aae-b109-457098e59cdc', 'Charles Dickens', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:16:42', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 50, NULL, NULL, 25, 'en', '2011-10-27 08:16:42', NULL),
(13, 'The Battle of Life', 'UUID:41DB180F-6C01-1014-B992-E22732E4BB10', 'Charles Dickens', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:16:48', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', 'images/bookcover.jpg', 'content.opf', NULL, 5, NULL, NULL, 233, 'en-gb', '2011-10-27 08:16:48', NULL),
(14, 'Great Expectations', 'UUID:6E8F32B1-6C0C-1014-83A9-A3BC784F1FE3', 'Charles Dickens', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:16:57', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 61, NULL, NULL, 4, 'en-gb', '2011-10-27 08:16:57', NULL),
(15, 'David Copperfield', 'UUID:7ACF923C-6BF7-1014-941F-8F1A6DFA2AAE', 'Charles Dickens', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:17:04', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 69, NULL, NULL, 208, 'en-gb', '2011-10-27 08:17:04', NULL),
(16, 'Hard Times', 'UUID:7917fdec-b229-4319-ad9d-c3d80fa34519', 'Charles Dickens', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:17:11', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 42, NULL, NULL, 16, 'en', '2011-10-27 08:17:11', NULL),
(17, 'Oliver Twist', 'UUID:155E7C29-91BF-1014-9301-D7FF6A14E449', 'Charles Dickens', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:17:19', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 55, NULL, NULL, 50, 'en-gb', '2011-10-27 08:17:19', NULL),
(18, 'Emma', 'UUID:60f6e1a6-4d19-4fc6-8234-fcf60adcffc2', 'Jane Austen', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:18:06', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 60, NULL, NULL, 73, 'en', '2011-10-27 08:18:06', NULL),
(19, 'Lady Susan', 'UUID:3F0DDCC2-6BF8-1014-89F3-91324B6CC3B3', 'Jane Austen', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:21:23', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 44, NULL, NULL, 20, 'en-gb', '2011-10-27 08:21:23', NULL),
(20, 'Mansfield Park', 'UUID:0D1D00D6-6C02-1014-A34E-B8690F68E990', 'Jane Austen', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:21:36', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 50, NULL, NULL, 4, 'en-gb', '2011-10-27 08:21:36', NULL),
(21, 'Sense and Sensibility', 'UUID:1d17bded-ebf6-4a75-9daa-de0c22b23dd5', 'Jane Austen', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-27 16:21:43', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 52, NULL, NULL, 468, 'en', '2011-10-27 08:21:43', NULL),
(22, 'Pride and Prejudice', 'BS64:UHJpZGUgYW5kIFByZWp1ZGljZQ==', 'Jane Austen', 'ePub Bud (www.epubbud.com)', '2010-06-15', '2011-10-27 16:24:28', '', 'cover.jpg', 'content.opf', NULL, 63, NULL, NULL, 1542, 'en', '2011-10-27 08:24:28', NULL),
(24, 'Romeo and Juliet', 'UUID:af02d9b1-def0-4251-a4ec-27186674462b', 'William Shakespeare', 'ManyBooks.net', '', '2011-10-27 16:49:24', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 338, 'en', '2011-10-27 08:49:24', NULL),
(27, 'The Hunger Games', 'BS64:VGhlIEh1bmdlciBHYW1lcw==', 'Suzanne Collins', 'ePub Bud (www.epubbud.com)', '2010-09-11', '2011-10-27 16:57:38', '', 'cover.jpg', 'content.opf', NULL, 32, NULL, NULL, 56, 'en', '2011-10-27 08:57:38', NULL),
(30, '西游记', 'UUID:6b84565c-27e8-4a60-a883-e05d0a9e6027', '吴承恩', '书仓 shucang.com', '2010-03-16', '2011-10-27 17:32:06', '版权归原作者所有,仅供学习交流使用,上传者自行对所传内容的权属负责', 'images/cover.jpg', 'fb.opf', NULL, 105, NULL, NULL, 25, 'zh', '2011-10-27 09:32:06', NULL),
(40, '道德经校释', 'UUID:3f4d52b9-ad01-4512-b985-3cd6cc1fcd12', '老子', '书仓 shucang.com', '2010-04-2', '2011-10-27 17:54:38', '版权归原作者所有,仅供学习交流使用,上传者自行对所传内容的权属负责', 'images/cover.jpg', 'fb.opf', NULL, 90, NULL, NULL, 553, 'zh', '2011-10-27 09:54:38', NULL),
(41, '庄子', 'UUID:0d64e164-9892-4b88-801e-8fb245ef646d', '庄子', '书仓 shucang.com', '2010-04-2', '2011-10-27 17:54:46', '版权归原作者所有,仅供学习交流使用,上传者自行对所传内容的权属负责', 'images/cover.jpg', 'fb.opf', NULL, 38, NULL, NULL, 7, 'zh', '2011-10-27 09:54:46', NULL),
(42, '道德经', 'BS64:6YGT5b6357uP', '老子', '未知', '未知', '2011-10-27 17:56:35', '创作共用,非商业', 'images/cover.jpg', 'fb.opf', NULL, 85, NULL, NULL, 95, 'zh', '2011-10-27 09:56:35', NULL),
(46, '孟子注疏', 'BS64:5a2f5a2Q5rOo55aP', '', '網絡', '2011-05-20', '2011-10-27 20:16:24', '不得用于商业用途。', 'images/cover.jpg', 'fb.opf', NULL, 31, NULL, NULL, 0, 'zh', '2011-10-27 12:16:24', NULL),
(47, '唐诗三百首', 'BS64:5ZSQ6K+X5LiJ55m+6aaW', '蘅塘退士', '未知', '未知', '2011-10-27 20:17:43', '创作共用,非商业', 'images/cover.jpg', 'fb.opf', NULL, 229, NULL, NULL, 4, 'zh', '2011-10-27 12:17:43', NULL),
(48, '海底两万里', 'ISBN:9787806574317', '儒勒·凡尔纳', '未知', '出版年份: 1869', '2011-10-28 09:42:13', '创作共用,非商业', 'images/cover.jpg', 'fb.opf', NULL, 48, NULL, NULL, 1, 'zh', '2011-10-28 01:42:13', NULL),
(49, 'The Art of War', 'BS64:VGhlIEFydCBvZiBXYXI=', 'Sun Tzu', 'Feedbooks', '2007-01-07', '2011-10-28 09:43:56', '', 'images/cover.png', 'fb.opf', NULL, 21, NULL, NULL, 14, 'en', '2011-10-28 01:43:56', NULL),
(50, '孙子兵法', 'BS64:5a2Z5a2Q5YW15rOV', '', '', '', '2011-10-28 09:45:15', '', 'images/cover.jpg', 'fb.opf', NULL, 16, NULL, NULL, 6, 'zh', '2011-10-28 01:45:15', NULL),
(53, '明朝那些事儿1-7合集', 'UUID:2676178b-735c-45fb-8535-2f1f1ee016af', '当年明月', '书仓 shucang.com', '2010-06-19', '2011-10-28 10:01:24', '版权归原作者所有,仅供学习交流使用,上传者自行对所传内容的权属负责', 'images/cover.jpg', 'fb.opf', NULL, 162, NULL, NULL, 1, 'zh', '2011-10-28 02:01:24', NULL),
(56, '泰戈尔诗集', 'UUID:a43498fa-8b37-4291-b837-2247aff656d7', '泰戈尔', '书仓 shucang.com', '2010-06-9', '2011-10-28 10:20:03', '版权归原作者所有,仅供学习交流使用,上传者自行对所传内容的权属负责', 'images/cover.jpg', 'fb.opf', NULL, 12, NULL, NULL, 3, 'zh', '2011-10-28 02:20:03', NULL),
(58, '约翰.克里斯多夫', 'UUID:0d5e01e5-3311-4bff-8e3e-68c33ddf74f4', '罗曼.罗兰', '书仓 shucang.com', '2010-02-12', '2011-10-28 10:22:02', '版权归原作者所有,仅供学习交流使用,上传者自行对所传内容的权属负责', 'images/cover.jpg', 'fb.opf', NULL, 34, NULL, NULL, 9, 'zh', '2011-10-28 02:22:02', NULL),
(59, '飞鸟集(中英对照版)', 'UUID:3eddbfc9-fa89-4580-8221-5da0330591b0', '泰戈尔', '书仓 shucang.com', '2010-04-17', '2011-10-28 10:23:42', '版权归原作者所有,仅供学习交流使用,上传者自行对所传内容的权属负责', 'images/cover.jpg', 'fb.opf', NULL, 8, NULL, NULL, 216, 'zh', '2011-10-28 02:23:42', NULL),
(61, 'Walden', 'BS64:Ig==', 'Henry David Thoreau', 'ePub Bud (www.epubbud.com)', '2004-08-01', '2011-10-31 01:03:10', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 1021, 'en', '2011-10-30 17:03:10', NULL),
(63, 'Sand and Foam', 'UUID:d2961370-ca03-4089-8ccb-d16eb9895e1f', 'Kahlil Gibran', '', '', '2011-10-31 01:14:58', '', NULL, 'metadata.opf', NULL, 1, NULL, NULL, 127, 'en', '2011-10-30 17:14:58', NULL),
(64, 'The Prophet', 'BS64:VGhlIFByb3BoZXQ=', 'Kahlil Gibran', 'Feedbooks', '2008-09-02', '2011-10-31 01:15:05', 'This work is available for countries where copyright is Life+70 and in the USA.', NULL, 'fb.opf', NULL, 32, NULL, NULL, 4, 'en', '2011-10-30 17:15:05', NULL),
(65, '浮士德', 'UUID:E5C57E9C-C7C6-46BA-9D14-EA517262D7E2', '歌德', '简体版', '2010-12-23', '2011-10-31 01:18:06', '', 'cover.jpg', 'content.opf', NULL, 21, NULL, NULL, 0, 'zh', '2011-10-30 17:18:06', NULL),
(66, 'In Search of the Castaways', 'UUID:A60AAAE3-6C03-1014-9C88-9BD365C9F769', 'Jules Verne', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-31 01:20:47', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 72, NULL, NULL, 1, 'en-us', '2011-10-30 17:20:47', NULL),
(67, 'Around the World in 80 Days', 'UUID:3016536d-bfab-4617-9869-96d4591d0ced', 'Jules Verne', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-31 01:24:24', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 39, NULL, NULL, 5, 'en', '2011-10-30 17:24:24', NULL),
(68, 'Twenty Thousand Leagues under the Sea', 'UUID:1959c78a-41bd-454d-9ede-f55a7b4564ee', 'Jules Verne', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-31 01:24:30', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', 'images/bookcover.jpg', 'content.opf', NULL, 50, NULL, NULL, 5, 'en', '2011-10-30 17:24:30', NULL),
(69, 'The Mysterious Island', 'UUID:4c1e6117-c714-415a-93fb-5c1361233329', 'Jules Verne', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-10-31 01:25:15', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 67, NULL, NULL, 4, 'en', '2011-10-30 17:25:15', NULL),
(70, 'Stray Birds', 'UUID:528a317a-25b9-4dce-a824-59b8bb2c5932', 'Rabindranath Tagore', '', '', '2011-10-31 01:36:35', '', 'cover.jpg', 'content.opf', NULL, 2, NULL, NULL, 0, 'en', '2011-10-30 17:36:35', NULL),
(71, '《王阳明全集》', 'BS64:44CK546L6Ziz5piO5YWo6ZuG44CL', 'uudzs', '优优电子书', '2011-04-28T12:21:03.000000+08:00', '2011-10-31 01:37:45', 'Copyright?1999-2011 uudzs.com All rights Reserved.', '', 'book.opf', NULL, 103, NULL, NULL, 0, 'zh', '2011-10-30 17:37:45', NULL),
(72, '百年孤独', 'BS64:55m+5bm05a2k54us', '', '掌上书苑', '2011-06-13', '2011-10-31 01:48:33', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com分享交流海量电子书。\nepubBuilder仅供交流使用,未经授权,不得用于商业用途。', 'images/cover.jpg', 'fb.opf', NULL, 21, NULL, NULL, 1, 'zh', '2011-10-30 17:48:33', NULL),
(73, '海边的卡夫卡', 'UUID:51037e82-03ff-11dd-9fbb-0018f369440e', '村上村树', 'babyshan [email protected]', 'Thu Dec 21 15:58:14 +0100 2006', '2011-10-31 01:48:43', '', 'images/cover.jpg', 'fb.opf', NULL, 51, NULL, NULL, 0, 'en', '2011-10-30 17:48:43', NULL),
(74, '海底两万里', 'BS64:5rW35bqV5Lik5LiH6YeM', '', '掌上书苑', '2010-09-22', '2011-10-31 01:48:53', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 2, NULL, NULL, 0, 'zh', '2011-10-30 17:48:53', NULL),
(75, 'Gone with the wind', 'ISBN:9780380001095', 'Margaret Mitchell', 'Avon Books', '1973-10-14 23:00:00+01:00', '2011-10-31 01:49:59', '', 'cover.jpg', 'content.opf', NULL, 16, NULL, NULL, 4, 'en', '2011-10-30 17:49:59', NULL),
(77, '小王子', 'BS64:5bCP546L5a2Q', '', '掌上书苑', '2010-09-10', '2011-10-31 01:50:33', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 31, NULL, NULL, 317, 'zh', '2011-10-30 17:50:33', NULL),
(78, '三国演义', 'BS64:5LiJ5Zu95ryU5LmJ', '', '', '', '2011-10-31 01:52:36', '', 'images/cover.jpg', 'fb.opf', NULL, 124, NULL, NULL, 2, 'zh', '2011-10-30 17:52:36', NULL),
(79, '围城', 'BS64:5Zu05Z+O', '', '掌上书苑', '2010-11-14', '2011-10-31 01:54:20', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 24, NULL, NULL, 317, 'zh', '2011-10-30 17:54:20', NULL),
(83, '史记', 'BS64:5Y+y6K6w', '', '掌上书苑', '2011-01-07', '2011-10-31 02:13:19', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 132, NULL, NULL, 1099, 'zh', '2011-10-30 18:13:19', NULL),
(84, '红楼梦', 'BS64:57qi5qW85qKm', '', '掌上书苑', '2010-12-15', '2011-11-01 19:33:21', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 121, NULL, NULL, 158, 'zh', '2011-11-01 11:33:21', NULL),
(85, '水浒传', 'BS64:5rC05rWS5Lyg', '', '掌上书苑', '2010-12-27', '2011-11-01 19:33:49', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 122, NULL, NULL, 27, 'zh', '2011-11-01 11:33:49', NULL),
(87, 'Andersen''s Fairy Tales', 'UUID:9AC3FF69-6C0A-1014-A22F-9129655C02CD', 'Hans Christian Andersen', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-01 19:39:01', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 33, NULL, NULL, 37, 'en-us', '2011-11-01 11:39:01', NULL),
(88, '悲惨世界', 'BS64:5oKy5oOo5LiW55WM', '', 'COAY.COM', '', '2011-11-01 19:39:10', '', 'cover.jpg', 'content.opf', NULL, 16, NULL, NULL, 353, 'zh', '2011-11-01 11:39:10', NULL),
(91, 'Wuthering Heights', 'UUID:8d38db05-544d-4ee5-823e-9ba090675709', 'Emily Bronte', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-01 19:45:16', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 36, NULL, NULL, 9, 'en', '2011-11-01 11:45:16', NULL),
(92, 'Jane Eyre', 'UUID:9c5a096e-0677-4671-ade4-4cce1275798c', 'Charlotte Bronte', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-01 19:45:24', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 43, NULL, NULL, 9, 'en', '2011-11-01 11:45:24', NULL),
(93, 'The Professor', 'UUID:A0881FD8-6BFA-1014-A3E8-C98E821D003F', 'Charlotte Brontë', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-01 19:45:32', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 28, NULL, NULL, 4, 'en-gb', '2011-11-01 11:45:32', NULL),
(94, 'Villette', 'UUID:F5C22424-6BF9-1014-B8A2-E5DFB698EBA0', 'Charlotte Brontë', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-01 19:45:39', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 44, NULL, NULL, 10, 'en-gb', '2011-11-01 11:45:39', NULL),
(95, 'Christmas Eve', 'UUID:9AE973DC-6C0B-1014-8016-E42029A74EC8', 'Robert Browning', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-01 19:45:46', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 24, NULL, NULL, 1, 'en-gb', '2011-11-01 11:45:46', NULL),
(96, 'Les Miserables', 'UUID:f8f1144c-d6fa-4a74-916c-f30416011fcb', 'Victor Hugo', '', '', '2011-11-01 19:50:02', '', 'cover.jpg', 'content.opf', NULL, 372, NULL, NULL, 609, 'en', '2011-11-01 11:50:02', NULL),
(97, '呐喊', 'BS64:5ZGQ5ZaK', '鲁迅', 'shucang.com', '2009-09-16', '2011-11-02 17:47:53', '学习收藏', 'images/cover.jpg', 'fb.opf', NULL, 19, NULL, NULL, 11, 'zh', '2011-11-02 09:47:53', NULL),
(98, '纪伯伦散文诗全集', 'BS64:57qq5Lyv5Lym5pWj5paH6K+X5YWo6ZuG', '纪伯伦', '未知', '未知', '2011-11-03 02:27:59', '创作共用,非商业', 'images/cover.jpg', 'fb.opf', NULL, 24, NULL, NULL, 70, 'zh', '2011-11-02 18:27:59', NULL),
(99, '流浪者', 'BS64:5rWB5rWq6ICF', '纪伯伦', '未知', '出版年份: 1931', '2011-11-03 02:29:34', '创作共用,非商业', 'images/cover.jpg', 'fb.opf', NULL, 56, NULL, NULL, 1, 'zh', '2011-11-02 18:29:34', NULL),
(100, '先知', 'BS64:5YWI55+l', '纪伯伦', '未知', '出版年份: 1923', '2011-11-03 02:30:02', '创作共用,非商业', 'images/cover.jpg', 'fb.opf', NULL, 33, NULL, NULL, 1, 'zh', '2011-11-02 18:30:02', NULL),
(101, '泪与笑', 'BS64:5rOq5LiO56yR', '纪伯伦', '未知', '出版年份: 1913', '2011-11-03 02:30:58', '创作共用,非商业', 'images/cover.jpg', 'fb.opf', NULL, 58, NULL, NULL, 120, 'zh', '2011-11-02 18:30:58', NULL),
(102, '沙与沫', 'BS64:5rKZ5LiO5rKr', '纪伯伦', '未知', '出版年份: 1926', '2011-11-03 02:31:25', '创作共用,非商业', 'images/cover.jpg', 'fb.opf', NULL, 17, NULL, NULL, 1, 'zh', '2011-11-02 18:31:25', NULL),
(103, '人子耶稣', 'BS64:5Lq65a2Q6IC256ij', '纪伯伦', '未知', '出版年份: 1928', '2011-11-03 02:32:45', '创作共用,非商业', 'images/cover.jpg', 'fb.opf', NULL, 77, NULL, NULL, 1, 'zh', '2011-11-02 18:32:45', NULL),
(104, '珍趣篇', 'BS64:54+N6Laj56+H', '纪伯伦', '未知', '出版年份: 1923', '2011-11-03 02:34:00', '创作共用,非商业', 'images/cover.jpg', 'fb.opf', NULL, 21, NULL, NULL, 1, 'zh', '2011-11-02 18:34:00', NULL),
(105, 'The Bible, Old and New Testaments, King James Version', 'BS64:00000000', '', '', '2011-03-03T15:25:55.589698+00:00', '2011-11-03 02:38:16', 'Public domain in the USA.', NULL, 'content.opf', NULL, 67, NULL, NULL, 247, 'en', '2011-11-02 18:38:16', NULL),
(106, '冰心全集 第一卷', 'BS64:5Yaw5b+D5YWo6ZuGIOesrOS4gOWNtw==', '', '掌上书苑', '2010-11-11', '2011-11-04 23:48:32', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 112, NULL, NULL, 13, 'zh', '2011-11-04 15:48:32', NULL),
(107, '冰心全集 第二卷', 'BS64:5Yaw5b+D5YWo6ZuGIOesrOS6jOWNtw==', '', '掌上书苑', '2010-11-11', '2011-11-04 23:48:49', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 53, NULL, NULL, 10, 'zh', '2011-11-04 15:48:49', NULL),
(108, '冰心全集 第三卷', 'BS64:5Yaw5b+D5YWo6ZuGIOesrOS4ieWNtw==', '', '掌上书苑', '2010-11-11', '2011-11-04 23:49:01', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 129, NULL, NULL, 10, 'zh', '2011-11-04 15:49:01', NULL),
(109, '冰心全集 第四卷', 'BS64:5Yaw5b+D5YWo6ZuGIOesrOWbm+WNtw==', '', '掌上书苑', '2010-11-11', '2011-11-04 23:49:16', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 61, NULL, NULL, 10, 'zh', '2011-11-04 15:49:16', NULL),
(110, '冰心全集 第五卷', 'BS64:5Yaw5b+D5YWo6ZuGIOesrOS6lOWNtw==', '', '掌上书苑', '2010-11-11', '2011-11-04 23:49:28', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 178, NULL, NULL, 10, 'zh', '2011-11-04 15:49:28', NULL),
(111, '冰心全集 第六卷', 'BS64:5Yaw5b+D5YWo6ZuGIOesrOWFreWNtw==', '', '掌上书苑', '2010-11-11', '2011-11-04 23:49:39', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 132, NULL, NULL, 10, 'zh', '2011-11-04 15:49:39', NULL),
(112, '冰心全集 第七卷', 'BS64:5Yaw5b+D5YWo6ZuGIOesrOS4g+WNtw==', '', '掌上书苑', '2010-11-11', '2011-11-04 23:49:50', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 307, NULL, NULL, 18, 'zh', '2011-11-04 15:49:50', NULL),
(113, '冰心全集 第八卷', 'BS64:5Yaw5b+D5YWo6ZuGIOesrOWFq+WNtw==', '', '掌上书苑', '2010-11-11', '2011-11-04 23:50:01', '本电子书由epubBuilder制作生成,欢迎访问http://www.cnepub.com浏览海量电子书。', 'images/cover.jpg', 'fb.opf', NULL, 395, NULL, NULL, 10, 'zh', '2011-11-04 15:50:01', NULL),
(114, '徐志摩诗全集', 'UUID:b8be5732-c50f-47a1-80bf-3e899b61511f', '徐志摩', '书仓 shucang.com', '2010-04-25', '2011-11-06 00:16:29', '版权归原作者所有,仅供学习交流使用,上传者自行对所传内容的权属负责', 'images/cover.jpg', 'fb.opf', NULL, 43, NULL, NULL, 4, 'zh', '2011-11-05 16:16:29', NULL),
(115, '瓦尔登湖', 'BS64:55Om5bCU55m75rmW', '(美)梭罗', 'shucang.com', '2009-06-24', '2011-11-06 00:20:25', '交流学习', 'images/cover.jpg', 'fb.opf', NULL, 31, NULL, NULL, 58, 'zh', '2011-11-05 16:20:25', NULL),
(116, 'Treasure Island', 'BS64:VHJlYXN1cmUgSXNsYW5k', 'Robert Louis Stevenson', 'Roberts Brothers', '', '2011-11-07 09:38:03', '', NULL, 'volume.opf', NULL, 32, NULL, NULL, 119, 'en', '2011-11-07 01:38:03', NULL),
(117, 'Little Men', 'UUID:481309C0-6BFC-1014-90F5-D0DE8CB0A2CE', 'Louisa May Alcott', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-07 09:46:39', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 24, NULL, NULL, 35, 'en-us', '2011-11-07 01:46:39', NULL),
(118, '老人与海', 'UUID:c40b53b5-3087-4078-bee9-186117677d9b', '海明威', '书仓 shucang.com', '2010-06-7', '2011-11-07 09:55:08', '版权归原作者所有,仅供学习交流使用,上传者自行对所传内容的权属负责', 'images/cover.jpg', 'fb.opf', NULL, 9, NULL, NULL, 113, 'zh', '2011-11-07 01:55:08', NULL),
(120, 'Once a Week', 'UUID:E1361824-DA0D-11E0-8CBC-C9C85E01741F', 'Alan Alexander Milne', 'epubBooks (www.epubbooks.com)', '2011-09-08', '2011-11-07 10:16:21', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 87, NULL, NULL, 19, 'en-gb', '2011-11-07 02:16:21', NULL),
(121, 'Kidnapped', 'UUID:54C64FF7-6C35-1014-97C9-95100F084A53', 'Robert Louis Stevenson', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-07 10:17:54', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 35, NULL, NULL, 9, 'en-gb', '2011-11-07 02:17:54', NULL),
(122, 'Utopia', 'UUID:E72C9032-6C00-1014-84FE-DDA6FD63F640', 'Thomas More', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-07 10:19:18', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 12, NULL, NULL, 3, 'en-gb', '2011-11-07 02:19:18', NULL),
(123, 'The History of a Crime', 'UUID:FE8D1431-6BFF-1014-9B75-820F96E364DB', 'Victor Hugo', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-07 10:20:01', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 85, NULL, NULL, 4, 'en-us', '2011-11-07 02:20:01', NULL),
(124, 'The Prince', 'UUID:70F23C72-6C05-1014-A819-D02007003A06', 'Nicolo Machiavelli', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-07 10:20:19', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 34, NULL, NULL, 3, 'en-gb', '2011-11-07 02:20:19', NULL),
(125, '(E.G. Wakefield).', 'BS64:KEUuRy4gV2FrZWZpZWxkKS4=', 'Adam Smith', '', '', '2011-11-07 10:21:48', '', NULL, 'volume.opf', NULL, 17, NULL, NULL, 0, 'en', '2011-11-07 02:21:48', NULL),
(126, 'Don Quixote', 'UUID:e442088a-5d3b-486a-b340-45ab8aca305f', 'Miguel de Cervantes', 'ManyBooks.net', '', '2011-11-07 10:28:11', '', 'cover.jpg', 'content.opf', NULL, 20, NULL, NULL, 136, '', '2011-11-07 02:28:11', NULL),
(127, 'Hamlet', 'UUID:4f68171f-d21b-497c-9309-f92feb60941e', 'William Shakespeare', 'ManyBooks.net', '', '2011-11-07 10:29:30', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 0, '', '2011-11-07 02:29:30', NULL),
(128, 'Myths and Legends of Ancient Greece and Rome', 'UUID:f5aac293-3891-4439-9b1d-f8f729b02aff', 'Edward Berens', 'ManyBooks.net', '', '2011-11-07 10:31:17', '', 'cover.jpg', 'content.opf', NULL, 9, NULL, NULL, 389, 'en', '2011-11-07 02:31:17', NULL),
(129, 'The Kama Sutra of Vatsyayana', 'UUID:e4c5975a-e8a7-42a2-86a0-acb177c24ee4', 'Vatsyayana', 'ManyBooks.net', '', '2011-11-07 10:32:36', '', 'cover.jpg', 'content.opf', NULL, 4, NULL, NULL, 0, 'en', '2011-11-07 02:32:36', NULL),
(130, 'Household Tales', 'UUID:b75803b1-6a64-4813-82ed-04ce15071735', 'The Grimm Brothers', 'ManyBooks.net', '', '2011-11-07 10:33:43', '', 'cover.jpg', 'content.opf', NULL, 15, NULL, NULL, 0, 'en', '2011-11-07 02:33:43', NULL),
(131, 'The Adventures of Sherlock Holmes', 'UUID:f6151210-8c13-47da-9f1c-8606a00a687b', 'Arthur Conan Doyle', '', '', '2011-11-07 10:34:57', '', 'cover.jpg', 'content.opf', NULL, 7, NULL, NULL, 0, 'en', '2011-11-07 02:34:57', NULL),
(132, 'The star people', 'BS64:', '', 'New York, The Macmillan company', '1921', '2011-11-07 10:37:29', '', NULL, 'content.opf', NULL, 1, NULL, NULL, 0, 'en', '2011-11-07 02:37:29', NULL),
(133, 'Adventures of Huckleberry Finn', 'UUID:ab55523a-be0a-4bee-b114-d6623f658a23', 'Mark Twain', '', '', '2011-11-07 10:38:14', '', 'cover.jpg', 'content.opf', NULL, 46, NULL, NULL, 0, 'en', '2011-11-07 02:38:14', NULL),
(134, 'How to Analyze People on Sight', 'UUID:81dedfee-5db9-4fca-b685-66bcc1d52abe', 'Elsie Lincoln Benedict', '', '', '2011-11-07 10:38:43', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 0, 'en', '2011-11-07 02:38:43', NULL),
(135, 'Ulysses', 'UUID:e7100669-b066-4274-9e0c-e30d0753d596', 'James Joyce', 'ManyBooks.net', '', '2011-11-07 10:39:23', '', 'cover.jpg', 'content.opf', NULL, 19, NULL, NULL, 0, 'en', '2011-11-07 02:39:23', NULL),
(136, 'Metamorphosis', 'UUID:35f9afb3-f431-470f-a8a1-05fcf4a0873a', 'Franz Kafka', 'ManyBooks.net', '', '2011-11-07 10:40:17', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 0, '', '2011-11-07 02:40:17', NULL),
(137, 'Dracula', 'UUID:ee1554cf-9f4b-4a82-a4db-9f8e9c00c183', 'Bram Stoker', '', '', '2011-11-07 10:42:26', '', 'cover.jpg', 'content.opf', NULL, 6, NULL, NULL, 0, '', '2011-11-07 02:42:26', NULL),
(138, 'Moby Dick', 'UUID:48c2e0ea-c1b4-483e-9447-7e571ec79293', 'Herman Melville', 'ManyBooks.net', '', '2011-11-07 10:42:55', '', 'cover.jpg', 'content.opf', NULL, 9, NULL, NULL, 0, '', '2011-11-07 02:42:55', NULL),
(139, 'The Best American Humorous Short Stories', 'UUID:7ffa8480-30fd-4578-9e65-549cf5ae80ef', 'Various', 'ManyBooks.net', '', '2011-11-07 10:43:25', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 0, '', '2011-11-07 02:43:25', NULL),
(140, 'The Notebooks of Leonardo Da Vinci', 'UUID:50c1730e-1f32-4214-be66-535b51cc5a2b', 'Leonardo Da Vinci', 'ManyBooks.net', '', '2011-11-07 10:43:55', '', 'cover.jpg', 'content.opf', NULL, 17, NULL, NULL, 0, '', '2011-11-07 02:43:55', NULL),
(141, 'Dubliners', 'UUID:6f4f94d8-c9bd-478d-a575-86a216f90792', 'James Joyce', 'ManyBooks.net', '', '2011-11-07 10:45:01', '', 'cover.jpg', 'content.opf', NULL, 3, NULL, NULL, 0, '', '2011-11-07 02:45:01', NULL),
(142, 'Adventures of Tom Sawyer', 'UUID:f48eb4b6-7ded-40ee-84a9-2bbfcf6fdb4a', 'Mark Twain', 'ManyBooks.net', '', '2011-11-07 10:45:36', '', 'cover.jpg', 'content.opf', NULL, 6, NULL, NULL, 0, '', '2011-11-07 02:45:36', NULL),
(143, 'War and Peace', 'UUID:7EA691AA-6C00-1014-AFE7-873900C99DD9', 'Leo Tolstoy', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-07 10:46:16', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 384, NULL, NULL, 23, 'en-gb', '2011-11-07 02:46:16', NULL),
(144, 'G. K. Chesterton, A Critical Study', 'UUID:d4fbe3ac-2444-4734-a8fa-a40b77ce445d', 'Julius West', 'ManyBooks.net', '', '2011-11-07 10:46:58', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 0, 'en', '2011-11-07 02:46:58', NULL),
(145, 'The Art of War', 'UUID:f7e18424-7452-44a4-8b74-0f4ed8338318', 'Sun Tzu', '', '', '2011-11-07 10:47:22', '', 'cover.jpg', 'content.opf', NULL, 4, NULL, NULL, 461, 'en', '2011-11-07 02:47:22', NULL),
(146, 'The Three Musketeers', 'UUID:a33552bc-baad-4612-aa3c-b08f7a2642a1', 'Ëre', '', '', '2011-11-07 10:50:15', '', 'cover.jpg', 'content.opf', NULL, 10, NULL, NULL, 0, '', '2011-11-07 02:50:15', NULL),
(147, 'The Divine Comedy', 'UUID:800b54e2-65bf-40d7-a66c-0dbfcf9b2b7a', 'Dante Alighieri', 'ManyBooks.net', '', '2011-11-07 10:52:41', '', 'cover.jpg', 'content.opf', NULL, 11, NULL, NULL, 0, 'en', '2011-11-07 02:52:41', NULL),
(148, 'Peter Pan', 'UUID:96e401b1-59ad-42b2-86a0-6228974316f6', 'James M. Barrie', 'ManyBooks.net', '', '2011-11-07 10:53:07', '', 'cover.jpg', 'content.opf', NULL, 7, NULL, NULL, 3, '', '2011-11-07 02:53:07', NULL),
(149, 'Beowulf', 'UUID:0a98f8c6-d549-4548-874d-468ae2e9f89b', 'Anonymous', 'ManyBooks.net', '', '2011-11-07 10:54:03', '', 'cover.jpg', 'content.opf', NULL, 2, NULL, NULL, 0, '', '2011-11-07 02:54:03', NULL),
(150, 'Frankenstein', 'UUID:23ca2907-8851-4dd5-a973-ef8f9835a259', 'Mary Shelley', 'ManyBooks.net', '', '2011-11-07 10:55:04', '', 'cover.jpg', 'content.opf', NULL, 6, NULL, NULL, 0, '', '2011-11-07 02:55:04', NULL),
(151, 'Oscar Wilde: Art and Morality', 'UUID:05c5d1ae-ac71-47d1-9ced-90f6dc784223', 'Stuart Mason', '', '', '2011-11-07 10:55:34', '', 'cover.jpg', 'content.opf', NULL, 14, NULL, NULL, 0, 'en', '2011-11-07 02:55:34', NULL),
(152, 'The Secret Adversary', 'UUID:052be10f-91ab-42c4-9cf8-f969ea0aae97', 'Agatha Christie', 'ManyBooks.net', '', '2011-11-07 10:56:02', '', 'cover.jpg', 'content.opf', NULL, 6, NULL, NULL, 8, '', '2011-11-07 02:56:02', NULL),
(153, 'The Count of Monte Cristo', 'UUID:57934939-dc10-43b7-9d61-861315747c1c', 'Ëre', '', '', '2011-11-07 10:56:35', '', 'cover.jpg', 'content.opf', NULL, 120, NULL, NULL, 0, 'en', '2011-11-07 02:56:35', NULL),
(154, 'Uncle Tom''s Cabin', 'UUID:aa4b4e39-c96c-443c-8dc4-73bbaf8bb833', 'Harriet Beecher Stowe', 'ManyBooks.net', '', '2011-11-07 10:58:48', '', 'cover.jpg', 'content.opf', NULL, 7, NULL, NULL, 0, 'en', '2011-11-07 02:58:48', NULL),
(155, 'Anna Karenina', 'UUID:3b6fe462-2aa3-4753-bd2e-6c2f0835d0c1', 'Lev Nikolaevica Tolstoi', 'ManyBooks.net', '', '2011-11-07 11:01:30', '', 'cover.jpg', 'content.opf', NULL, 9, NULL, NULL, 0, 'en', '2011-11-07 03:01:30', NULL),
(156, 'War and Peace', 'UUID:ccc0184d-27ab-4a33-89ea-959856a094db', 'Leo Tolstoy', 'ManyBooks.net', '', '2011-11-07 11:01:38', '', 'cover.jpg', 'content.opf', NULL, 19, NULL, NULL, 209, '', '2011-11-07 03:01:38', NULL),
(157, 'Anna Karenina', 'UUID:0c6df794-067e-4518-b5d4-a3409b934ed1', 'Leo Tolstoy', '', '', '2011-11-07 11:01:47', '', 'cover.jpg', 'content.opf', NULL, 14, NULL, NULL, 0, '', '2011-11-07 03:01:47', NULL),
(158, 'Robinson Crusoe', 'UUID:3f766a44-b727-401b-9df1-a80de2774206', 'Daniel Defoe', 'ManyBooks.net', '', '2011-11-07 11:02:56', '', 'cover.jpg', 'content.opf', NULL, 8, NULL, NULL, 117, '', '2011-11-07 03:02:56', NULL),
(159, 'Beyond Good and Evil', 'UUID:90fcefdf-2bd4-43ca-b17c-f68a80bcdcfd', 'Friedrich Wilhelm Nietzsche', 'ManyBooks.net', '', '2011-11-07 11:03:26', '', 'cover.jpg', 'content.opf', NULL, 8, NULL, NULL, 144, 'en', '2011-11-07 03:03:26', NULL),
(160, 'A Princess of Mars', 'UUID:aa3f55fb-f0fe-40cf-b9fc-bc4d82be6d8c', 'Edgar Rice Burroughs', 'ManyBooks.net', '', '2011-11-07 11:06:21', '', 'cover.jpg', 'content.opf', NULL, 4, NULL, NULL, 38, '', '2011-11-07 03:06:21', NULL),
(161, 'The Principles of Scientific Management', 'UUID:482da66f-4e32-4c7e-b31e-c1e08c7e73d3', 'F.W. Taylor', '', '', '2011-11-07 11:07:12', '', 'cover.jpg', 'content.opf', NULL, 4, NULL, NULL, 88, 'en', '2011-11-07 03:07:12', NULL),
(162, 'Heart of Darkness', 'UUID:2950927e-0344-470c-ab86-20c57325975b', 'Joseph Conrad', 'ManyBooks.net', '', '2011-11-07 11:07:45', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 0, '', '2011-11-07 03:07:45', NULL),
(163, 'The Wonderful Wizard of Oz', 'UUID:09d29851-742c-41ae-ba0c-6eef92b3b9bc', 'L. Frank Baum', 'ManyBooks.net', '', '2011-11-07 11:08:11', '', 'cover.jpg', 'content.opf', NULL, 2, NULL, NULL, 0, '', '2011-11-07 03:08:11', NULL),
(164, 'Faust', 'UUID:05fddcfa-40f0-43f7-85e8-d883d3c1e0a9', 'Johann Wolfgang von Goethe', 'ManyBooks.net', '', '2011-11-07 11:09:20', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 238, 'en', '2011-11-07 03:09:20', NULL),
(165, 'A Modest Proposal', 'UUID:d93bfd95-8e67-4868-bb04-3e0ecd54daff', 'Jonathan Swift', 'ManyBooks.net', '', '2011-11-07 11:09:52', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 0, 'en', '2011-11-07 03:09:52', NULL),
(166, 'The Jungle Book', 'UUID:7ae37ce6-cafd-453c-bd5a-8c6ce3e592d5', 'Rudyard Kipling', 'ManyBooks.net', '', '2011-11-07 11:10:20', '', 'cover.jpg', 'content.opf', NULL, 4, NULL, NULL, 104, 'en', '2011-11-07 03:10:20', NULL),
(167, 'The Diary of a Superfluous Man and Other Stories', 'UUID:7314128d-1f2e-4f4f-a781-13ef11c36d32', 'Ivan S. Turgenev', 'ManyBooks.net', '', '2011-11-07 11:10:49', '', 'cover.jpg', 'content.opf', NULL, 6, NULL, NULL, 0, 'en', '2011-11-07 03:10:49', NULL),
(168, 'The Memoirs of Sherlock Holmes', 'UUID:f828d592-7688-430c-b9a6-09ff68d8e9bd', 'Arthur Conan Doyle', '', '', '2011-11-07 11:11:13', '', 'cover.jpg', 'content.opf', NULL, 5, NULL, NULL, 52, '', '2011-11-07 03:11:13', NULL),
(169, 'The History of The Decline and Fall of the Roman Empire. Volume 1', 'UUID:CD816FA2-6C07-1014-90F1-E7BF16805ED8', 'Edward Gibbon', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-07 11:15:04', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 73, NULL, NULL, 3, 'en-us', '2011-11-07 03:15:04', NULL),
(170, 'The History of The Decline and Fall of the Roman Empire. Volume 2', 'UUID:D86AC5B7-6BFE-1014-806E-A3B1AE81D59F', 'Edward Gibbon', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-07 11:15:10', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 72, NULL, NULL, 3, 'en-us', '2011-11-07 03:15:10', NULL),
(171, 'The History of The Decline and Fall of the Roman Empire. Volume 3', 'UUID:6B6DCABE-6C01-1014-BD64-D5490FB5D5A8', 'Edward Gibbon', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-07 11:15:16', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 62, NULL, NULL, 3, 'en-us', '2011-11-07 03:15:16', NULL),
(172, 'The History of The Decline and Fall of the Roman Empire. Volume 4', 'UUID:A813C734-6C06-1014-A968-A0705DE3F5D9', 'Edward Gibbon', 'epubBooks (www.epubbooks.com)', '2011-06-15', '2011-11-07 11:15:22', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 60, NULL, NULL, 3, 'en-us', '2011-11-07 03:15:22', NULL),
(173, 'The History of The Decline and Fall of the Roman Empire. Volume 5', 'UUID:2C6FA228-6D18-1014-BF10-D7726F0F74DB', 'Edward Gibbon', 'epubBooks (www.epubbooks.com)', '2010-06-10', '2011-11-07 11:15:28', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'epb.opf', NULL, 62, NULL, NULL, 3, 'en-us', '2011-11-07 03:15:28', NULL),
(174, 'Anne of Green Gables', 'UUID:786c1881-b7bb-433e-b99f-4cc740852867', 'Lucy Maud Montgomery', 'ManyBooks.net', '', '2011-11-07 11:18:52', '', 'cover.jpg', 'content.opf', NULL, 8, NULL, NULL, 88, 'en', '2011-11-07 03:18:52', NULL),
(175, 'The Importance of Being Earnest', 'UUID:c5fb4d6c-164d-4545-9533-7ac800b68667', 'Oscar Wilde', '', '', '2011-11-07 11:20:26', '', 'cover.jpg', 'content.opf', NULL, 3, NULL, NULL, 0, '', '2011-11-07 03:20:26', NULL),
(176, '国富论', 'ISBN:9787508036083', '亚当.史密斯', '华夏出版社', '2005-1-1', '2011-11-07 13:49:14', '', NULL, 'content.opf', NULL, 57, NULL, NULL, 355, 'zh', '2011-11-07 05:49:14', NULL),
(177, '朝花夕拾', 'BS64:5pyd6Iqx5aSV5ou+', '', '人民文学出版社', '年4月', '2011-11-07 14:07:50', '', NULL, 'content.opf', NULL, 14, NULL, NULL, 0, 'zh', '2011-11-07 06:07:50', NULL),
(178, '故事新编', 'ISBN:9787540725259', '', '漓江出版社', '1999-12-01', '2011-11-07 14:07:57', '', NULL, 'content.opf', NULL, 12, NULL, NULL, 0, 'zh', '2011-11-07 06:07:57', NULL),
(179, '彷徨', 'BS64:5b235b6o', '', '人民文学出版社', '年3月', '2011-11-07 14:08:12', '', NULL, 'content.opf', NULL, 14, NULL, NULL, 0, 'zh', '2011-11-07 06:08:12', NULL),
(180, '不能承受的生命之轻', 'BS64:5LiN6IO95om/5Y+X55qE55Sf5ZG95LmL6L27', '', '', '', '2011-11-07 14:08:20', '', 'cover.jpg', 'content.opf', NULL, 11, NULL, NULL, 291, 'zh', '2011-11-07 06:08:20', NULL),
(181, '资本论 第一卷', 'ISBN:9787010041155', '', '人民出版社', '2004-1-2', '2011-11-07 14:08:26', '', NULL, 'content.opf', NULL, 35, NULL, NULL, 1, 'zh', '2011-11-07 06:08:26', NULL),
(182, '资本论 第二卷', 'ISBN:9787010041162', '', '人民出版社', '2004-1-2', '2011-11-07 14:08:32', '', NULL, 'content.opf', NULL, 27, NULL, NULL, 0, 'zh', '2011-11-07 06:08:32', NULL),
(183, '资本论 第三卷', 'ISBN:9787010041179', '', '人民出版社', '2004-1-2', '2011-11-07 14:08:38', '', NULL, 'content.opf', NULL, 63, NULL, NULL, 22, 'zh', '2011-11-07 06:08:38', NULL),
(184, '鲁滨逊漂流记', 'BS64:6bKB5ruo6YCK5ryC5rWB6K6w', '', '', '', '2011-11-07 14:08:46', '', 'cover.jpg', 'content.opf', NULL, 14, NULL, NULL, 0, 'zh', '2011-11-07 06:08:46', NULL),
(185, '华盖集', 'BS64:5Y2O55uW6ZuG', '', '人民文学出版社', '1973-04-01', '2011-11-07 14:08:54', '', NULL, 'content.opf', NULL, 35, NULL, NULL, 0, 'zh', '2011-11-07 06:08:54', NULL),
(186, '南腔北调集', 'ISBN:9787020015665', '', '人民文学出版社', '2000-05', '2011-11-07 14:09:14', '', NULL, 'content.opf', NULL, 50, NULL, NULL, 0, 'zh', '2011-11-07 06:09:14', NULL),
(187, '三闲集', 'ISBN:9787020015764', '', '人民文学出版社', '1980-9-1', '2011-11-07 14:09:20', '', NULL, 'content.opf', NULL, 37, NULL, NULL, 0, 'zh', '2011-11-07 06:09:20', NULL),
(188, '鲁迅诗集', 'ISBN:9787020034789', '', '人民文学出版社', '2001-9-1', '2011-11-07 14:09:26', '', NULL, 'content.opf', NULL, 14, NULL, NULL, 0, 'zh', '2011-11-07 06:09:26', NULL),
(189, '格兰特船长的儿女', 'BS64:5qC85YWw54m56Ii56ZW/55qE5YS/5aWz', '', '', '', '2011-11-07 14:09:35', '', 'cover.jpg', 'content.opf', NULL, 57, NULL, NULL, 87, 'zh', '2011-11-07 06:09:35', NULL),
(190, '蝇王', 'BS64:6J2H546L', '', '', '', '2011-11-07 14:09:43', '', 'cover.jpg', 'content.opf', NULL, 17, NULL, NULL, 0, 'zh', '2011-11-07 06:09:43', NULL),
(191, '罗曼罗兰散文', 'BS64:572X5pu8572X5YWw5pWj5paH', '', '', '', '2011-11-07 14:09:58', '', 'cover.jpg', 'content.opf', NULL, 4, NULL, NULL, 3, 'zh', '2011-11-07 06:09:58', NULL),
(192, '家', 'ISBN:9787020001118', '', '', '1981-9-1', '2011-11-07 14:10:03', '', 'cover.jpg', 'content.opf', NULL, 47, NULL, NULL, 251, 'zh', '2011-11-07 06:10:03', NULL),
(193, '春', 'BS64:5pil', '', '人民文学出版社', '', '2011-11-07 14:10:09', '', 'cover.jpg', 'content.opf', NULL, 38, NULL, NULL, 0, 'zh', '2011-11-07 06:10:09', NULL),
(195, '水浒传', 'ISBN:9787020008742', '', '人民文学出版社', '2004-9-1', '2011-11-07 14:10:38', '', 'cover.jpg', 'content.opf', NULL, 123, NULL, NULL, 335, 'zh', '2011-11-07 06:10:38', NULL),
(196, '三国演义', 'ISBN:9787020008728', '', '人民文学出版社', '1998-5', '2011-11-07 14:10:56', '', 'cover.jpg', 'content.opf', NULL, 120, NULL, NULL, 422, 'zh', '2011-11-07 06:10:56', NULL),
(197, '秋', 'UUID:04B78D7D-078F-43C3-AFFB-691670712AB7', '巴金', 'zaohua', '2011-10-27', '2011-11-07 14:14:32', '', NULL, 'content.opf', NULL, 1, NULL, NULL, 196, 'zh', '2011-11-07 06:14:32', NULL),
(199, 'Precious Bane', 'UUID:ADDB2B4D-BA43-4DE9-8BAB-CF8759C8F843', 'Mary Webb', 'epubBooks (www.epubbooks.com)', '2011-10-17', '2011-11-16 19:03:58', 'Provided for free by epubBooks.com. Not for commercial use.\n This EPUB eBook is released under a Creative Commons (BY-NC-ND/3.0) Licence.\n Source text and images are in the Public Domain.', NULL, 'content.opf', NULL, 35, NULL, NULL, 33, 'en-gb', '2011-11-16 11:03:58', NULL),
(200, 'Ultimate Handbook on Corporate Turnaround and Transformation', 'UUID:ad8fdc5f-37ae-45ac-9ebf-7957e5feece2', 'Dr. Michael Teng', '', '', '2012-03-03 18:17:56', '', 'logo.JPG', 'content.opf', 0, 2, NULL, NULL, 49, 'en', '2012-03-03 10:17:56', NULL),
(201, '企业转机与转型终极册', 'UUID:62fe3222-5b90-47ba-822f-d5a5e8404134', '邓耀兴博士', '', '', '2012-03-03 18:44:05', '', 'logo.JPG', 'content.opf', NULL, 3, NULL, NULL, 0, 'en', '2012-03-03 10:44:05', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `Bookmark`
--
CREATE TABLE IF NOT EXISTS `Bookmark` (
`bm_id` int(11) NOT NULL AUTO_INCREMENT,
`u_id` int(11) DEFAULT NULL,
`b_id` int(11) DEFAULT NULL,
`c_id` int(11) DEFAULT NULL,
`name` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
`position` int(11) DEFAULT NULL,
PRIMARY KEY (`bm_id`),
KEY `u_id` (`u_id`),
KEY `b_id` (`b_id`,`c_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=190 ;
--
-- Dumping data for table `Bookmark`
--
INSERT INTO `Bookmark` (`bm_id`, `u_id`, `b_id`, `c_id`, `name`, `position`) VALUES
(39, 23, 22, 10, 'certainly', 8513),
(40, 23, 22, 10, 'at five', 155),
(41, 23, 22, 9, 'of the house', 15355),
(42, 23, 79, 5, 'd', 1756),
(43, 23, 79, 8, 'd4', 9170),
(44, 23, 79, 14, 'a3', 20604),
(45, 23, 79, 14, 'test1', 21348),
(110, 23, 79, 6, 'testforlocal', 0),
(111, 23, 79, 7, 'testlocal', 0),
(112, 23, 79, 8, 'localtest2', 0),
(113, 23, 79, 6, 'testforlocal', 0),
(114, 23, 79, 7, 'testlocal', 0),
(115, 23, 79, 8, 'localtest2', 0),
(116, 23, 79, 7, '', 779),
(117, 23, 79, 7, 'weew', 779),
(118, 23, 79, 7, 'sdfadfasdf', 779),
(119, 23, 79, 7, 'abc', 779),
(120, 23, 79, 7, 'ed', 779),
(121, 23, 79, 7, 'fg', 779),
(122, 23, 79, 7, 'dk', 779),
(123, 23, 79, 7, 'er', 779),
(124, 23, 79, 7, 'eeer', 779),
(125, 23, 79, 7, 'rs', 779),
(146, 2, 83, 12, 'I like this part', 1147),
(147, 7, 3, 3, 'New bookmark', 6863),
(148, 7, 61, 1, 'We', 35451),
(149, 5, 5, 3, 'Zhenling read this!', 2569),
(150, 7, 24, 4, 'Yu', 411),
(151, 138, 53, 5, 'yunReading', 2051),
(152, 139, 176, 7, 'drop at 11/11/11', 4165),
(153, 80, 53, 3, 'Jin', 90),
(154, 152, 3, 4, 'gini', 3701),
(155, 164, 53, 5, 'Testing', 951),
(156, 221, 83, 2, 'i like this part', 1299),
(159, 268, 22, 3, '', 5323),
(162, 281, 53, 7, '', 1810),
(163, 297, 53, 7, '和尚', 3271),
(164, 309, 79, 1, '', 0),
(165, 309, 176, 2, '', 703),
(166, 309, 176, 2, '', 703),
(167, 317, 77, 3, '1', 1168),
(168, 326, 189, 5, '', 6864),
(169, 326, 21, 3, '', 1087),
(170, 335, 53, 1, '', 0),
(174, 370, 3, 5, '', 1270),
(175, 387, 181, 1, '', 55),
(181, 411, 83, 1, '', 45),
(185, 438, 196, 2, '', 2475),
(187, 7, 22, 9, 'hello', 10000),
(189, 515, 42, 5, '', 805);
-- --------------------------------------------------------
--
-- Table structure for table `Booktag`
--
CREATE TABLE IF NOT EXISTS `Booktag` (
`b_id` int(11) NOT NULL DEFAULT '0',
`t_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`b_id`,`t_id`),
KEY `t_id` (`t_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `Booktag`
--
INSERT INTO `Booktag` (`b_id`, `t_id`) VALUES
(2, 2),
(3, 2),
(4, 2),
(7, 2),
(8, 2),
(9, 2),
(17, 2),
(87, 2),
(117, 2),
(2, 3),
(120, 3),
(2, 5),
(3, 6),
(4, 6),
(77, 7),
(84, 7),
(7, 8),
(7, 9),
(7, 10),
(18, 10),
(19, 10),
(11, 11),
(11, 12),
(13, 12),
(12, 13),
(16, 13),
(121, 13),
(143, 13),
(12, 14),
(13, 15),
(18, 15),
(19, 15),
(21, 15),
(91, 15),
(92, 15),
(94, 15),
(143, 15),
(14, 16),
(17, 16),
(20, 16),
(93, 16),
(143, 16),
(15, 17),
(16, 17),
(16, 18),
(19, 18),
(85, 19),
(30, 20),
(83, 22),
(40, 23),
(41, 23),
(42, 24),
(47, 25),
(48, 26),
(49, 27),
(124, 27),
(49, 28),
(122, 28),
(49, 29),
(123, 29),
(169, 29),
(170, 29),
(171, 29),
(172, 29),
(173, 29),
(49, 30),
(53, 33),
(56, 35),
(58, 37),
(59, 38),
(97, 39),
(64, 40),
(75, 40),
(199, 40),
(64, 41),
(95, 41),
(66, 42),
(67, 42),
(68, 42),
(69, 42),
(121, 42),
(67, 43),
(68, 44),
(69, 44),
(68, 45),
(73, 46),
(75, 47),
(87, 50),
(88, 51),
(91, 53),
(92, 53),
(94, 54),
(98, 55),
(99, 55),
(100, 55),
(101, 55),
(102, 55),
(103, 55),
(104, 55),
(105, 56),
(106, 57),
(107, 58),
(108, 58),
(109, 58),
(110, 58),
(111, 58),
(112, 58),
(113, 58),
(114, 60),
(115, 61),
(118, 62),
(120, 63),
(121, 64),
(122, 64),
(123, 64),
(124, 64),
(132, 65),
(143, 66);
-- --------------------------------------------------------
--
-- Table structure for table `Chapter`
--
CREATE TABLE IF NOT EXISTS `Chapter` (
`b_id` int(11) NOT NULL DEFAULT '0',
`c_id` int(11) NOT NULL,
`title` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
`filename` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`c_id`,`b_id`),
KEY `b_id` (`b_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `Chapter`
--
INSERT INTO `Chapter` (`b_id`, `c_id`, `title`, `filename`) VALUES
(2, 1, 'titlepage', 'title.html'),
(3, 1, 'titlepage', 'title.html'),
(4, 1, 'titlepage', 'title.html'),
(5, 1, 'part1.xhtml', 'part1.xhtml'),
(7, 1, 'titlepage', 'title.html'),
(8, 1, 'titlepage', 'title.html'),
(9, 1, 'titlepage', 'title.html'),
(11, 1, 'titlepage', 'title.html'),
(12, 1, 'titlepage', 'title.html'),
(13, 1, 'titlepage', 'title.html'),
(14, 1, 'titlepage', 'title.html'),
(15, 1, 'titlepage', 'title.html'),
(16, 1, 'titlepage', 'title.html'),
(17, 1, 'titlepage', 'title.html'),
(18, 1, 'titlepage', 'title.html'),
(19, 1, 'titlepage', 'title.html'),
(20, 1, 'titlepage', 'title.html'),
(21, 1, 'titlepage', 'title.html'),
(22, 1, 'part1.xhtml', 'part1.xhtml'),
(24, 1, 'titlepage', 'titlepage.xhtml'),
(27, 1, 'part1.xhtml', 'part1.xhtml'),
(30, 1, 'title', 'title.xml'),
(40, 1, 'title', 'title.xml'),
(41, 1, 'title', 'title.xml'),
(42, 1, 'title', 'title.xml'),
(46, 1, 'coverpage', 'coverpage.html'),
(47, 1, 'title', 'title.xml'),
(48, 1, 'level1_1', 'chapter33951.htm'),
(49, 1, 'cover', 'page.xhtml'),
(50, 1, 'coverpage', 'coverpage.html'),
(53, 1, 'title', 'title.xml'),
(56, 1, 'title', 'title.xml'),
(58, 1, 'title', 'title.xml'),
(59, 1, 'title', 'title.xml'),
(61, 1, 'part1.xhtml', 'part1.xhtml'),
(63, 1, 'id1', 'index.xhtml'),
(64, 1, 'titlepage', 'title.xml'),
(65, 1, 'ch1', 'ch1.html'),
(66, 1, 'titlepage', 'title.html'),
(67, 1, 'titlepage', 'title.html'),
(68, 1, 'titlepage', 'title.html'),
(69, 1, 'titlepage', 'title.html'),
(70, 1, 'titlepage', 'titlepage.xhtml'),
(71, 1, 'chapter1', 'Cover.html'),
(72, 1, 'coverpage', 'coverpage.html'),
(73, 1, 'chapter1', 'chapter1.htm'),
(74, 1, 'coverpage', 'coverpage.html'),
(75, 1, 'titlepage', 'titlepage.xhtml'),
(77, 1, 'coverpage', 'coverpage.html'),
(78, 1, 'coverpage', 'coverpage.html'),
(79, 1, 'coverpage', 'coverpage.html'),
(83, 1, 'coverpage', 'coverpage.html'),
(84, 1, 'coverpage', 'coverpage.html'),
(85, 1, 'coverpage', 'coverpage.html'),
(87, 1, 'titlepage', 'title.html'),
(88, 1, 'titlepage', 'titlepage.xhtml'),
(91, 1, 'titlepage', 'title.html'),
(92, 1, 'titlepage', 'title.html'),
(93, 1, 'titlepage', 'title.html'),
(94, 1, 'titlepage', 'title.html'),
(95, 1, 'titlepage', 'title.html'),
(96, 1, 'titlepage', 'titlepage.xhtml'),
(97, 1, 'title', 'title.xml'),
(98, 1, 'title', 'title.xml'),
(99, 1, 'title', 'title.xml'),
(100, 1, 'title', 'title.xml'),
(101, 1, 'title', 'title.xml'),
(102, 1, 'title', 'title.xml'),
(103, 1, 'title', 'title.xml'),
(104, 1, 'title', 'title.xml'),
(105, 1, 'item4', 'www.gutenberg.org@files@10@[email protected]'),
(106, 1, 'coverpage', 'coverpage.html'),
(107, 1, 'coverpage', 'coverpage.html'),
(108, 1, 'coverpage', 'coverpage.html'),
(109, 1, 'coverpage', 'coverpage.html'),
(110, 1, 'coverpage', 'coverpage.html'),
(111, 1, 'coverpage', 'coverpage.html'),
(112, 1, 'coverpage', 'coverpage.html'),
(113, 1, 'coverpage', 'coverpage.html'),
(114, 1, 'title', 'title.xml'),
(115, 1, 'title', 'title.xml'),
(116, 1, 'content-0014', 'content/content-0014.xml'),
(117, 1, 'titlepage', 'title.html'),
(118, 1, 'title', 'title.xml'),
(120, 1, 'titlepage', 'title.html'),
(121, 1, 'titlepage', 'title.html'),
(122, 1, 'titlepage', 'title.html'),
(123, 1, 'titlepage', 'title.html'),
(124, 1, 'titlepage', 'title.html'),
(125, 1, 'content-0006', 'content/content-0006.xml'),
(126, 1, 'titlepage', 'titlepage.xhtml'),
(127, 1, 'titlepage', 'titlepage.xhtml'),
(128, 1, 'titlepage', 'titlepage.xhtml'),
(129, 1, 'titlepage', 'titlepage.xhtml'),
(130, 1, 'titlepage', 'titlepage.xhtml'),
(131, 1, 'titlepage', 'titlepage.xhtml'),
(132, 1, 'part0000', 'part0000.html'),
(133, 1, 'titlepage', 'titlepage.xhtml'),
(134, 1, 'titlepage', 'titlepage.xhtml'),
(135, 1, 'titlepage', 'titlepage.xhtml'),
(136, 1, 'titlepage', 'titlepage.xhtml'),
(137, 1, 'titlepage', 'titlepage.xhtml'),
(138, 1, 'titlepage', 'titlepage.xhtml'),
(139, 1, 'titlepage', 'titlepage.xhtml'),
(140, 1, 'titlepage', 'titlepage.xhtml'),
(141, 1, 'titlepage', 'titlepage.xhtml'),
(142, 1, 'titlepage', 'titlepage.xhtml'),
(143, 1, 'titlepage', 'title.html'),
(144, 1, 'titlepage', 'titlepage.xhtml'),
(145, 1, 'titlepage', 'titlepage.xhtml'),
(146, 1, 'titlepage', 'titlepage.xhtml'),
(147, 1, 'titlepage', 'titlepage.xhtml'),
(148, 1, 'titlepage', 'titlepage.xhtml'),
(149, 1, 'titlepage', 'titlepage.xhtml'),
(150, 1, 'titlepage', 'titlepage.xhtml'),
(151, 1, 'titlepage', 'titlepage.xhtml'),
(152, 1, 'titlepage', 'titlepage.xhtml'),
(153, 1, 'titlepage', 'titlepage.xhtml'),
(154, 1, 'titlepage', 'titlepage.xhtml'),
(155, 1, 'titlepage', 'titlepage.xhtml'),
(156, 1, 'titlepage', 'titlepage.xhtml'),
(157, 1, 'titlepage', 'titlepage.xhtml'),
(158, 1, 'titlepage', 'titlepage.xhtml'),
(159, 1, 'titlepage', 'titlepage.xhtml'),
(160, 1, 'titlepage', 'titlepage.xhtml'),
(161, 1, 'titlepage', 'titlepage.xhtml'),
(162, 1, 'titlepage', 'titlepage.xhtml'),
(163, 1, 'titlepage', 'titlepage.xhtml'),
(164, 1, 'titlepage', 'titlepage.xhtml'),
(165, 1, 'titlepage', 'titlepage.xhtml'),
(166, 1, 'titlepage', 'titlepage.xhtml'),
(167, 1, 'titlepage', 'titlepage.xhtml'),
(168, 1, 'titlepage', 'titlepage.xhtml'),
(169, 1, 'titlepage', 'title.html'),
(170, 1, 'titlepage', 'title.html'),
(171, 1, 'titlepage', 'title.html'),
(172, 1, 'titlepage', 'title.html'),
(173, 1, 'titlepage', 'title.xml'),
(174, 1, 'titlepage', 'titlepage.xhtml'),
(175, 1, 'titlepage', 'titlepage.xhtml'),
(176, 1, 'coverpage', 'cover.html'),
(177, 1, 'coverpage', 'cover.html'),
(178, 1, 'coverpage', 'cover.html'),
(179, 1, 'coverpage', 'cover.html'),
(180, 1, 'coverpage', 'cover.html'),
(181, 1, 'coverpage', 'cover.html'),
(182, 1, 'coverpage', 'cover.html'),
(183, 1, 'coverpage', 'cover.html'),
(184, 1, 'coverpage', 'cover.html'),
(185, 1, 'coverpage', 'cover.html'),
(186, 1, 'coverpage', 'cover.html'),
(187, 1, 'coverpage', 'cover.html'),
(188, 1, 'coverpage', 'cover.html'),
(189, 1, 'coverpage', 'cover.html'),
(190, 1, 'coverpage', 'cover.html'),
(191, 1, 'coverpage', 'cover.html'),
(192, 1, 'coverpage', 'cover.html'),
(193, 1, 'coverpage', 'cover.html'),
(195, 1, 'coverpage', 'cover.html'),
(196, 1, 'coverpage', 'cover.html'),
(197, 1, 'book', 'book.html'),
(199, 1, 'titlepage', 'title.html'),
(200, 1, 'id12', 'index_split_000.html'),
(201, 1, 'id13', 'index_split_000.html'),
(2, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(3, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(4, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(5, 2, 'part2.xhtml', 'part2.xhtml'),
(7, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(8, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(9, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(11, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(12, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(13, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(14, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(15, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(16, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(17, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(18, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(19, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(20, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(21, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(22, 2, 'part2.xhtml', 'part2.xhtml'),
(24, 2, 'html4', 'shakespeetext982ws1610_split_0.html'),
(27, 2, 'part2.xhtml', 'part2.xhtml'),
(30, 2, 'about', 'about.xml'),
(40, 2, 'about', 'about.xml'),
(41, 2, 'about', 'about.xml'),
(42, 2, 'about', 'about.xml'),
(46, 2, 'chapter1', 'chapter1.html'),
(47, 2, 'about', 'about.xml'),
(48, 2, 'level1_2', 'chapter33952.htm'),
(49, 2, 'titlepage', 'title.xml'),
(50, 2, 'bookname', 'bookname.html'),
(53, 2, 'about', 'about.xml'),
(56, 2, 'about', 'about.xml'),
(58, 2, 'about', 'about.xml'),
(59, 2, 'about', 'about.xml'),
(61, 2, 'part2.xhtml', 'part2.xhtml'),
(64, 2, 'about', 'about.xml'),
(65, 2, 'ch2', 'ch2.html'),
(66, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(67, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(68, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(69, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(70, 2, 'html', 'tagorera65246524-8.html'),
(71, 2, 'chapter2', 'Chapter1.html'),
(72, 2, 'chapter1', 'chapter1.html'),
(73, 2, 'chapter2', 'chapter2.htm'),
(74, 2, 'chapter1', 'chapter1.html'),
(75, 2, 'Mitchell,_Margaret_-_Gone_With_the_Wind15', 'Mitchell, Margaret - Gone With the Wind_split_0.htm'),
(77, 2, 'chapter1', 'chapter1.html'),
(78, 2, 'advpage', 'adv/advpage.html'),
(79, 2, 'chapter1', 'chapter1.html'),
(83, 2, 'chapter1', 'chapter1.html'),
(84, 2, 'chapter1', 'chapter1.html'),
(85, 2, 'chapter2', 'chapter2.html'),
(87, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(88, 2, 'page', 'page.xhtml'),
(91, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(92, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(93, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(94, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(95, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(96, 2, 'html371', 'lesms10_split_000.html'),
(97, 2, 'about', 'about.xml'),
(98, 2, 'about', 'about.xml'),
(99, 2, 'about', 'about.xml'),
(100, 2, 'about', 'about.xml'),
(101, 2, 'about', 'about.xml'),
(102, 2, 'about', 'about.xml'),
(103, 2, 'about', 'about.xml'),
(104, 2, 'about', 'about.xml'),
(105, 2, 'item5', 'www.gutenberg.org@files@10@[email protected]'),
(106, 2, 'chapter1', 'chapter1.html'),
(107, 2, 'chapter1', 'chapter1.html'),
(108, 2, 'chapter1', 'chapter1.html'),
(109, 2, 'chapter1', 'chapter1.html'),
(110, 2, 'chapter1', 'chapter1.html'),
(111, 2, 'chapter1', 'chapter1.html'),
(112, 2, 'chapter1', 'chapter1.html'),
(113, 2, 'chapter1', 'chapter1.html'),
(114, 2, 'about', 'about.xml'),
(115, 2, 'about', 'about.xml'),
(116, 2, 'content-0015', 'content/content-0015.xml'),
(117, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(118, 2, 'about', 'about.xml'),
(120, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(121, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(122, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(123, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(124, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(125, 2, 'content-0012', 'content/content-0012.xml'),
(126, 2, 'html19', 'cervantesetext971donq10_split_0.html'),
(127, 2, 'html4', 'shakespeetext982ws2610_split_0.html'),
(128, 2, 'html8', 'berense2238122381-8_split_0.html'),
(129, 2, 'html3', 'vatsyayana2782727827-8_split_0.html'),
(130, 2, 'html14', 'grimmetext04grimm10a_split_0.html'),
(131, 2, 'html6', 'doyleartetext99advsh12_split_0.html'),
(133, 2, 'html45', 'twainmaretext93hfinn12_split_0.html'),
(134, 2, 'html4', 'benedicte3060130601-8_split_0.html'),
(135, 2, 'html18', 'joycejametext03ulyss12_split_0.html'),
(136, 2, 'html4', 'kafkafraetext04metam10_split_0.html'),
(137, 2, 'html5', 'stokerbretext95dracu12_split_0.html'),
(138, 2, 'html8', 'melvilleetext01moby11_split_0.html'),
(139, 2, 'html4', 'various10941094710947-8_split_0.html'),
(140, 2, 'html16', 'davincietext048ldvc10_split_0.html'),
(141, 2, 'html2', 'joycejametext01dblnr11_split_0.html'),
(142, 2, 'html5', 'twainmaretext93sawyr11_split_0.html'),
(143, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(144, 2, 'html4', 'westjulius2708027080-8_split_0.html'),
(145, 2, 'html3', 'tzusun132132_split_0.html'),
(146, 2, 'html9', 'dumasalpetext981musk12_split_0.html'),
(147, 2, 'html10', 'danteetext970ddcc10_split_0.html'),
(148, 2, 'html6', 'barriejaetext91peter16_split_0.html'),
(149, 2, 'html', 'anonetext97bwulf11.html'),
(150, 2, 'html5', 'shelleymetext93frank14_split_0.html'),
(151, 2, 'html13', 'masons3368933689-8_split_0.html'),
(152, 2, 'html5', 'christieetext98secad10_split_0.html'),
(153, 2, 'html119', 'dumasalpetext98crsto12_split_0.html'),
(154, 2, 'html6', 'stowehar203203_split_0.html'),
(155, 2, 'html8', 'tolstoyl13211321413214-8_split_0.html'),
(156, 2, 'html18', 'tolstoyletext01wrnpc11_split_0.html'),
(157, 2, 'html13', 'tolstoyletext98nkrnn11_split_0.html'),
(158, 2, 'html7', 'defoedanetext96rbcru10_split_0.html'),
(159, 2, 'html7', 'nietzscheetext03bygdv10_split_0.html'),
(160, 2, 'html3', 'burroughseetext93pmars13_split_0.html'),
(161, 2, 'html3', 'fwtayloretext04pscmg10_split_0.html'),
(162, 2, 'html4', 'conradjoetext96hdark12a_split_0.html'),
(163, 2, 'html', 'baumlfraetext93wizoz10.html'),
(164, 2, 'html4', 'goethejo14591459114591-8_split_0.html'),
(165, 2, 'html4', 'swiftjonetext97mdprp10_split_0.html'),
(166, 2, 'html3', 'kiplingretext95jnglb10_split_0.html'),
(167, 2, 'html5', 'turgenevetext068spmn10_split_0.html'),
(168, 2, 'html4', 'doyleartetext97memho11_split_0.html'),
(169, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(170, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(171, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(172, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(173, 2, 'epubbooksinfo', 'epubbooksinfo.xml'),
(174, 2, 'html7', 'montgomeetext92anne11_split_0.html'),
(175, 2, 'html2', 'wildeosc844844_split_0.html'),
(176, 2, 'tocpage', 'toc.html'),
(177, 2, 'tocpage', 'toc.html'),
(178, 2, 'tocpage', 'toc.html'),
(179, 2, 'tocpage', 'toc.html'),
(180, 2, 'tocpage', 'toc.html'),
(181, 2, 'tocpage', 'toc.html'),
(182, 2, 'tocpage', 'toc.html'),
(183, 2, 'tocpage', 'toc.html'),
(184, 2, 'tocpage', 'toc.html'),
(185, 2, 'tocpage', 'toc.html'),
(186, 2, 'tocpage', 'toc.html'),
(187, 2, 'tocpage', 'toc.html'),
(188, 2, 'tocpage', 'toc.html'),
(189, 2, 'tocpage', 'toc.html'),
(190, 2, 'tocpage', 'toc.html'),
(191, 2, 'tocpage', 'toc.html'),
(192, 2, 'tocpage', 'toc.html'),
(193, 2, 'tocpage', 'toc.html'),
(195, 2, 'tocpage', 'toc.html'),
(196, 2, 'tocpage', 'toc.html'),
(199, 2, 'epubbooksinfo', 'epubbooksinfo.html'),
(200, 2, 'id11', 'index_split_001.html'),
(201, 2, 'id12', 'index_split_001.html'),
(2, 3, 'preface-001', 'preface-001.html'),
(3, 3, 'chapter-001', 'chapter-001.html'),
(4, 3, 'chapter-001', 'chapter-001.html'),
(5, 3, 'part3.xhtml', 'part3.xhtml'),
(7, 3, 'part-01', 'part-01.html'),
(8, 3, 'chapter-001', 'chapter-001.html'),
(9, 3, 'chapter-001', 'chapter-001.html'),
(11, 3, 'introduction-001', 'introduction-001.html'),
(12, 3, 'book-01', 'book-01.html'),
(13, 3, 'chapter-001', 'chapter-001.html'),
(14, 3, 'chapter-001', 'chapter-001.html'),
(15, 3, 'preface-001', 'preface-001.html'),
(16, 3, 'book-01', 'book-01.html'),
(17, 3, 'chapter-001', 'chapter-001.html'),
(18, 3, 'volume-01', 'volume-01.html'),
(19, 3, 'chapter-001', 'chapter-001.html'),
(20, 3, 'chapter-001', 'chapter-001.html'),
(21, 3, 'chapter-001', 'chapter-001.html'),
(22, 3, 'part3.xhtml', 'part3.xhtml'),
(24, 3, 'html3', 'shakespeetext982ws1610_split_1.html'),
(27, 3, 'part3.xhtml', 'part3.xhtml'),
(30, 3, 'right', 'right.xml'),
(40, 3, 'right', 'right.xml'),
(41, 3, 'right', 'right.xml'),
(42, 3, 'right', 'right.xml'),
(46, 3, 'chapter2', 'chapter2.html'),
(47, 3, 'right', 'right.xml'),
(48, 3, 'level1_3', 'chapter33953.htm'),
(49, 3, 'about', 'about.xml'),
(50, 3, 'content', 'content.html'),
(53, 3, 'right', 'right.xml'),
(56, 3, 'shucang', 'shucang.xml'),
(58, 3, 'right', 'right.xml'),
(59, 3, 'right', 'right.xml'),
(61, 3, 'part3.xhtml', 'part3.xhtml'),
(64, 3, 'main0', 'main0.xml'),
(65, 3, 'ch3', 'ch3.html'),
(66, 3, 'introduction-001', 'introduction-001.html'),
(67, 3, 'chapter-001', 'chapter-001.html'),
(68, 3, 'part-01', 'part-01.html'),
(69, 3, 'part-01', 'part-01.html'),
(71, 3, 'chapter3', 'Chapter2.html'),
(72, 3, 'chapter2', 'chapter2.html'),
(73, 3, 'chapter3', 'chapter3.htm'),
(75, 3, 'Mitchell,_Margaret_-_Gone_With_the_Wind14', 'Mitchell, Margaret - Gone With the Wind_split_1.htm'),
(77, 3, 'chapter2', 'chapter2.html'),
(78, 3, 'bookname', 'bookname.html'),
(79, 3, 'chapter2', 'chapter2.html'),
(83, 3, 'chapter2', 'chapter2.html'),
(84, 3, 'chapter2', 'chapter2.html'),
(85, 3, 'chapter3', 'chapter3.html'),
(87, 3, 'chapter-001', 'chapter-001.html'),
(88, 3, 'catalog', 'catalog.html'),
(91, 3, 'chapter-001', 'chapter-001.html'),
(92, 3, 'dedication', 'dedication.html'),
(93, 3, 'preface-001', 'preface-001.html'),
(94, 3, 'chapter-001', 'chapter-001.html'),
(95, 3, 'chapter-001', 'chapter-001.html'),
(96, 3, 'html370', 'lesms10_split_001.html'),
(97, 3, 'right', 'right.xml'),
(98, 3, 'right', 'right.xml'),
(99, 3, 'right', 'right.xml'),
(100, 3, 'right', 'right.xml'),
(101, 3, 'right', 'right.xml'),
(102, 3, 'right', 'right.xml'),
(103, 3, 'right', 'right.xml'),
(104, 3, 'right', 'right.xml'),
(105, 3, 'item6', 'www.gutenberg.org@files@10@[email protected]'),
(106, 3, 'chapter2', 'chapter2.html'),
(107, 3, 'chapter2', 'chapter2.html'),
(108, 3, 'chapter128', 'chapter128.html'),
(109, 3, 'chapter2', 'chapter2.html'),
(110, 3, 'chapter2', 'chapter2.html'),
(111, 3, 'chapter2', 'chapter2.html'),
(112, 3, 'chapter2', 'chapter2.html'),
(113, 3, 'chapter2', 'chapter2.html'),
(114, 3, 'right', 'right.xml'),
(115, 3, 'right', 'right.xml'),
(116, 3, 'content-0016', 'content/content-0016.xml'),
(117, 3, 'dedication', 'dedication.html'),
(118, 3, 'right', 'right.xml'),
(120, 3, 'dedication', 'dedication.html'),
(121, 3, 'note-001', 'note-001.html'),
(122, 3, 'introduction-001', 'introduction-001.html'),
(123, 3, 'part-01', 'part-01.html'),
(124, 3, 'note-001', 'note-001.html'),
(125, 3, 'content-0016', 'content/content-0016.xml'),
(126, 3, 'html18', 'cervantesetext971donq10_split_1.html'),
(127, 3, 'html3', 'shakespeetext982ws2610_split_1.html'),
(128, 3, 'html7', 'berense2238122381-8_split_1.html'),
(129, 3, 'html2', 'vatsyayana2782727827-8_split_1.html'),
(130, 3, 'html13', 'grimmetext04grimm10a_split_1.html'),
(131, 3, 'html5', 'doyleartetext99advsh12_split_1.html'),
(133, 3, 'html44', 'twainmaretext93hfinn12_split_1.html'),
(134, 3, 'html3', 'benedicte3060130601-8_split_1.html'),
(135, 3, 'html17', 'joycejametext03ulyss12_split_1.html'),
(136, 3, 'html3', 'kafkafraetext04metam10_split_1.html'),
(137, 3, 'html4', 'stokerbretext95dracu12_split_1.html'),
(138, 3, 'html7', 'melvilleetext01moby11_split_1.html'),
(139, 3, 'html3', 'various10941094710947-8_split_1.html'),
(140, 3, 'html15', 'davincietext048ldvc10_split_1.html'),
(141, 3, 'html1', 'joycejametext01dblnr11_split_1.html'),
(142, 3, 'html4', 'twainmaretext93sawyr11_split_1.html'),
(143, 3, 'book-01', 'book-01.html'),
(144, 3, 'html3', 'westjulius2708027080-8_split_1.html'),
(145, 3, 'html2', 'tzusun132132_split_1.html'),
(146, 3, 'html8', 'dumasalpetext981musk12_split_1.html'),
(147, 3, 'html9', 'danteetext970ddcc10_split_1.html'),
(148, 3, 'html5', 'barriejaetext91peter16_split_1.html'),
(150, 3, 'html4', 'shelleymetext93frank14_split_1.html'),
(151, 3, 'html12', 'masons3368933689-8_split_1.html'),
(152, 3, 'html4', 'christieetext98secad10_split_1.html'),
(153, 3, 'html118', 'dumasalpetext98crsto12_split_1.html'),
(154, 3, 'html5', 'stowehar203203_split_1.html'),
(155, 3, 'html7', 'tolstoyl13211321413214-8_split_1.html'),
(156, 3, 'html17', 'tolstoyletext01wrnpc11_split_1.html'),
(157, 3, 'html12', 'tolstoyletext98nkrnn11_split_1.html'),
(158, 3, 'html6', 'defoedanetext96rbcru10_split_1.html'),
(159, 3, 'html6', 'nietzscheetext03bygdv10_split_1.html'),
(160, 3, 'html2', 'burroughseetext93pmars13_split_1.html'),
(161, 3, 'html2', 'fwtayloretext04pscmg10_split_1.html'),
(162, 3, 'html3', 'conradjoetext96hdark12a_split_1.html'),
(164, 3, 'html3', 'goethejo14591459114591-8_split_1.html'),
(165, 3, 'html3', 'swiftjonetext97mdprp10_split_1.html'),
(166, 3, 'html2', 'kiplingretext95jnglb10_split_1.html'),
(167, 3, 'html4', 'turgenevetext068spmn10_split_1.html'),
(168, 3, 'html3', 'doyleartetext97memho11_split_1.html'),
(169, 3, 'note-001', 'note-001.html'),
(170, 3, 'chapter-001', 'chapter-001.html'),
(171, 3, 'chapter-001', 'chapter-001.html'),
(172, 3, 'chapter-001', 'chapter-001.html'),
(173, 3, 'chapter-001', 'chapter-001.xml'),
(174, 3, 'html6', 'montgomeetext92anne11_split_1.html'),
(175, 3, 'html1', 'wildeosc844844_split_1.html'),
(176, 3, 'description1', 'description1.html'),
(177, 3, 'chapter1', 'chapter1.html'),
(178, 3, 'description1', 'description1.html'),
(179, 3, 'description1', 'description1.html'),
(180, 3, 'description', 'description.html'),
(181, 3, 'prologue', 'prologue.html'),
(182, 3, 'prologue', 'prologue.html'),
(183, 3, 'prologue', 'prologue.html'),
(184, 3, 'description', 'description.html'),
(185, 3, 'chapter1', 'chapter1.html'),
(186, 3, 'description1', 'description1.html'),
(187, 3, 'description1', 'description1.html'),
(188, 3, 'description1', 'description1.html'),
(189, 3, 'description', 'description.html'),
(190, 3, 'prologue', 'prologue.html'),
(191, 3, 'part1', 'part1.html'),
(192, 3, 'chapter1', 'chapter1.html'),
(193, 3, 'description', 'description.html'),
(195, 3, 'prologue', 'prologue.html'),
(196, 3, 'chapter1', 'chapter1.html'),
(199, 3, 'note-001', 'note-001.html'),
(201, 3, 'id11', 'index_split_002.html'),
(2, 4, 'epigraph', 'epigraph.html'),
(3, 4, 'chapter-002', 'chapter-002.html'),
(4, 4, 'chapter-002', 'chapter-002.html'),
(5, 4, 'part4.xhtml', 'part4.xhtml'),
(7, 4, 'chapter-001', 'chapter-001.html'),
(8, 4, 'chapter-002', 'chapter-002.html'),
(9, 4, 'chapter-002', 'chapter-002.html'),
(11, 4, 'chapter-001', 'chapter-001.html'),
(12, 4, 'chapter-001', 'chapter-001.html'),
(13, 4, 'chapter-002', 'chapter-002.html'),
(14, 4, 'chapter-002', 'chapter-002.html'),
(15, 4, 'introduction-002', 'introduction-002.html'),
(16, 4, 'chapter-001', 'chapter-001.html'),
(17, 4, 'chapter-002', 'chapter-002.html'),
(18, 4, 'chapter-001', 'chapter-001.html'),
(19, 4, 'chapter-002', 'chapter-002.html'),
(20, 4, 'chapter-002', 'chapter-002.html'),
(21, 4, 'chapter-002', 'chapter-002.html'),
(22, 4, 'part4.xhtml', 'part4.xhtml'),
(24, 4, 'html2', 'shakespeetext982ws1610_split_2.html'),
(27, 4, 'part4.xhtml', 'part4.xhtml'),
(30, 4, 'shucang', 'shucang.xml'),
(40, 4, 'shucang', 'shucang.xml'),
(41, 4, 'shucang', 'shucang.xml'),
(42, 4, 'level1_4', 'chapter65452.htm'),
(46, 4, 'chapter3', 'chapter3.html'),
(47, 4, 'level1_4', 'chapter45365.htm'),
(48, 4, 'level1_4', 'chapter33954.htm'),
(49, 4, 'main0', 'main0.xml'),
(50, 4, 'chapter1', 'chapter1.html'),
(53, 4, 'shucang', 'shucang.xml'),
(56, 4, 'node_6.html', 'node_6.html'),
(58, 4, 'shucang', 'shucang.xml'),
(59, 4, 'shucang', 'shucang.xml'),
(61, 4, 'part4.xhtml', 'part4.xhtml'),
(64, 4, 'main1', 'main1.xml'),
(65, 4, 'ch4', 'ch4.html'),
(66, 4, 'book-01', 'book-01.html'),
(67, 4, 'chapter-002', 'chapter-002.html'),
(68, 4, 'chapter-001', 'chapter-001.html'),
(69, 4, 'chapter-001', 'chapter-001.html'),
(71, 4, 'chapter4', 'Chapter3.html'),
(72, 4, 'chapter3', 'chapter3.html'),
(73, 4, 'chapter4', 'chapter4.htm'),
(75, 4, 'Mitchell,_Margaret_-_Gone_With_the_Wind13', 'Mitchell, Margaret - Gone With the Wind_split_2.htm'),
(77, 4, 'chapter3', 'chapter3.html'),
(78, 4, 'content', 'content.html'),
(79, 4, 'chapter3', 'chapter3.html'),
(83, 4, 'chapter3', 'chapter3.html'),
(84, 4, 'chapter3', 'chapter3.html'),
(85, 4, 'chapter4', 'chapter4.html'),
(87, 4, 'chapter-002', 'chapter-002.html'),
(88, 4, 'id13126_1', 'article_13126_1.html'),
(91, 4, 'chapter-002', 'chapter-002.html'),
(92, 4, 'preface-001', 'preface-001.html'),
(93, 4, 'chapter-001', 'chapter-001.html'),
(94, 4, 'chapter-002', 'chapter-002.html'),
(95, 4, 'chapter-002', 'chapter-002.html'),
(96, 4, 'html369', 'lesms10_split_002.html'),
(97, 4, 'main1', 'main1.xml'),
(98, 4, 'level1_4', 'chapter48238.htm'),
(99, 4, 'level1_4', 'chapter48113.htm'),
(100, 4, 'level1_4', 'chapter48000.htm'),
(101, 4, 'level1_4', 'chapter48042.htm'),
(102, 4, 'level1_4', 'chapter48029.htm'),
(103, 4, 'level1_4', 'chapter48165.htm'),
(104, 4, 'level1_4', 'chapter48096.htm'),
(105, 4, 'item7', 'www.gutenberg.org@files@10@[email protected]'),