Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre

Notices

Reply
 
Thread Tools Search this Thread
Old 02-28-2025, 01:17 AM   #226
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,410
Karma: 27757236
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
The tooltip says list the names of collections to be ignored by collection management. Seems correct to me?

Note that this is the tooltip you will get when you hover over the box for entering the names, if you hover over the label you get the generic tooltip for that entire group of settings, which is create collections.

@gbm: Thanks, now fixed.
kovidgoyal is offline   Reply With Quote
Old 02-28-2025, 01:24 AM   #227
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,625
Karma: 169712392
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Doesn't seem to work that way here. Ignore collections and Create collections are the only tooltips where they match the Collections tooltip. Perhaps simply copying the tooltip for the list of ignored collections box?
Attached Thumbnails
Click image for larger version

Name:	Screenshot 2025-02-27 221930.png
Views:	57
Size:	9.4 KB
ID:	213939   Click image for larger version

Name:	Screenshot 2025-02-27 222016.png
Views:	57
Size:	9.8 KB
ID:	213940   Click image for larger version

Name:	Screenshot 2025-02-27 222118.png
Views:	52
Size:	13.1 KB
ID:	213941   Click image for larger version

Name:	Screenshot 2025-02-27 222346.png
Views:	48
Size:	13.3 KB
ID:	213942  
DNSB is offline   Reply With Quote
Old 02-28-2025, 03:10 AM   #228
beedaddy
Addict
beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.
 
Posts: 205
Karma: 135428
Join Date: Oct 2011
Location: Germany (south-west)
Device: Kobo Libra 2 & Clara 2E, Tolino shine 5th Gen, Kindle PW6
I'm thinking about the "Use Kobo viewer for EPUB books" setting, which seems to enable the kepub-conversion…

I have one of the new Tolino devices which are supported by this driver. But they don't support the KEPUB format, so converting EPUBs to KEPUBs makes no sense. On the other hand, I would like to keep this setting enabled so that the convertion takes place if I plug in a Kobo device.

What do you think how (or if at all) to handle this?

Maybe a checkbox "Ignore this for Tolino devices" would be good, so you have the choice to still convert the files (for whatever reason).

Or it could be silently ignored if a Tolino device is connected. Something like:

Code:
diff --git a/src/calibre/devices/kobo/driver.py b/src/calibre/devices/kobo/driver.py
index 9ac76ed485..f20dfb24d9 100644
--- a/src/calibre/devices/kobo/driver.py
+++ b/src/calibre/devices/kobo/driver.py
@@ -2294,7 +2294,7 @@ def upload_books(self, files, names, on_card=None, end_session=True,
         debug_print(f'KoboTouch:upload_books - {len(files)} books')
         debug_print('KoboTouch:upload_books - files=', files)
 
-        do_kepubify = self.get_pref('kepubify')
+        do_kepubify = self.get_pref('kepubify') and not self.isTolinoDevice()
         template = self.get_pref('template_for_kepubify')
         modify_css = self.modifying_epub()
         entries = tuple(zip(files, names, metadata))
diff --git a/src/calibre/devices/kobo/kobotouch_config.py b/src/calibre/devices/kobo/kobotouch_config.py
index d8e64ab43d..d94d87fd5f 100644
--- a/src/calibre/devices/kobo/kobotouch_config.py
+++ b/src/calibre/devices/kobo/kobotouch_config.py
@@ -358,6 +358,7 @@ def __init__(self, parent, device):
                 ' the Kobo one. The Kobo one has much better performance and features and so, by default,'
                 ' calibre will auto-convert EPUB books to the Kobo KEPUB format so that they are viewed by'
                 ' the Kobo viewer. If you would rather use the legacy viewer for EPUB, disable this option.'
+                ' This setting does not apply for Tolino devices (since they don\'t support the KEPUB format).'
             ), device.get_pref('kepubify'))
 
         self.template_la = la = QLabel('\xa0\xa0' + _('Template to decide conversion:'))
EDIT: I think the solution with an additional checkbox would be better. I will open a PR and see what happens.

Last edited by beedaddy; 02-28-2025 at 05:34 AM.
beedaddy is offline   Reply With Quote
Old 02-28-2025, 05:37 AM   #229
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,410
Karma: 27757236
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
@beedaddy: https://github.com/kovidgoyal/calibr...dcfd312b697897
kovidgoyal is offline   Reply With Quote
Old 02-28-2025, 05:45 AM   #230
beedaddy
Addict
beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.
 
Posts: 205
Karma: 135428
Join Date: Oct 2011
Location: Germany (south-west)
Device: Kobo Libra 2 & Clara 2E, Tolino shine 5th Gen, Kindle PW6
Ah, thanks. In the meantime I submitted a PR with a different approach. Feel free to decide.
beedaddy is offline   Reply With Quote
Old 02-28-2025, 06:21 AM   #231
gabryele
Connoisseur
gabryele began at the beginning.
 
Posts: 61
Karma: 10
Join Date: Sep 2016
Device: Kobo Aura one
Quote:
Originally Posted by kovidgoyal View Post
Released version 7.26.101 with the major updates to Kobo support. Now the Kobo driver auto converts EPUB to KEPUB when sending books to the device for the on device copy. This can be configured in the driver preferences. calibre has also gained the ability to view, edit and convert the KEPUB format.

calibre also now prevents five third party Kobo plugins from loading as their functionality is now present in core calibre. Kobo Touch Extentded, KEPUB Input/Output and KEPUB metadata reader/writer. If you had any settings customization done in the Kobo Touch Extended plugin, you will need to manually migrate that to the builtin Kobo driver.
calibre 7.26
The plugin was not disabled. I thought it was automatically disabled.

gabryele is offline   Reply With Quote
Old 02-28-2025, 06:27 AM   #232
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,410
Karma: 27757236
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
It's not disabled, its just blacklisted, which means it wont be used. I dont disable it automatically so that the user can still see its configuration to port things over and also if they downgrade calibre, it wont be disabled.
kovidgoyal is offline   Reply With Quote
Old 02-28-2025, 06:37 AM   #233
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,845
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
I look forward to testing this version.
JSWolf is offline   Reply With Quote
Old 02-28-2025, 06:45 AM   #234
beedaddy
Addict
beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.beedaddy has rectified all his or her action issues with transformational deconfliction.
 
Posts: 205
Karma: 135428
Join Date: Oct 2011
Location: Germany (south-west)
Device: Kobo Libra 2 & Clara 2E, Tolino shine 5th Gen, Kindle PW6
Quote:
Originally Posted by beedaddy View Post
Ah, thanks. In the meantime I submitted a PR with a different approach. Feel free to decide.
(On second thought, I would slightly prefer the checkbox approach. If there was a (hidden) developer option for KEPUBs or another reason for the conversion, one would have a choice with the PR #2686. I'm about to ask in a German forum, where there are more Tolino users, whether KEPUB on a Tolino might be useful after all.)
beedaddy is offline   Reply With Quote
Old 02-28-2025, 07:08 AM   #235
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,845
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
I've found a bug in sending KePub. It doesn't work when I use my code.

Code:
program: 
	$#kepub == 'yes'
Click image for larger version

Name:	KePub.jpg
Views:	77
Size:	129.9 KB
ID:	213957
JSWolf is offline   Reply With Quote
Old 02-28-2025, 08:32 AM   #236
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,410
Karma: 27757236
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
Quote:
Originally Posted by beedaddy View Post
(On second thought, I would slightly prefer the checkbox approach. If there was a (hidden) developer option for KEPUBs or another reason for the conversion, one would have a choice with the PR #2686. I'm about to ask in a German forum, where there are more Tolino users, whether KEPUB on a Tolino might be useful after all.)

Either Tolino's do something with the extra markup in KEPUB or they do not. If they do not there is absolutely no reason to kepubify an epub being sent to the tolino. If they do use it then the existing option can apply to them just as well as it can to kobos. I am afraid I am not adding another checkbox to cater to the extreme niche of people that first have both types of devices and additionally want to kepubify on one type of device but not on the other.
kovidgoyal is offline   Reply With Quote
Old 02-28-2025, 08:33 AM   #237
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,410
Karma: 27757236
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
@JSWolf: define doesnt work. And run calibre in debug mode and post the debug log when you send a book that doesnt work.
kovidgoyal is offline   Reply With Quote
Old 02-28-2025, 09:12 AM   #238
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 11,044
Karma: 75555555
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
Quote:
Originally Posted by kovidgoyal View Post
I am afraid I am not adding another checkbox to cater to the extreme niche of people that first have both types of devices and additionally want to kepubify on one type of device but not on the other.
Template can check for current connected device, so i think it should be possible to use it to send kepubs to one and epubs to another.

Last edited by ownedbycats; 02-28-2025 at 10:11 AM.
ownedbycats is offline   Reply With Quote
Old 02-28-2025, 10:46 AM   #239
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,845
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by kovidgoyal View Post
@JSWolf: define doesnt work. And run calibre in debug mode and post the debug log when you send a book that doesnt work.
When I set Y in my custom column, the eBook is send as ePub instead of KePub.

Here is the log file from a debug run trying to send the ePub as KePub using the template.

Code:
ApplicationPaletteChange event ignored
Using calibre Qt style: True
EpubMerge: DEBUG: 2025-02-28 15:42:45,485: calibre_plugins.epubmerge.epubmerge_plugin(156): macmenuhack file_path:C:\Users\jswol\AppData\Roaming\calibre\plugins\fanficfare_macmenuhack.txt
calibre Debug log
calibre 7.26.101  embedded-python: True
Windows-10-10.0.26100-SP0 Windows ('64bit', 'WindowsPE')
('Windows', '10', '10.0.26100')
Python 3.11.5
Windows: ('10', '10.0.26100', 'SP0', 'Multiprocessor Free')
Interface language: None
EXE path: C:\Program Files\Calibre2\calibre-debug.exe
Successfully initialized third party plugins: DeACSM (0, 0, 16) && Gather KFX-ZIP (from KFX Input) (2, 21, 0) && DeDRM (10, 0, 9) && Package KFX (from KFX Input) (2, 21, 0) && Annotations (1, 17, 13) && Apple Books covers (0, 2, 0) && Backup Configuration Folder (1, 1, 2) && Barnes & Noble (1, 5, 6) && BookFusion Plugin (0, 8, 1) && Count Pages (1, 13, 6) && Diaps Editing Toolbag (0, 5, 0) && EpubCheck (0, 2, 5) && EpubMerge (3, 2, 0) && EpubSplit (3, 10, 0) && Favourites Menu (1, 3, 1) && Find Duplicates (1, 10, 9) && Hyphenate This! (0, 1, 3) && KFX metadata reader (from KFX Input) (2, 21, 0) && From KFX (2, 21, 0) && KFX Input (2, 21, 0) && Set KFX metadata (from KFX Output) (2, 14, 0) && KFX Output (2, 14, 0) && Kindle hi-res covers (0, 5, 1) && KindleUnpack - The Plugin (0, 83, 7) && Kobo Metadata (1, 10, 0) && Kobo Utilities (2, 18, 4) && Modify ePub (1, 8, 5) && Quality Check (1, 13, 16) && Reading Goal (1, 8, 9) && Reading List (1, 15, 4) && ScrambleEbook (0, 6, 0) && TextDiff (1, 2, 4)
calibre 7.26.101  embedded-python: True
Windows-10-10.0.26100-SP0 Windows ('64bit', 'WindowsPE')
('Windows', '10', '10.0.26100')
Python 3.11.5
Windows: ('10', '10.0.26100', 'SP0', 'Multiprocessor Free')
Interface language: None
EXE path: C:\Program Files\Calibre2\calibre-debug.exe
Successfully initialized third party plugins: DeACSM (0, 0, 16) && Gather KFX-ZIP (from KFX Input) (2, 21, 0) && DeDRM (10, 0, 9) && Package KFX (from KFX Input) (2, 21, 0) && Annotations (1, 17, 13) && Apple Books covers (0, 2, 0) && Backup Configuration Folder (1, 1, 2) && Barnes & Noble (1, 5, 6) && BookFusion Plugin (0, 8, 1) && Count Pages (1, 13, 6) && Diaps Editing Toolbag (0, 5, 0) && EpubCheck (0, 2, 5) && EpubMerge (3, 2, 0) && EpubSplit (3, 10, 0) && Favourites Menu (1, 3, 1) && Find Duplicates (1, 10, 9) && Hyphenate This! (0, 1, 3) && KFX metadata reader (from KFX Input) (2, 21, 0) && From KFX (2, 21, 0) && KFX Input (2, 21, 0) && Set KFX metadata (from KFX Output) (2, 14, 0) && KFX Output (2, 14, 0) && Kindle hi-res covers (0, 5, 1) && KindleUnpack - The Plugin (0, 83, 7) && Kobo Metadata (1, 10, 0) && Kobo Utilities (2, 18, 4) && Modify ePub (1, 8, 5) && Quality Check (1, 13, 16) && Reading Goal (1, 8, 9) && Reading List (1, 15, 4) && ScrambleEbook (0, 6, 0) && TextDiff (1, 2, 4)
QPA platform: windows
devicePixelRatio: 1.0
logicalDpi: 120.0 x 120.0
physicalDpi: 170.2198952879581 x 170.12093023255815
[0.00] Starting up...
[0.00] Showing splash screen...
[1.16] splash screen shown
[1.17] Initializing db...
[2.64] db initialized
[2.64] Constructing main UI...
DEBUG:    0.0 Annotations plugin: Error loading libiMobileDevice. This hasn't worked for a while, and is blacklisted in calibre v3.
DEBUG:    0.0 Annotations plugin: Error is:  No module named 'calibre.devices.idevice'
DEBUG:    0.0 Annotations::reader_app_support.py - loading translations
DEBUG:    0.0 Annotations::common_utils.py - loading translations
DEBUG:    0.0 Annotations::appearance.py - loading translations
DEBUG:    0.0 Annotations::config.py - loading translations
DEBUG:    0.0 Annotations::annotated_books.py - loading translations
DEBUG:    0.0 Annotations::action.py - loading translations
DEBUG:    0.0 Kobo Utilities Configuration - CreateNewCustomColumn is supported
qt.webengine.QWebEngineView OK
Textdiff: self.menu:
[5.16] GUI main window shown
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
DEBUG:    1.9 No Kobo Touch, Glo or Mini appears to be connected
DEBUG:    1.9 rebuild_menus - self.supports_ratings=None, self.supports_tiles=None
DEBUG:    1.9 KoboUtilities:set_toolbar_button_tooltip - start: text='None'
DEBUG:    1.9 device_driver_name - could not load extended driver. Exception= No module named 'calibre_plugins.kobotouch_extended'
DEBUG:    1.9 KoboUtilities:set_toolbar_button_tooltip - setting to text='Utilities to use with Kobo ereaders

Driver: KoboTouch'
DEBUG:    1.9 device_driver_name - could not load extended driver. Exception= No module named 'calibre_plugins.kobotouch_extended'
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
[5.27] main UI initialized...
[5.27] Hiding splash screen
[5.27] splash screen hidden
[5.27] Started up in 5.27 seconds with 1548 books
Storage number map:
{(7, 0): [(3, 'C')], (7, 1): [(1, 'F')]}
Storage number for USBSTOR\DISK&VEN_LINUX&PROD_FILE-STOR_GADGET&REV_0401\N4181A0100162&0: StorageDeviceNumber(type=7, number=1, partition_number=0)
Drive letters for USBDevice(vendor_id=0x2237 product_id=0x4234 bcd=0x401 devid=usb\vid_2237&pid_4234&rev_0401 devinst=11)
{'drive_letters': ['F'],
 'pnp_id_map': {'F': '\\\\?\\usbstor#disk&ven_linux&prod_file-stor_gadget&rev_0401#n4181a0100162&0#{53f56307-b6bf-11d0-94f2-00a0c91efb8b}'},
 'readonly_drives': set(),
 'sort_map': {'F': (1, 1)}}
Shortcut for 'Interface Action: Annotations (Annotations) - Find annotations' already registered by Find annotations
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
DEBUG:   22.5 KoboUtilities:_on_device_connection_changed - self.plugin_device_connection_changed.__class__:  <class 'PyQt6.QtCore.pyqtBoundSignal'>
DEBUG:   22.5 Methods for self.plugin_device_connection_changed:  ['__call__', '__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getstate__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'connect', 'disconnect', 'emit', 'signal']
DEBUG:   22.5 Have a Kobo device connected connected
DEBUG:   22.5 BEGIN Get Device Path
DEBUG:   22.5 Root path of device: F:\
DEBUG:   22.5 END Get Device Path
DEBUG:   22.5 KoboUtilities:get_device - self.device_path="F:\"
DEBUG:   22.5 KoboUtilities:set_toolbar_button_tooltip - start: text='None'
DEBUG:   22.5 device_driver_name - could not load extended driver. Exception= No module named 'calibre_plugins.kobotouch_extended'
DEBUG:   22.5 KoboUtilities:set_toolbar_button_tooltip - setting to text='Utilities to use with Kobo ereaders

Driver: KoboTouch'
Job: 0 Get device information started
DeviceJob: 0 Get device information done, calling callback
DeviceJob: 0 Get device information callback returned
Job: 1 Set library information started
DeviceJob: 1 Set library information done, calling callback
DeviceJob: 1 Set library information callback returned
Job: 2 Get list of books on device started
DEBUG:   23.1 KoboTouch:books - oncard='None'
DEBUG:   23.1 KoboTouch:books - oncard='None', prefix='F:\'
DEBUG:   23.1 device_version_info - start
DEBUG:   23.1 device_version_info - version_file=F:\.kobo\version
DEBUG:   23.1 device_version_info - have opened version_file
DEBUG:   23.1 device_version_info - self._device_version_info= ['N4181A0100162', '4.1.15', '4.38.23171', '4.1.15', '4.1.15', '00000000-0000-0000-0000-000000000388']
DEBUG:   23.1 Kobo device: Kobo Libra 2
DEBUG:   23.1 Version of driver: (2, 6, 0) Has kepubs: True
DEBUG:   23.1 Version of firmware: (4, 38, 23171) Has kepubs: True
DEBUG:   23.1 Firmware supports cover image tree: True
DEBUG:   23.1 KoboTouch:books - opts.extra_customization= []
DEBUG:   23.1 KoboTouch:books - driver options= Driver:KoboTouch, Options - format_map: ['epub', 'kepub', 'pdf', 'txt', 'cbz', 'cbr'], use_subdirs: True, read_metadata: True, use_author_sort: False, save_template: books/{author} - {series} {series_index:0>2s|| - } {title}, extra_customization: [], manage_collections: True, use_collections_columns: True, collections_columns: tags, use_collections_template: False, collections_template: , create_collections: True, delete_empty_collections: True, ignore_collections_names: , upload_covers: True, dithered_covers: True, keep_cover_aspect: True, upload_grayscale: True, letterbox_fs_covers: False, letterbox_fs_covers_color: #000000, png_covers: False, show_archived_books: False, show_previews: False, show_recommendations: False, update_series: True, force_series_id: False, update_core_metadata: True, update_purchased_kepubs: False, update_device_metadata: True, update_subtitle: False, subtitle_template: , update_bookstats: True, bookstats_wordcount_template: program:floor($$#words), bookstats_pagecount_template: program:floor($$#pages), bookstats_timetoread_upper_template: program:ceiling($$#words / 11150), bookstats_timetoread_lower_template: program:floor($$#words / 12000), kepubify: True, template_for_kepubify: program: 
	$#kepub == 'yes', modify_css: False, per_device_css: {}, override_kobo_replace_existing: False, affect_hyphenation: True, disable_hyphenation: False, hyphenation_min_chars: 6, hyphenation_min_chars_before: 3, hyphenation_min_chars_after: 3, hyphenation_limit_lines: 2, support_newer_firmware: True, debugging_title: , driver_version: 2.6.0
DEBUG:   23.1 KoboTouch:books - prefs['manage_device_metadata']= on_connect
DEBUG:   23.1 KoboTouch:books - set_debugging_title to ''
DEBUG:   23.1 KoboTouch:books - length bl=0
DEBUG:   23.6 KoboTouch:books - length bl after sync=558
DEBUG:   23.6 KoboTouch:books - reading device database
DEBUG:   23.6 Database Version:  174
DEBUG:   23.6 KoboTouch:books - shelf list: ['Star Trek', 'Standalone', 'ReadingList']
DEBUG:   23.6 KoboTouch:books - query= SELECT Title, Attribution, DateCreated, ContentID, MimeType, ContentType, ImageId, ReadStatus, Description, Publisher , ___ExpirationStatus, FavouritesIndex, Accessibility, Language, IsDownloaded, ISBN, Series, SeriesNumber, ___UserID, ExternalId, Subtitle, SeriesID, SeriesNumberFloat, StorePages, StoreWordCount, StoreTimeToReadLowerEstimate, StoreTimeToReadUpperEstimate FROM content  WHERE BookID IS NULL  AND ((Accessibility = -1 AND IsDownloaded in ('true', 1 ))       OR (Accessibility IN (1,2,8,9) and IsDownloaded in ('true', 1))         )  AND (externalId IS NULL OR externalId = '') AND contentId NOT LIKE 'file:///mnt/sd/%'
Job: 0 Get device information finished
No details available.
Job: 1 Set library information finished
No details available.
DEBUG:   25.9 KoboTouch:books - automatically managing metadata
DEBUG:   25.9 KoboTouch:books - self.kobo_series_dict= {}
DEBUG:   25.9 KoboTouch:books - about to sync_booklists
DEBUG:   25.9 USBMS: starting sync_booklists
DEBUG:   27.2 USBMS: finished sync_booklists
DEBUG:   27.2 KoboTouch:books - have done sync_booklists
DEBUG:   27.2 KoboTouch:books - end - oncard='None'
DEBUG:   27.2 KoboTouch:books - oncard='carda'
DEBUG:   27.2 KoboTouch:books - Asked to process 'carda', but do not have one!
DEBUG:   27.2 KoboTouch:books - oncard='cardb'
DEBUG:   27.2 KoboTouch:books - Asked to process 'cardb', but do not have one!
DeviceJob: 2 Get list of books on device done, calling callback
DEBUG:   27.2 DeviceJob: metadata_downloaded: Starting set_books_in_library
DEBUG:   27.2 DeviceJob: set_books_in_library: books to process= 558
DEBUG:   27.2 DeviceJob: set_books_in_library finished: time= 0.006060361862182617
DEBUG:   27.2 DeviceJob: metadata_downloaded: updating views
DEBUG:   27.3 DeviceJob: metadata_downloaded: syncing
DEBUG:   27.4 DeviceJob: metadata_downloaded: refreshing ondevice
DEBUG:   27.5 DeviceJob: metadata_downloaded: sending metadata_available signal
DEBUG:   26.9 KoboUtilites:_on_device_metadata_available - Start
DEBUG:   26.9 Have a Kobo device connected connected
DEBUG:   26.9 BEGIN Get Device Path
DEBUG:   26.9 Root path of device: F:\
DEBUG:   26.9 END Get Device Path
DEBUG:   26.9 KoboUtilities:get_device - self.device_path="F:\"
DEBUG:   26.9 KoboUtilities:get_device - drive_info: {'main': {'device_store_uuid': '6f8e340f-16ff-4c96-a2bd-32c0718c8048', 'device_name': 'Kobo Libra 2', 'location_code': 'main', 'last_library_uuid': '13d85d65-1491-412c-8fde-3a886fa79389', 'calibre_version': '7.26.101', 'date_last_connected': '2025-02-28T15:43:06.119454+00:00', 'prefix': 'F:/'}}
DEBUG:   26.9 migrate_library_config_if_required - start
DEBUG:   26.9 get_library_config - library_config: {'SchemaVersion': 0.1, 'currentReadingLocationColumn': '', 'lastReadColumn': '', 'precentReadColumn': '', 'profiles': {'Jon Libra 2': {'customColumnOptions': {'currentReadingLocationColumn': '#current', 'lastReadColumn': '#last', 'percentReadColumn': '#percent', 'ratingColumn': ''}, 'forDevice': '6f8e340f-16ff-4c96-a2bd-32c0718c8048', 'profileName': 'Jon Libra 2', 'storeOptionsStore': {'doNotStoreIfReopened': True, 'promptToStore': True, 'storeIfMoreRecent': True, 'storeOnConnect': True}, 'updateOptionsStore': {'doEarlyFirmwareUpdate': False, 'doFirmwareUpdateCheck': False, 'firmwareUpdateCheckLastTime': 0}}}, 'ratingColumn': '', 'readingPositionChangesStore': {'selectBooksInLibrary': True, 'updeateGoodreadsProgress': False}}
DEBUG:   26.9 get_prefs - start - store_name='storeOptionsStore'
DEBUG:   26.9 KoboUtilities:get_device - device_name: Kobo Libra 2
DEBUG:   26.9 get_plugin_pref - start - store_name='commonOptionsStore', option='individualDeviceOptions'
DEBUG:   26.9 get_prefs - start - store_name='backupOptionsStore'
DEBUG:   26.9 KoboUtilities:set_toolbar_button_tooltip - start: text='None'
DEBUG:   26.9 KoboUtilities:set_toolbar_button_tooltip - device connected. self.device.fwversion= (4, 38, 23171)
DEBUG:   26.9 KoboUtilities:set_toolbar_button_tooltip - setting to text='Utilities to use with Kobo ereaders

Connected Device: Kobo Libra 2
Firmware version: 4.38.23171
Driver: KoboTouch'
DEBUG:   26.9 KoboUtilites:_on_device_metadata_available - self.current_device_profile: {'customColumnOptions': {'currentReadingLocationColumn': '#current', 'lastReadColumn': '#last', 'percentReadColumn': '#percent', 'ratingColumn': ''}, 'forDevice': '6f8e340f-16ff-4c96-a2bd-32c0718c8048', 'profileName': 'Jon Libra 2', 'storeOptionsStore': {'storeOnConnect': True, 'promptToStore': True, 'storeIfMoreRecent': True, 'doNotStoreIfReopened': True}, 'updateOptionsStore': {'doEarlyFirmwareUpdate': False, 'doFirmwareUpdateCheck': False, 'firmwareUpdateCheckLastTime': 0}}
DEBUG:   26.9 KoboUtilites:_on_device_metadata_available - self.current_backup_config: {'doDailyBackp': True, 'backupEachCOnnection': False, 'backupCopiesToKeepSpin': 7, 'backupDestDirectory': 'C:/Download/Kobo/Backup', 'backupZipDatabase': True}
DEBUG:   26.9 KoboUtilites:_on_device_metadata_available - About to start auto backup
DEBUG:   26.9 auto_backup_device_database - start
DEBUG:   26.9 BEGIN Get Device Path
DEBUG:   26.9 Root path of device: F:\
DEBUG:   26.9 END Get Device Path
DEBUG:   26.9 auto_backup_device_database - destination directory= C:/Download/Kobo/Backup
DEBUG:   26.9 auto_backup_device_database - about to get version info from device...
DEBUG:   26.9 auto_backup_device_database - version_info= ['N4181A0100162', '4.1.15', '4.38.23171', '4.1.15', '4.1.15', '00000000-0000-0000-0000-000000000388']
DEBUG:   26.9 auto_backup_device_database - device_information= ('Kobo Libra 2', '', '', '', {'main': {'device_store_uuid': '6f8e340f-16ff-4c96-a2bd-32c0718c8048', 'device_name': 'Kobo Libra 2', 'location_code': 'main', 'last_library_uuid': '13d85d65-1491-412c-8fde-3a886fa79389', 'calibre_version': '7.26.101', 'date_last_connected': '2025-02-28T15:43:10.502851+00:00', 'prefix': 'F:/'}})
DEBUG:   26.9 auto_backup_device_database - device_name= KoboLibra2
DEBUG:   26.9 auto_backup_device_database - backup_file_template= KoboReader-KoboLibra2-N4181A0100162-
DEBUG:   26.9 auto_backup_device_database - backup_options= {'backupDestDirectory': 'C:/Download/Kobo/Backup', 'backupCopiesToKeepSpin': 7, 'doDailyBackp': True, 'backupEachCOnnection': False, 'backupZipDatabase': True, 'device_name': 'KoboLibra2', 'serial_number': 'N4181A0100162', 'backup_file_template': 'KoboReader-{0}-{1}-{2}', 'database_file': 'F:\\.kobo\\KoboReader.sqlite', 'device_path': 'F:\\'}
DEBUG:   26.9 KoboUtilitiesAction::_device_database_backup
DEBUG:   27.0 auto_backup_device_database - end
DEBUG:   27.0 KoboUtilites:_on_device_metadata_available - About to start auto store
DEBUG:   27.0 auto_store_current_bookmark - start
DEBUG:   27.0 Have a Kobo device connected connected
DEBUG:   27.0 BEGIN Get Device Path
DEBUG:   27.0 Root path of device: F:\
DEBUG:   27.0 END Get Device Path
DEBUG:   27.0 KoboUtilities:get_device - self.device_path="F:\"
DEBUG:   27.0 KoboUtilities:get_device - drive_info: {'main': {'device_store_uuid': '6f8e340f-16ff-4c96-a2bd-32c0718c8048', 'device_name': 'Kobo Libra 2', 'location_code': 'main', 'last_library_uuid': '13d85d65-1491-412c-8fde-3a886fa79389', 'calibre_version': '7.26.101', 'date_last_connected': '2025-02-28T15:43:06.119454+00:00', 'prefix': 'F:/'}}
DEBUG:   27.0 migrate_library_config_if_required - start
DEBUG:   27.0 get_library_config - library_config: {'SchemaVersion': 0.1, 'currentReadingLocationColumn': '', 'lastReadColumn': '', 'precentReadColumn': '', 'profiles': {'Jon Libra 2': {'customColumnOptions': {'currentReadingLocationColumn': '#current', 'lastReadColumn': '#last', 'percentReadColumn': '#percent', 'ratingColumn': ''}, 'forDevice': '6f8e340f-16ff-4c96-a2bd-32c0718c8048', 'profileName': 'Jon Libra 2', 'storeOptionsStore': {'storeOnConnect': True, 'promptToStore': True, 'storeIfMoreRecent': True, 'doNotStoreIfReopened': True}, 'updateOptionsStore': {'doEarlyFirmwareUpdate': False, 'doFirmwareUpdateCheck': False, 'firmwareUpdateCheckLastTime': 0}}}, 'ratingColumn': '', 'readingPositionChangesStore': {'selectBooksInLibrary': True, 'updeateGoodreadsProgress': False}}
DEBUG:   27.0 get_prefs - start - store_name='storeOptionsStore'
DEBUG:   27.0 KoboUtilities:get_device - device_name: Kobo Libra 2
DEBUG:   27.0 get_plugin_pref - start - store_name='commonOptionsStore', option='individualDeviceOptions'
DEBUG:   27.0 get_prefs - start - store_name='backupOptionsStore'
DEBUG:   27.0 BEGIN Get Device Path
DEBUG:   27.0 Root path of device: F:\
DEBUG:   27.0 END Get Device Path
DEBUG:   27.0 get_column_names - columns_config: {'currentReadingLocationColumn': '#current', 'lastReadColumn': '#last', 'percentReadColumn': '#percent', 'ratingColumn': ''}
DEBUG:   27.0 KoboUtilities::_get_fetch_query_for_firmware_version - using fetch_queries: {'epub': 'SELECT c1.ChapterIDBookmarked, c1.adobe_location, c1.ReadStatus, c1.___PercentRead, c1.Attribution, c1.DateLastRead, c1.Title, c1.MimeType, r.rating, c1.contentId, c1.TimeSpentReading, c1.RestOfBookEstimate FROM content c1 LEFT OUTER JOIN ratings r ON c1.ContentID = r.ContentID WHERE c1.ContentID = ?', 'kepub': 'SELECT c1.ChapterIDBookmarked, c1.adobe_location, c1.ReadStatus, c1.___PercentRead, c1.Attribution, c1.DateLastRead, c1.Title, c1.MimeType, r.rating, c1.contentId, c1.TimeSpentReading, c1.RestOfBookEstimate FROM content c1 LEFT OUTER JOIN ratings r ON c1.ContentID = r.ContentID WHERE c1.ContentID = ?'}
DEBUG:   27.1 auto_store_current_bookmark::do_books - search_condition= ondevice:True and (#percent:false or #percent:<100)
DEBUG:   27.1 auto_store_current_bookmark::do_all_books -- onDeviceIds: 553
DEBUG:   27.1 auto_store_current_bookmark::do_all_books -- onDevice_book_paths: 553
Job: 2 Get list of books on device finished
No details available.
DEBUG:   28.3 KoboUtilitiesAction::_store_queue_job
DEBUG:   28.3 auto_store_current_bookmark::do_books - Finish
DEBUG:   28.3 Have a Kobo device connected connected
DEBUG:   28.3 BEGIN Get Device Path
DEBUG:   28.3 Root path of device: F:\
DEBUG:   28.3 END Get Device Path
DEBUG:   28.3 KoboUtilities:get_device - self.device_path="F:\"
DEBUG:   28.3 KoboUtilities:get_device - drive_info: {'main': {'device_store_uuid': '6f8e340f-16ff-4c96-a2bd-32c0718c8048', 'device_name': 'Kobo Libra 2', 'location_code': 'main', 'last_library_uuid': '13d85d65-1491-412c-8fde-3a886fa79389', 'calibre_version': '7.26.101', 'date_last_connected': '2025-02-28T15:43:06.119454+00:00', 'prefix': 'F:/'}}
DEBUG:   28.3 migrate_library_config_if_required - start
DEBUG:   28.3 get_library_config - library_config: {'SchemaVersion': 0.1, 'currentReadingLocationColumn': '', 'lastReadColumn': '', 'precentReadColumn': '', 'profiles': {'Jon Libra 2': {'customColumnOptions': {'currentReadingLocationColumn': '#current', 'lastReadColumn': '#last', 'percentReadColumn': '#percent', 'ratingColumn': ''}, 'forDevice': '6f8e340f-16ff-4c96-a2bd-32c0718c8048', 'profileName': 'Jon Libra 2', 'storeOptionsStore': {'storeOnConnect': True, 'promptToStore': True, 'storeIfMoreRecent': True, 'doNotStoreIfReopened': True}, 'updateOptionsStore': {'doEarlyFirmwareUpdate': False, 'doFirmwareUpdateCheck': False, 'firmwareUpdateCheckLastTime': 0}}}, 'ratingColumn': '', 'readingPositionChangesStore': {'selectBooksInLibrary': True, 'updeateGoodreadsProgress': False}}
DEBUG:   28.3 get_prefs - start - store_name='storeOptionsStore'
DEBUG:   28.3 KoboUtilities:get_device - device_name: Kobo Libra 2
DEBUG:   28.3 get_plugin_pref - start - store_name='commonOptionsStore', option='individualDeviceOptions'
DEBUG:   28.3 get_prefs - start - store_name='backupOptionsStore'
DEBUG:   28.3 rebuild_menus - self.supports_ratings=True, self.supports_tiles=True
DEBUG:   28.3 KoboUtilities:set_toolbar_button_tooltip - start: text='None'
DEBUG:   28.3 KoboUtilities:set_toolbar_button_tooltip - device connected. self.device.fwversion= (4, 38, 23171)
DEBUG:   28.3 KoboUtilities:set_toolbar_button_tooltip - setting to text='Utilities to use with Kobo ereaders

Connected Device: Kobo Libra 2
Firmware version: 4.38.23171
Driver: KoboTouch'
DEBUG:   28.3 rebuild_menus - have device.
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
READING LIST: Metadata available: {'main': {'device_store_uuid': '6f8e340f-16ff-4c96-a2bd-32c0718c8048', 'device_name': 'Kobo Libra 2', 'location_code': 'main', 'last_library_uuid': '13d85d65-1491-412c-8fde-3a886fa79389', 'calibre_version': '7.26.101', 'date_last_connected': '2025-02-28T15:43:06.119454+00:00', 'prefix': 'F:/'}}
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
READING LIST: Sync Now - force_sync= False
READING LIST: Device found to sync to: Kobo Libra 2 6f8e340f-16ff-4c96-a2bd-32c0718c8048
READING LIST: No books on 'Default' list need to be synced
READING LIST: Updating automatic device list(s)  ['Libra 2']
READING LIST: Auto-populating device list:  Libra 2
READING LIST: Removing 1 ids from automatic list: Libra 2
READING LIST: Adding 0 ids to automatic list: Libra 2
DeviceJob: 2 Get list of books on device callback returned
Job: 3 Send metadata to device started
DEBUG:   30.0 KOBO:sync_booklists - start
DEBUG:   30.0 KoboTouch:update_device_database_collections - oncard='main'
DEBUG:   30.0 KoboTouch:update_device_database_collections - device='Driver:KoboTouch, Options - format_map: ['epub', 'kepub', 'pdf', 'txt', 'cbz', 'cbr'], use_subdirs: True, read_metadata: True, use_author_sort: False, save_template: books/{author} - {series} {series_index:0>2s|| - } {title}, extra_customization: [], manage_collections: True, use_collections_columns: True, collections_columns: tags, use_collections_template: False, collections_template: , create_collections: True, delete_empty_collections: True, ignore_collections_names: , upload_covers: True, dithered_covers: True, keep_cover_aspect: True, upload_grayscale: True, letterbox_fs_covers: False, letterbox_fs_covers_color: #000000, png_covers: False, show_archived_books: False, show_previews: False, show_recommendations: False, update_series: True, force_series_id: False, update_core_metadata: True, update_purchased_kepubs: False, update_device_metadata: True, update_subtitle: False, subtitle_template: , update_bookstats: True, bookstats_wordcount_template: program:floor($$#words), bookstats_pagecount_template: program:floor($$#pages), bookstats_timetoread_upper_template: program:ceiling($$#words / 11150), bookstats_timetoread_lower_template: program:floor($$#words / 12000), kepubify: True, template_for_kepubify: program: 
	$#kepub == 'yes', modify_css: False, per_device_css: {}, override_kobo_replace_existing: False, affect_hyphenation: True, disable_hyphenation: False, hyphenation_min_chars: 6, hyphenation_min_chars_before: 3, hyphenation_min_chars_after: 3, hyphenation_limit_lines: 2, support_newer_firmware: True, debugging_title: , driver_version: 2.6.0'
DEBUG:   30.0 KoboTouch::is_supported_fwversion - self.fwversion[:2] (4, 38)
DEBUG:   30.0 KoboTouch:update_device_database_collections - set_debugging_title to ''
DEBUG:   30.0 device_version_info - start
DEBUG:   30.0 KTCollectionsBookList:get_collections - start - collection_attributes= ['tags']
DEBUG:   30.0 KTCollectionsBookList:get_collections - collection_attributes= ['tags']
DEBUG:   30.0 KTCollectionsBookList:get_collections - end
Job: 2 Get list of books on device finished
No details available.
DEBUG:   30.0 KoboTouch:update_device_database_collections - category='Star Trek' books=16
DEBUG:   30.0 KoboTouch:update_device_database_collections - end for category='Star Trek'
DEBUG:   30.0 KoboTouch:update_device_database_collections - category='Standalone' books=20
DEBUG:   30.0 KoboTouch:update_device_database_collections - end for category='Standalone'
DEBUG:   30.0 KoboTouch:update_device_database_collections - managing bookshelves and series.
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
DEBUG:   30.8 KoboTouch:update_device_database_collections - about to clear empty bookshelves
DEBUG:   30.8 KoboTouch:delete_empty_bookshelves - start
DEBUG:   30.8 KoboTouch:delete_empty_bookshelves - delete_query= DELETE FROM Shelf WHERE Shelf._IsSynced = 'false' AND Shelf.InternalName not in ('Shortlist', 'Wishlist') AND (Type IS NULL OR Type <> 'SystemTag') AND NOT EXISTS (SELECT 1 FROM ShelfContent c WHERE Shelf.Name = c.ShelfName AND c._IsDeleted <> 'true')
DEBUG:   30.8 KoboTouch:delete_empty_bookshelves - update_query= UPDATE Shelf SET _IsDeleted = 'true' WHERE Shelf._IsSynced = 'true' AND Shelf.InternalName not in ('Shortlist', 'Wishlist') AND (Type IS NULL OR Type <> 'SystemTag') AND NOT EXISTS (SELECT 1 FROM ShelfContent c WHERE Shelf.Name = c.ShelfName AND c._IsDeleted <> 'true')
DEBUG:   30.8 KoboTouch:delete_empty_bookshelves - delete_activity_query= DELETE FROM Activity WHERE Type = 'Shelf' AND NOT EXISTS (SELECT 1 FROM Shelf WHERE Shelf.Name = Activity.Id AND Shelf._IsDeleted = 'false')
DEBUG:   30.9 KoboTouch:delete_empty_bookshelves - end
DEBUG:   30.9 KoboTouch:update_device_database_collections - Number of series set=0 Number of books=558
DEBUG:   30.9 KoboTouch:update_device_database_collections - Number of core metadata set=558 Number of books=558
DEBUG:   30.9 KoboTouch:update_device_database_collections - Finished 
DEBUG:   30.9 USBMS: starting sync_booklists
DEBUG:   32.2 USBMS: finished sync_booklists
DEBUG:   32.2 KOBO:sync_booklists - end
DeviceJob: 3 Send metadata to device done, calling callback
DeviceJob: 3 Send metadata to device callback returned
Job: 4 Backing up Kobo device database started
DEBUG:    0.0 do_device_database_backup - start
logger - do_device_database_backup - start
DEBUG:    0.0 do_device_database_backup - backup_options= {'backupDestDirectory': 'C:/Download/Kobo/Backup', 'backupCopiesToKeepSpin': 7, 'doDailyBackp': True, 'backupEachCOnnection': False, 'backupZipDatabase': True, 'device_name': 'KoboLibra2', 'serial_number': 'N4181A0100162', 'backup_file_template': 'KoboReader-{0}-{1}-{2}', 'database_file': 'F:\\.kobo\\KoboReader.sqlite', 'device_path': 'F:\\'}
DEBUG:    0.0 do_device_database_backup - copies_to_keep= 7
DEBUG:    0.0 do_device_database_backup - backup_file_search= KoboReader-KoboLibra2-N4181A0100162-20250228-[0-9][0-9][0-9][0-9][0-9][0-9].*
DEBUG:    0.0 do_device_database_backup - backup_file_search= C:/Download/Kobo/Backup\KoboReader-KoboLibra2-N4181A0100162-20250228-[0-9][0-9][0-9][0-9][0-9][0-9].*
DEBUG:    0.0 do_device_database_backup - backup_files= ['C:/Download/Kobo/Backup\\KoboReader-KoboLibra2-N4181A0100162-20250228-114253.zip']
DEBUG:    0.0 auto_backup_device_database - Backup already done today
DeviceJob: 4 Backing up Kobo device database done, calling callback
DeviceJob: 4 Backing up Kobo device database callback returned
Job: 5 Storing reading positions for 553 books started
DEBUG:    0.0 do_store_locations - start
DEBUG:    0.0 do_store_locations - options={'storeBookmarks': True, 'readingStatus': False, 'setDateToNow': False, 'rating': False, 'clearIfUnread': False, 'backgroundJob': True, 'promptToStore': True, 'storeIfMoreRecent': True, 'doNotStoreIfReopened': True, 'currentReadingLocationColumn': '#current', 'percentReadColumn': '#percent', 'ratingColumn': None, 'lastReadColumn': '#last', 'timeSpentReadingColumn': None, 'restOfBookEstimateColumn': None, 'device_database_path': 'F:\\.kobo\\KoboReader.sqlite', 'job_function': 'store_current_bookmark', 'supports_ratings': True, 'epub_location_like_kepub': True, 'fetch_queries': {'epub': 'SELECT c1.ChapterIDBookmarked, c1.adobe_location, c1.ReadStatus, c1.___PercentRead, c1.Attribution, c1.DateLastRead, c1.Title, c1.MimeType, r.rating, c1.contentId, c1.TimeSpentReading, c1.RestOfBookEstimate FROM content c1 LEFT OUTER JOIN ratings r ON c1.ContentID = r.ContentID WHERE c1.ContentID = ?', 'kepub': 'SELECT c1.ChapterIDBookmarked, c1.adobe_location, c1.ReadStatus, c1.___PercentRead, c1.Attribution, c1.DateLastRead, c1.Title, c1.MimeType, r.rating, c1.contentId, c1.TimeSpentReading, c1.RestOfBookEstimate FROM content c1 LEFT OUTER JOIN ratings r ON c1.ContentID = r.ContentID WHERE c1.ContentID = ?'}, 'allOnDevice': True}
DEBUG:    0.0 do_store_locations - len(books_to_scan)=553
Worker Launch took: 0.00 seconds
DEBUG:    0.1 do_store_locations - Job not finished
Job: 3 Send metadata to device finished
No details available.
Job: 4 Backing up Kobo device database finished
No details available.
Job: 6 Store locations finished
Store locations

	DEBUG:    0.0 _store_bookmarks - start

	DEBUG:    0.0 DEBUG= False

	DEBUG:    0.0 _store_bookmarks - about to start book loop

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Horrorstor - Grady Hendrix

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Grady Hendrix - Horrorstor.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Grady Hendrix - Horrorstor.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Grady Hendrix', 'DateLastRead': None, 'Title': 'Horrorstor', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grady Hendrix - Horrorstor.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Grady Hendrix', 'DateLastRead': None, 'Title': 'Horrorstor', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grady Hendrix - Horrorstor.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Hyperion Cantos 03 - Endymion - Dan Simmons

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 03 - Hyperion Cantos 03 - Endymion.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 03 - Hyperion Cantos 03 - Endymion.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 03 - Endymion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 03 - Hyperion Cantos 03 - Endymion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 03 - Endymion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 03 - Hyperion Cantos 03 - Endymion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Jack Reacher 07 - Persuader - Lee Child

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 07 - Jack Reacher 07 - Persuader.epub', 'file:///mnt/onboard/books/Lee Child - Persuader 07 - Jack Reacher 07 - Persuader.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 07 - Jack Reacher 07 - Persuader.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 07 - Persuader', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 07 - Jack Reacher 07 - Persuader.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Persuader 07 - Jack Reacher 07 - Persuader.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 07 - Persuader', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 07 - Jack Reacher 07 - Persuader.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 07 - Persuader', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Persuader 07 - Jack Reacher 07 - Persuader.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 07 - Persuader', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 07 - Jack Reacher 07 - Persuader.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Heritage of Shannara 01 - The Druid of Shannara - Terry Brooks

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Terry Brooks - Heritage of Shannara 1.0 - Heritage of Shannara 01 - The Druid of Shannara.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Terry Brooks - Heritage of Shannara 1.0 - Heritage of Shannara 01 - The Druid of Shannara.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Brooks', 'DateLastRead': None, 'Title': 'Heritage of Shannara 01 - The Druid of Shannara', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Brooks - Heritage of Shannara 1.0 - Heritage of Shannara 01 - The Druid of Shannara.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Brooks', 'DateLastRead': None, 'Title': 'Heritage of Shannara 01 - The Druid of Shannara', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Brooks - Heritage of Shannara 1.0 - Heritage of Shannara 01 - The Druid of Shannara.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Jack Reacher 16 - The Affair - Lee Child

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 16 - Jack Reacher 16 - The Affair.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 16 - Jack Reacher 16 - The Affair.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 16 - The Affair', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 16 - Jack Reacher 16 - The Affair.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 16 - The Affair', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 16 - Jack Reacher 16 - The Affair.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: His Dak Materials 0.6 - The Collectors - Philip Pullman

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Philip Pullman - His Dark Materials 0.6 - His Dak Materials 0.6 - The Collectors.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Philip Pullman - His Dark Materials 0.6 - His Dak Materials 0.6 - The Collectors.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/PULL_9781101940044_epub3_cvi_r1.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'Philip Pullman', 'DateLastRead': '2022-12-14T00:14:24Z', 'Title': 'His Dak Materials 0.6 - The Collectors', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Philip Pullman - His Dark Materials 0.6 - His Dak Materials 0.6 - The Collectors.epub', 'TimeSpentReading': 64, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-12-14 00:14:24+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Leviathan 02 - Behemoth - Westerfeld, Scott

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Leviathan 02 - Behemoth # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Leviathan 02 - Behemoth # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Westerfeld, Scott', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Leviathan 02 - Behemoth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Leviathan 02 - Behemoth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Westerfeld, Scott', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Leviathan 02 - Behemoth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Leviathan 02 - Behemoth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Dresden Files 12 - Changes - Jim Butcher

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jim Butcher - Dresden Files 12.0 - Dresden Files 12 - Changes.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Jim Butcher - Dresden Files 12.0 - Dresden Files 12 - Changes.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jim Butcher', 'DateLastRead': None, 'Title': 'Dresden Files 12 - Changes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jim Butcher - Dresden Files 12.0 - Dresden Files 12 - Changes.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Alex Verus 01 - Fated - Benedict Jacka

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Verus 01 - Fated # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Verus 01 - Fated # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/07_chapter001.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Benedict Jacka', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Alex Verus 01 - Fated', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Verus 01 - Fated # (v5.1).epub', 'TimeSpentReading': 6036, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: His Dark Materials 02 - The Subtle Knife - Philip Pullman

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Philip Pullman - His Dark Materials 2.0 - His Dark Materials 02 - The Subtle Knife.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Philip Pullman - His Dark Materials 2.0 - His Dark Materials 02 - The Subtle Knife.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip Pullman', 'DateLastRead': None, 'Title': 'His Dark Materials 02 - The Subtle Knife', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Philip Pullman - His Dark Materials 2.0 - His Dark Materials 02 - The Subtle Knife.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip Pullman', 'DateLastRead': None, 'Title': 'His Dark Materials 02 - The Subtle Knife', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Philip Pullman - His Dark Materials 2.0 - His Dark Materials 02 - The Subtle Knife.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Agent Pendergast 02 - Reliquary - Douglas Preston & Lincoln Child

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Agent Pendergast 02 - Reliquary # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Agent Pendergast 02 - Reliquary # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Douglas Preston & Lincoln Child', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Agent Pendergast 02 - Reliquary', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Agent Pendergast 02 - Reliquary # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Douglas Preston & Lincoln Child', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Agent Pendergast 02 - Reliquary', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Agent Pendergast 02 - Reliquary # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Shaggy Dog Bridge - Glen Cook

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Shaggy Dog Bridge # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Shaggy Dog Bridge # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Glen Cook', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Shaggy Dog Bridge', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Shaggy Dog Bridge # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Glen Cook', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Shaggy Dog Bridge', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Shaggy Dog Bridge # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The romance of King Arthur and his knights of the Round Table - Sir Thomas Malory

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sir Thomas Malory - The romance of King Arthur and his knights of the Round Table.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Sir Thomas Malory - The romance of King Arthur and his knights of the Round Table.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sir Thomas Malory', 'DateLastRead': None, 'Title': 'The romance of King Arthur and his knights of the Round Table', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sir Thomas Malory - The romance of King Arthur and his knights of the Round Table.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sir Thomas Malory', 'DateLastRead': None, 'Title': 'The romance of King Arthur and his knights of the Round Table', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sir Thomas Malory - The romance of King Arthur and his knights of the Round Table.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Second Sleep - Robert Harris

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Second Sleep # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Second Sleep # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Harris', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Second Sleep', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Second Sleep # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Harris', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Second Sleep', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Second Sleep # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Fatherland - Robert Harris

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Fatherland # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Fatherland # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter001.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 4, 'Attribution': 'Robert Harris', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Fatherland', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Fatherland # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Eve Duncan 02 - The Killing Game - Iris Johansen

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Eve Duncan 02 - The Killing Game # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Eve Duncan 02 - The Killing Game # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Iris Johansen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Eve Duncan 02 - The Killing Game', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Eve Duncan 02 - The Killing Game # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Iris Johansen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Eve Duncan 02 - The Killing Game', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Eve Duncan 02 - The Killing Game # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Warmth of Other Suns - Isabel Wilkerson

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Warmth of Other Suns # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Warmth of Other Suns # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Isabel Wilkerson', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The Warmth of Other Suns', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Warmth of Other Suns # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Isabel Wilkerson', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The Warmth of Other Suns', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Warmth of Other Suns # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Mike - P. G. Wodehouse

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mike.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Mike.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter01.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'P. G. Wodehouse', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Mike', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mike.epub', 'TimeSpentReading': 285, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Dovekeepers - Alice Hoffman

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Dovekeepers # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Dovekeepers # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice Hoffman', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Dovekeepers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dovekeepers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice Hoffman', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Dovekeepers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dovekeepers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Eve Duncan 03 - The Search - Iris Johansen

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Eve Duncan 03 - The Search # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Eve Duncan 03 - The Search # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Iris Johansen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Eve Duncan 03 - The Search', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Eve Duncan 03 - The Search # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Iris Johansen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Eve Duncan 03 - The Search', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Eve Duncan 03 - The Search # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Hyperion Cantos 04 - The Rise of Endymion - Dan Simmons

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 04 - Hyperion Cantos 04 - The Rise of Endymion.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 04 - Hyperion Cantos 04 - The Rise of Endymion.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 04 - The Rise of Endymion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 04 - Hyperion Cantos 04 - The Rise of Endymion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Becoming - Michelle Obama

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Becoming # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Becoming # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michelle Obama', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Becoming', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Becoming # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michelle Obama', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Becoming', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Becoming # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Five Hundred Kingdoms 02 - One Good Knight - Mercedes Lackey

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Five Hundred Kingdoms 02 - One Good Knight # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Five Hundred Kingdoms 02 - One Good Knight # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Five Hundred Kingdoms 02 - One Good Knight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Five Hundred Kingdoms 02 - One Good Knight # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Five Hundred Kingdoms 02 - One Good Knight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Five Hundred Kingdoms 02 - One Good Knight # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Camino Island 01 - Camino Island - John Grisham

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Camino Island 01 - Camino Island # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Camino Island 01 - Camino Island # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Camino Island 01 - Camino Island', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Camino Island 01 - Camino Island # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Camino Island 01 - Camino Island', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Camino Island 01 - Camino Island # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: A Prisoner of Birth - Jeffrey Archer

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Prisoner of Birth # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/A Prisoner of Birth # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Prisoner of Birth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Prisoner of Birth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Prisoner of Birth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Prisoner of Birth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Shout at the Devil - Wilbur Smith

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Shout at the Devil # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Shout at the Devil # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Shout at the Devil', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Shout at the Devil # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Shout at the Devil', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Shout at the Devil # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Dark of the Sun - Wilbur Smith

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Dark of the Sun # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Dark of the Sun # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Dark of the Sun', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dark of the Sun # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Dark of the Sun', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dark of the Sun # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Diamond Hunters - Wilbur Smith

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Diamond Hunters # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Diamond Hunters # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Diamond Hunters', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Diamond Hunters # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Diamond Hunters', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Diamond Hunters # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Drenai Saga 02 - The King Beyond the Gate - David Gemmell

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Drenai Saga 02 - The King Beyond the Gate # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Drenai Saga 02 - The King Beyond the Gate # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Gemmell', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Drenai Saga 02 - The King Beyond the Gate', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Drenai Saga 02 - The King Beyond the Gate # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Gemmell', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Drenai Saga 02 - The King Beyond the Gate', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Drenai Saga 02 - The King Beyond the Gate # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Sunbird - Wilbur Smith

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Sunbird # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Sunbird # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Sunbird', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Sunbird # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Sunbird', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Sunbird # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Cry Wolf - Wilbur Smith

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cry Wolf # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Cry Wolf # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cry Wolf', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cry Wolf # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cry Wolf', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cry Wolf # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Hollows 04 - A Fistful of Charms - Kim Harrison

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Hollows 04 - A Fistful of Charms # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Hollows 04 - A Fistful of Charms # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kim Harrison', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The Hollows 04 - A Fistful of Charms', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Hollows 04 - A Fistful of Charms # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kim Harrison', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The Hollows 04 - A Fistful of Charms', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Hollows 04 - A Fistful of Charms # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Discworld 29 - Night Watch - Terry Pratchett

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Terry Pratchett - Discworld 29 - Discworld 29 - Night Watch.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Terry Pratchett - Discworld 29 - Discworld 29 - Night Watch.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/begin.xhtml#point(/1/4/2464/1/1:22)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 26, 'Attribution': 'Terry Pratchett', 'DateLastRead': '2025-02-23T18:23:57Z', 'Title': 'Discworld 29 - Night Watch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Pratchett - Discworld 29 - Discworld 29 - Night Watch.epub', 'TimeSpentReading': 1562, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2025-02-23 18:23:57+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Lucas Davenport 04 - Silent Prey - John Sandford

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lucas Davenport 04 - Silent Prey # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Lucas Davenport 04 - Silent Prey # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Sandford', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Lucas Davenport 04 - Silent Prey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lucas Davenport 04 - Silent Prey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Sandford', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Lucas Davenport 04 - Silent Prey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lucas Davenport 04 - Silent Prey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Discworld 39 - Snuff - Terry Pratchett

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Terry Pratchett - Discworld 39.0 - Discworld 39 - Snuff.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Terry Pratchett - Discworld 39.0 - Discworld 39 - Snuff.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Pratchett', 'DateLastRead': None, 'Title': 'Discworld 39 - Snuff', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Pratchett - Discworld 39.0 - Discworld 39 - Snuff.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Pratchett', 'DateLastRead': None, 'Title': 'Discworld 39 - Snuff', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Pratchett - Discworld 39.0 - Discworld 39 - Snuff.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Roy Grace 01 - Dead Simple - Peter James

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Roy Grace 01 - Dead Simple.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Roy Grace 01 - Dead Simple.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter James', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Roy Grace 01 - Dead Simple', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Roy Grace 01 - Dead Simple.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter James', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Roy Grace 01 - Dead Simple', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Roy Grace 01 - Dead Simple.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: New York - Edward Rutherfurd

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/New York # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/New York # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'New York', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/New York # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'New York', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/New York # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: London - Edward Rutherfurd

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/London # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/London # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'London', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/London # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'London', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/London # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Forest - Edward Rutherfurd

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Forest # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Forest # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Forest', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Forest # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Forest', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Forest # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Sarum - Edward Rutherfurd

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sarum # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Sarum # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Sarum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarum # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Sarum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarum # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Century 01 - Fall of Giants - Ken Follett

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Century 01 - Fall of Giants # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Century 01 - Fall of Giants # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2024-12-15T23:43:04.109', 'Title': 'Century 01 - Fall of Giants', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 01 - Fall of Giants # (v5.1).epub', 'TimeSpentReading': 44, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2024-12-15 23:43:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2024-12-15T23:43:04.109', 'Title': 'Century 01 - Fall of Giants', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 01 - Fall of Giants # (v5.1).epub', 'TimeSpentReading': 44, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Bruno, Chief of Police 01 - Bruno, Chief of Police - Martin Walker

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bruno, Chief of Police 01 - Bruno, Chief of Police.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Bruno, Chief of Police 01 - Bruno, Chief of Police.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Walk_9780307271464_epub_c01_r1.htm#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Martin Walker', 'DateLastRead': '2022-12-01T23:02:22Z', 'Title': 'Bruno, Chief of Police 01 - Bruno, Chief of Police', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bruno, Chief of Police 01 - Bruno, Chief of Police.epub', 'TimeSpentReading': 33, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-12-01 23:02:22+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Isaac Bell 01 - The Chase - Clive Cussler

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Isaac Bell 01 - The Chase # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Isaac Bell 01 - The Chase # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Isaac Bell 01 - The Chase', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Isaac Bell 01 - The Chase # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Isaac Bell 01 - The Chase', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Isaac Bell 01 - The Chase # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Sunshine Sketches of a Little Town - Stephen Leacock

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stephen Leacock - Sunshine Sketches of a Little Town.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Stephen Leacock - Sunshine Sketches of a Little Town.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen Leacock', 'DateLastRead': None, 'Title': 'Sunshine Sketches of a Little Town', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen Leacock - Sunshine Sketches of a Little Town.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen Leacock', 'DateLastRead': None, 'Title': 'Sunshine Sketches of a Little Town', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen Leacock - Sunshine Sketches of a Little Town.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Dresden Files SSC02 - Brief Cases - Jim Butcher

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dresden Files SSC02 - Brief Cases # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Dresden Files SSC02 - Brief Cases # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/18_BOMBSHELLS.xhtml#point(/1/4/2/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 50, 'Attribution': 'Jim Butcher', 'DateLastRead': '2023-11-26T20:12:02Z', 'Title': 'Dresden Files SSC02 - Brief Cases', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dresden Files SSC02 - Brief Cases # (v5.1).epub', 'TimeSpentReading': 14008, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2023-11-26 20:12:02+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Dresden Files 13 - Ghost Story - Jim Butcher

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dresden Files 13 - Ghost Story # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Dresden Files 13 - Ghost Story # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jim Butcher', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Dresden Files 13 - Ghost Story', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dresden Files 13 - Ghost Story # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jim Butcher', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Dresden Files 13 - Ghost Story', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dresden Files 13 - Ghost Story # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Devil in the White City - Erik Larson

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Devil in the White City # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Devil in the White City # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Lars_9781400076314_epub_fm4_r1.htm#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'Erik Larson', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The Devil in the White City', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Devil in the White City # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The South Lawn Plot - Ray O'Hanlon

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The South Lawn Plot # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The South Lawn Plot # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': "Ray O'Hanlon", 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The South Lawn Plot', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The South Lawn Plot # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': "Ray O'Hanlon", 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The South Lawn Plot', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The South Lawn Plot # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: A Walk in the Woods - Bill Bryson

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Walk in the Woods # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/A Walk in the Woods # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bill Bryson', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Walk in the Woods', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Walk in the Woods # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bill Bryson', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Walk in the Woods', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Walk in the Woods # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Teixcalaan 01 - A Memory Called Empire - Arkady Martine

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Teixcalaan 01 - A Memory Called Empire # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Teixcalaan 01 - A Memory Called Empire # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/interlude1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Arkady Martine', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Teixcalaan 01 - A Memory Called Empire', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Teixcalaan 01 - A Memory Called Empire # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Body Farm 01 - Carved in Bone - Jefferson Bass

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Body Farm 01 - Carved in Bone # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Body Farm 01 - Carved in Bone # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jefferson Bass', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Body Farm 01 - Carved in Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Body Farm 01 - Carved in Bone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jefferson Bass', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Body Farm 01 - Carved in Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Body Farm 01 - Carved in Bone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Place Called Freedom - Ken Follett

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Place Called Freedom # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Place Called Freedom # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Place Called Freedom', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Place Called Freedom # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Place Called Freedom', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Place Called Freedom # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Country of Ice Cream Star - Sandra Newman

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Country of Ice Cream Star # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Country of Ice Cream Star # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sandra Newman', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Country of Ice Cream Star', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Country of Ice Cream Star # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sandra Newman', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Country of Ice Cream Star', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Country of Ice Cream Star # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Adversary Cycle 04 - Reborn - F. Paul Wilson

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Adversary Cycle 04 - Reborn # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Adversary Cycle 04 - Reborn # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'F. Paul Wilson', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Adversary Cycle 04 - Reborn', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Adversary Cycle 04 - Reborn # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'F. Paul Wilson', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Adversary Cycle 04 - Reborn', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Adversary Cycle 04 - Reborn # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Matt Helm 01 - Death of a Citizen - Donald Hamilton

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Matt Helm 01 - Death of a Citizen # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Matt Helm 01 - Death of a Citizen # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donald Hamilton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Matt Helm 01 - Death of a Citizen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matt Helm 01 - Death of a Citizen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donald Hamilton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Matt Helm 01 - Death of a Citizen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matt Helm 01 - Death of a Citizen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Warlock 01 - The Warlock in Spite of Himself - Christopher Stasheff

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Warlock 01 - The Warlock in Spite of Himself # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Warlock 01 - The Warlock in Spite of Himself # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Stasheff', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Warlock 01 - The Warlock in Spite of Himself', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Warlock 01 - The Warlock in Spite of Himself # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Stasheff', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Warlock 01 - The Warlock in Spite of Himself', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Warlock 01 - The Warlock in Spite of Himself # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Cormoran Strike 04 - Lethal White - Robert Galbraith

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cormoran Strike 04 - Lethal White # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Cormoran Strike 04 - Lethal White # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cormoran Strike 04 - Lethal White', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cormoran Strike 04 - Lethal White # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cormoran Strike 04 - Lethal White', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cormoran Strike 04 - Lethal White # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 04 - Silent Voices - Ann Cleeves

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 04 - Silent Voices # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 04 - Silent Voices # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 04 - Silent Voices', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 04 - Silent Voices # (v5.1).epub', 'TimeSpentReading': 7, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 04 - Silent Voices', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 04 - Silent Voices # (v5.1).epub', 'TimeSpentReading': 7, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 03 - Hidden Depths - Ann Cleeves

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 03 - Hidden Depths # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 03 - Hidden Depths # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 03 - Hidden Depths', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 03 - Hidden Depths # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 03 - Hidden Depths', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 03 - Hidden Depths # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 05 - The Glass Room - Ann Cleeves

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 05 - The Glass Room # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 05 - The Glass Room # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 05 - The Glass Room', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 05 - The Glass Room # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 05 - The Glass Room', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 05 - The Glass Room # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 06 - Harbour Street - Ann Cleeves

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 06 - Harbour Street # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 06 - Harbour Street # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 06 - Harbour Street', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 06 - Harbour Street # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 06 - Harbour Street', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 06 - Harbour Street # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 07 - The Moth Catcher - Ann Cleeves

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 07 - The Moth Catcher # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 07 - The Moth Catcher # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 07 - The Moth Catcher', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 07 - The Moth Catcher # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 07 - The Moth Catcher', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 07 - The Moth Catcher # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 08 - The Seagull - Ann Cleeves

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 08 - The Seagull # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 08 - The Seagull # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 08 - The Seagull', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 08 - The Seagull # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 08 - The Seagull', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 08 - The Seagull # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 08.5 - Frozen - Ann Cleeves

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 08.5 - Frozen # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 08.5 - Frozen # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 08.5 - Frozen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 08.5 - Frozen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 08.5 - Frozen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 08.5 - Frozen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 09 - The Darkest Evening - Ann Cleeves

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 09 - The Darkest Evening # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 09 - The Darkest Evening # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 09 - The Darkest Evening', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 09 - The Darkest Evening # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 09 - The Darkest Evening', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 09 - The Darkest Evening # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Alex Benedict 01 - A Talent for War - Jack McDevitt

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Benedict 01 - A Talent for War # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Benedict 01 - A Talent for War # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack McDevitt', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Alex Benedict 01 - A Talent for War', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Benedict 01 - A Talent for War # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack McDevitt', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Alex Benedict 01 - A Talent for War', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Benedict 01 - A Talent for War # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Darwath 01 - The Time of the Dark - Barbara Hambly

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Darwath 01 - The Time of the Dark # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Darwath 01 - The Time of the Dark # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Barbara Hambly', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Darwath 01 - The Time of the Dark', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Darwath 01 - The Time of the Dark # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Barbara Hambly', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Darwath 01 - The Time of the Dark', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Darwath 01 - The Time of the Dark # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Existence - David Brin

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Existence # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Existence # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Brin', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Existence', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Existence # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Brin', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Existence', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Existence # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Legends of Shannara 01 - Bearers of the Black Staff - Terry Brooks

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Terry Brooks - Shannara 07 - Legends of Shannara 01 - Bearers of the Black Staff.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Terry Brooks - Shannara 07 - Legends of Shannara 01 - Bearers of the Black Staff.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Broo_9780345523006_epub_c01_r1.htm#point(/1/4/16/1:626)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Terry Brooks', 'DateLastRead': '2024-08-20T17:33:53Z', 'Title': 'Legends of Shannara 01 - Bearers of the Black Staff', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Brooks - Shannara 07 - Legends of Shannara 01 - Bearers of the Black Staff.epub', 'TimeSpentReading': 1353, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2024-08-20 17:33:53+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Kingsbridge 01 - The Evening and the Morning - Ken Follett

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kingsbridge 01 - The Evening and the Morning # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Kingsbridge 01 - The Evening and the Morning # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/14_Chapter_5_Late_July_9.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 13, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-09-21T18:23:31Z', 'Title': 'Kingsbridge 01 - The Evening and the Morning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kingsbridge 01 - The Evening and the Morning # (v5.1).epub', 'TimeSpentReading': 4050, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-09-21 18:23:31+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Perry Mason 02 - The Case of the Sulky Girl - Erle Stanley Gardner

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Perry Mason 02 - The Case of the Sulky Girl # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Perry Mason 02 - The Case of the Sulky Girl # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter01.xhtml#point(/1/3/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Erle Stanley Gardner', 'DateLastRead': '2023-10-12T20:22:18Z', 'Title': 'Perry Mason 02 - The Case of the Sulky Girl', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Perry Mason 02 - The Case of the Sulky Girl # (v5.1).epub', 'TimeSpentReading': 36, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2023-10-12 20:22:18+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Wheel of Time 00 - New Spring - Robert Jordan

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wheel of Time 00 - New Spring # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Wheel of Time 00 - New Spring # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wheel of Time 00 - New Spring', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wheel of Time 00 - New Spring # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wheel of Time 00 - New Spring', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wheel of Time 00 - New Spring # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Cormoran Strike 05 - Troubled Blood - Robert Galbraith

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cormoran Strike 05 - Troubled Blood # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Cormoran Strike 05 - Troubled Blood # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cormoran Strike 05 - Troubled Blood', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cormoran Strike 05 - Troubled Blood # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cormoran Strike 05 - Troubled Blood', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cormoran Strike 05 - Troubled Blood # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Nor Crystal Tears - Alan Dean Foster

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nor Crystal Tears.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Nor Crystal Tears.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter001.html#point(/1/4/2/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Alan Dean Foster', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Nor Crystal Tears', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nor Crystal Tears.epub', 'TimeSpentReading': 43, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Legends of Shannara 02 - The Measure of the Magic - Terry Brooks

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Terry Brooks - Shannara 08 - Legends of Shannara 02 - The Measure of the Magic.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Terry Brooks - Shannara 08 - Legends of Shannara 02 - The Measure of the Magic.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Brooks', 'DateLastRead': None, 'Title': 'Legends of Shannara 02 - The Measure of the Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Brooks - Shannara 08 - Legends of Shannara 02 - The Measure of the Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Brooks', 'DateLastRead': None, 'Title': 'Legends of Shannara 02 - The Measure of the Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Brooks - Shannara 08 - Legends of Shannara 02 - The Measure of the Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Wheel of Time 01 - The Eye of the World - Robert Jordan

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wheel of Time 01 - The Eye of the World # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Wheel of Time 01 - The Eye of the World # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wheel of Time 01 - The Eye of the World', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wheel of Time 01 - The Eye of the World # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wheel of Time 01 - The Eye of the World', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wheel of Time 01 - The Eye of the World # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: A Drop of Night - Stefan Bachmann

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Drop of Night # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/A Drop of Night # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stefan Bachmann', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Drop of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Drop of Night # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stefan Bachmann', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Drop of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Drop of Night # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Rise and Fall of D.O.D.O. - Neal Stephenson

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Rise and Fall of D.O.D.O. # (v5.0).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Rise and Fall of D.O.D.O. # (v5.0).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/Ch01-002.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Neal Stephenson', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Rise and Fall of D.O.D.O.', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Rise and Fall of D.O.D.O. # (v5.0).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Hercule Poirot 00 - Poirot's Early Cases - Agatha Christie

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Hercule Poirot 00 - Poirot_s Early Cases # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Hercule Poirot 00 - Poirot_s Early Cases # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter10.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 53, 'Attribution': 'Agatha Christie', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Hercule Poirot 00 - Poirot's Early Cases", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Hercule Poirot 00 - Poirot_s Early Cases # (v5.1).epub', 'TimeSpentReading': 734, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Miss Marple 00 - Miss Marple: The Complete Short Stories - Agatha Christie

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Miss Marple 00 - Miss Marple_ The Complete Short Stories.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Miss Marple 00 - Miss Marple_ The Complete Short Stories.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Agatha Christie', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Miss Marple 00 - Miss Marple: The Complete Short Stories', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Miss Marple 00 - Miss Marple_ The Complete Short Stories.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Agatha Christie', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Miss Marple 00 - Miss Marple: The Complete Short Stories', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Miss Marple 00 - Miss Marple_ The Complete Short Stories.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Star Trek: Voy - The Autobiography of Kathryn Janeway - Una McCormack

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ Voy - The Autobiography of Kathryn Janeway # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ Voy - The Autobiography of Kathryn Janeway # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Una McCormack', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: Voy - The Autobiography of Kathryn Janeway', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ Voy - The Autobiography of Kathryn Janeway # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Una McCormack', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: Voy - The Autobiography of Kathryn Janeway', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ Voy - The Autobiography of Kathryn Janeway # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Star Trek: Voy - To Lose the Earth - Kirsten Beyer

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kirsten Beyer - Star Trek_ Voy - To Lose the Earth.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Kirsten Beyer - Star Trek_ Voy - To Lose the Earth.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'e9781501138850/xhtml/ch11.xhtml#point(/1/4/294/1:81)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 53, 'Attribution': 'Kirsten Beyer', 'DateLastRead': '2025-02-28T11:43:21Z', 'Title': 'Star Trek: Voy - To Lose the Earth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kirsten Beyer - Star Trek_ Voy - To Lose the Earth.epub', 'TimeSpentReading': 22970, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2025-02-28 11:43:21+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Friday the Rabbi Slept Late - Harry Kemelman

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Harry Kemelman - Rabbi Small 01 - Friday the Rabbi Slept Late.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Harry Kemelman - Rabbi Small 01 - Friday the Rabbi Slept Late.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Harry Kemelman', 'DateLastRead': None, 'Title': 'Friday the Rabbi Slept Late', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Harry Kemelman - Rabbi Small 01 - Friday the Rabbi Slept Late.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Harry Kemelman', 'DateLastRead': None, 'Title': 'Friday the Rabbi Slept Late', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Harry Kemelman - Rabbi Small 01 - Friday the Rabbi Slept Late.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Perry Mason 03 - The Case of the Lucky Legs - Erle Stanley Gardner

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Perry Mason 03 - The Case of the Lucky Legs # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Perry Mason 03 - The Case of the Lucky Legs # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erle Stanley Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Perry Mason 03 - The Case of the Lucky Legs', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Perry Mason 03 - The Case of the Lucky Legs # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erle Stanley Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Perry Mason 03 - The Case of the Lucky Legs', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Perry Mason 03 - The Case of the Lucky Legs # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Song of Fire & Ice 02 - A Clash of Kings - George R.R. Martin

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Song of Fire & Ice 02 - A Clash of Kings # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Song of Fire & Ice 02 - A Clash of Kings # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Song of Fire & Ice 02 - A Clash of Kings', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 02 - A Clash of Kings # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Song of Fire & Ice 02 - A Clash of Kings', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 02 - A Clash of Kings # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Star Trek: TOS: A Contest of Principles - Greg Cox

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ TOS_ A Contest of Principles # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ TOS_ A Contest of Principles # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Greg Cox', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: TOS: A Contest of Principles', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TOS_ A Contest of Principles # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Greg Cox', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: TOS: A Contest of Principles', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TOS_ A Contest of Principles # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Snow Queen 01 - The Snow Queen - Joan D. Vinge

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Snow Queen 01 - The Snow Queen # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Snow Queen 01 - The Snow Queen # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joan D. Vinge', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Snow Queen 01 - The Snow Queen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Snow Queen 01 - The Snow Queen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joan D. Vinge', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Snow Queen 01 - The Snow Queen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Snow Queen 01 - The Snow Queen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: William Warwick 02 - Hidden in Plain Sight - Jeffrey Archer

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/William Warwick 02 - Hidden in Plain Sight # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/William Warwick 02 - Hidden in Plain Sight # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 02 - Hidden in Plain Sight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 02 - Hidden in Plain Sight # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 02 - Hidden in Plain Sight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 02 - Hidden in Plain Sight # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: McTeague - Frank Norris

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Frank Norris - McTeague.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Frank Norris - McTeague.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Frank Norris', 'DateLastRead': None, 'Title': 'McTeague', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Frank Norris - McTeague.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Frank Norris', 'DateLastRead': None, 'Title': 'McTeague', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Frank Norris - McTeague.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Star Trek - Picard 02 - The Dark Veil - James Swallow

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James Swallow - Star Trek Picard 02 - Star Trek - Picard 02 - The Dark Veil.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/James Swallow - Star Trek Picard 02 - Star Trek - Picard 02 - The Dark Veil.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Swallow', 'DateLastRead': None, 'Title': 'Star Trek - Picard 02 - The Dark Veil', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Swallow - Star Trek Picard 02 - Star Trek - Picard 02 - The Dark Veil.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Shanghaied - David Paul Collins

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David Paul Collins - Shanghaied.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/David Paul Collins - Shanghaied.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Paul Collins', 'DateLastRead': None, 'Title': 'Shanghaied', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Paul Collins - Shanghaied.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Paul Collins', 'DateLastRead': None, 'Title': 'Shanghaied', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Paul Collins - Shanghaied.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: All Souls 02 - Shadow of Night - Deborah Harkness

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/All Souls 02 - Shadow of Night # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/All Souls 02 - Shadow of Night # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Deborah Harkness', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'All Souls 02 - Shadow of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/All Souls 02 - Shadow of Night # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Deborah Harkness', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'All Souls 02 - Shadow of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/All Souls 02 - Shadow of Night # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: All Souls 03 - The Book of Life - Deborah Harkness

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/All Souls 03 - The Book of Life # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/All Souls 03 - The Book of Life # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Deborah Harkness', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'All Souls 03 - The Book of Life', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/All Souls 03 - The Book of Life # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Deborah Harkness', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'All Souls 03 - The Book of Life', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/All Souls 03 - The Book of Life # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Wayne of Gotham - Tracy Hickman

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayne of Gotham # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayne of Gotham # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tracy Hickman', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Wayne of Gotham', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayne of Gotham # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tracy Hickman', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Wayne of Gotham', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayne of Gotham # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: A Promised Land - Barack Obama

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Promised Land # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/A Promised Land # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/Obam_9781524763183_epub3_c006_r1.xhtml#point(/1/4/2/2/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 16, 'Attribution': 'Barack Obama', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'A Promised Land', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Promised Land # (v5.1).epub', 'TimeSpentReading': 13387, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Scot Harvath 02 - Path of the Assassin - Brad Thor

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Scot Harvath 02 - Path of the Assassin # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Scot Harvath 02 - Path of the Assassin # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brad Thor', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Scot Harvath 02 - Path of the Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Scot Harvath 02 - Path of the Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brad Thor', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Scot Harvath 02 - Path of the Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Scot Harvath 02 - Path of the Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Lincoln Rhyme 01 - The Bone Collector - Jeffery Deaver

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lincoln Rhyme 01 - The Bone Collector # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Lincoln Rhyme 01 - The Bone Collector # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffery Deaver', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Lincoln Rhyme 01 - The Bone Collector', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lincoln Rhyme 01 - The Bone Collector # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffery Deaver', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Lincoln Rhyme 01 - The Bone Collector', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lincoln Rhyme 01 - The Bone Collector # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Star Trek: Myriad Universes 03: Shattered Light - David R. George III

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David R. George III - Star Trek_ Myriad Universes 03_ Shattered Light.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/David R. George III - Star Trek_ Myriad Universes 03_ Shattered Light.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David R. George III', 'DateLastRead': None, 'Title': 'Star Trek: Myriad Universes 03: Shattered Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David R. George III - Star Trek_ Myriad Universes 03_ Shattered Light.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Paris Library - Janet Skeslien Charles

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Paris Library # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Paris Library # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Janet Skeslien Charles', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Paris Library', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Paris Library # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Janet Skeslien Charles', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Paris Library', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Paris Library # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Outlander 02 - Dragonfly in Amber - Diana Gabaldon

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Outlander 02 - Dragonfly in Amber # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Outlander 02 - Dragonfly in Amber # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Gabaldon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Outlander 02 - Dragonfly in Amber', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Outlander 02 - Dragonfly in Amber # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Gabaldon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Outlander 02 - Dragonfly in Amber', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Outlander 02 - Dragonfly in Amber # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Outlander 03 - Voyager - Diana Gabaldon

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Outlander 03 - Voyager # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Outlander 03 - Voyager # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Gabaldon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Outlander 03 - Voyager', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Outlander 03 - Voyager # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Gabaldon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Outlander 03 - Voyager', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Outlander 03 - Voyager # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Chief Inspector Barnaby 01 - The Killings at Badger's Drift - Caroline Graham

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Barnaby 01 - The Killings at Badger_s Drift # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Barnaby 01 - The Killings at Badger_s Drift # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Caroline Graham', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Chief Inspector Barnaby 01 - The Killings at Badger's Drift", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Barnaby 01 - The Killings at Badger_s Drift # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Caroline Graham', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Chief Inspector Barnaby 01 - The Killings at Badger's Drift", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Barnaby 01 - The Killings at Badger_s Drift # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Gone Girl - Gillian Flynn

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Gone Girl # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Gone Girl # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Gillian Flynn', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Gone Girl', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gone Girl # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Gillian Flynn', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Gone Girl', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gone Girl # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Gentleman Jole and the Red Queen - Lois McMaster Bujold

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Gentleman Jole and the Red Queen # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Gentleman Jole and the Red Queen # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'gj_split_005.html#point(/1/4/4/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Gentleman Jole and the Red Queen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gentleman Jole and the Red Queen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Grishaverse 0.5 - The Language of Thorns - Leigh Bardugo

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Grishaverse 0.5 - The Language of Thorns # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Grishaverse 0.5 - The Language of Thorns # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 0.5 - The Language of Thorns', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 0.5 - The Language of Thorns # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 0.5 - The Language of Thorns', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 0.5 - The Language of Thorns # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: William Warwick 03 - Turn a Blind Eye - Jeffrey Archer

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/William Warwick 03 - Turn a Blind Eye # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/William Warwick 03 - Turn a Blind Eye # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 03 - Turn a Blind Eye', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 03 - Turn a Blind Eye # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 03 - Turn a Blind Eye', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 03 - Turn a Blind Eye # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Song of Fire & Ice 04 - A Feast for Crows - George R.R. Martin

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Song of Fire & Ice 04 - A Feast for Crows # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Song of Fire & Ice 04 - A Feast for Crows # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Song of Fire & Ice 04 - A Feast for Crows', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 04 - A Feast for Crows # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Song of Fire & Ice 04 - A Feast for Crows', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 04 - A Feast for Crows # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Grishaverse 01 - Shadow and Bone - Leigh Bardugo

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Grishaverse 01 - Shadow and Bone # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Grishaverse 01 - Shadow and Bone # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 01 - Shadow and Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 01 - Shadow and Bone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 01 - Shadow and Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 01 - Shadow and Bone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Grishaverse 01.5 - The Tailor - Leigh Bardugo

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Grishaverse 01.5 - The Tailor # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Grishaverse 01.5 - The Tailor # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 01.5 - The Tailor', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 01.5 - The Tailor # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 01.5 - The Tailor', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 01.5 - The Tailor # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: The Time Machine - H. G. Wells

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Time Machine.epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Time Machine.epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'H. G. Wells', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Time Machine', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Time Machine.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'H. G. Wells', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Time Machine', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Time Machine.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: Song of Fire & Ice 05 - A Dance with Dragons - George R.R. Martin

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Song of Fire & Ice 05 - A Dance with Dragons # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Song of Fire & Ice 05 - A Dance with Dragons # (v5.1).epub'

	DEBUG:    0.0 _store_bookmarks - device_status='None'

	DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Song of Fire & Ice 05 - A Dance with Dragons', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 05 - A Dance with Dragons # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.0 _store_bookmarks - device_status is None

	DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Song of Fire & Ice 05 - A Dance with Dragons', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 05 - A Dance with Dragons # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.0 _store_bookmarks - Current book: WMC 21 - 21st Birthday - James Patterson & Maxine Paetro

	DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/WMC 21 - 21st Birthday # (v5.1).epub']'

	DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/WMC 21 - 21st Birthday # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/s006-Chapter-001.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'James Patterson & Maxine Paetro', 'DateLastRead': '2023-06-14T18:35:08Z', 'Title': 'WMC 21 - 21st Birthday', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/WMC 21 - 21st Birthday # (v5.1).epub', 'TimeSpentReading': 54, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-06-14 18:35:08+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Penric's Demon - Lois McMaster Bujold

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Penric_s Demon # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Penric_s Demon # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Penric's Demon", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Penric_s Demon # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Penric's Demon", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Penric_s Demon # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Century 02 - Winter of the World - Ken Follett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Century 02 - Winter of the World # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Century 02 - Winter of the World # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Century 02 - Winter of the World', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 02 - Winter of the World # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Century 02 - Winter of the World', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 02 - Winter of the World # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: DSC 08: Wonderlands - Una McCormack

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ DSC 08_ Wonderlands # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ DSC 08_ Wonderlands # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Una McCormack', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Star Trek: DSC 08: Wonderlands', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ DSC 08_ Wonderlands # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Una McCormack', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Star Trek: DSC 08: Wonderlands', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ DSC 08_ Wonderlands # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lord Foul's Bane - Stephen R. Donaldson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lord Foul_s Bane # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lord Foul_s Bane # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen R. Donaldson', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Lord Foul's Bane", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lord Foul_s Bane # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen R. Donaldson', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Lord Foul's Bane", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lord Foul_s Bane # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Dovekeepers: A Novel - Alice Hoffman

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Dovekeepers_ A Novel # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Dovekeepers_ A Novel # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice Hoffman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Dovekeepers: A Novel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dovekeepers_ A Novel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice Hoffman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Dovekeepers: A Novel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dovekeepers_ A Novel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Choose Me - Tess Gerritsen & Gary Braver

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Choose Me # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Choose Me # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter01.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Tess Gerritsen & Gary Braver', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Choose Me', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Choose Me # (v5.1).epub', 'TimeSpentReading': 476, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: TNG: Shadows Have Offended - Cassandra Rose Clarke

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ TNG_ Shadows Have Offended # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ TNG_ Shadows Have Offended # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cassandra Rose Clarke', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Star Trek: TNG: Shadows Have Offended', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TNG_ Shadows Have Offended # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cassandra Rose Clarke', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Star Trek: TNG: Shadows Have Offended', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TNG_ Shadows Have Offended # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Cleopatra Fox 01 - Murder at the Mayfair Hotel - C.J. Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cleopatra Fox 01 - Murder at the Mayfair Hotel # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cleopatra Fox 01 - Murder at the Mayfair Hotel # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C.J. Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Cleopatra Fox 01 - Murder at the Mayfair Hotel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cleopatra Fox 01 - Murder at the Mayfair Hotel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C.J. Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Cleopatra Fox 01 - Murder at the Mayfair Hotel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cleopatra Fox 01 - Murder at the Mayfair Hotel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Billy Summers - Stephen King

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stephen King - Billy Summers.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stephen King - Billy Summers.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'Billy Summers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - Billy Summers.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'Billy Summers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - Billy Summers.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Constance 01 - Constance - Matthew FitzSimmons

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Constance 01 - Constance # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Constance 01 - Constance # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Matthew FitzSimmons', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Constance 01 - Constance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Constance 01 - Constance # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Matthew FitzSimmons', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Constance 01 - Constance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Constance 01 - Constance # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Home Stretch - Graham Norton

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Home Stretch # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Home Stretch # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Graham Norton', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Home Stretch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Home Stretch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Graham Norton', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Home Stretch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Home Stretch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Scorpion - Christian Cantrell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Scorpion # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Scorpion # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christian Cantrell', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Scorpion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Scorpion # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christian Cantrell', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Scorpion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Scorpion # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Flashman Papers 01 - Flashman - George MacDonald Fraser

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Flashman Papers 01 - Flashman.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Flashman Papers 01 - Flashman.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George MacDonald Fraser', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Flashman Papers 01 - Flashman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Flashman Papers 01 - Flashman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George MacDonald Fraser', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Flashman Papers 01 - Flashman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Flashman Papers 01 - Flashman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Institute - Stephen King

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Institute # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Institute # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Institute', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Institute # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Institute', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Institute # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: In Death 53 - Forgotten in Death - J. D. Robb

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 53.0 - In Death 53 - Forgotten in Death.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 53.0 - In Death 53 - Forgotten in Death.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/epigraph.xhtml#point(/1/4/4/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'J. D. Robb', 'DateLastRead': '2025-02-08T00:58:27Z', 'Title': 'In Death 53 - Forgotten in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 53.0 - In Death 53 - Forgotten in Death.epub', 'TimeSpentReading': 14, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-02-08 00:58:27+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Alexandra Cooper 01 - Final Jeopardy - Linda Fairstein

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alexandra Cooper 01 - Final Jeopardy.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alexandra Cooper 01 - Final Jeopardy.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Linda Fairstein', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Alexandra Cooper 01 - Final Jeopardy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alexandra Cooper 01 - Final Jeopardy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Linda Fairstein', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Alexandra Cooper 01 - Final Jeopardy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alexandra Cooper 01 - Final Jeopardy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Cloud Cuckoo Land - Anthony Doerr

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cloud Cuckoo Land # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cloud Cuckoo Land # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Anthony Doerr', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Cloud Cuckoo Land', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cloud Cuckoo Land # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Anthony Doerr', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Cloud Cuckoo Land', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cloud Cuckoo Land # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: William Warwick 04 - Over My Dead Body - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/William Warwick 04 - Over My Dead Body # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/William Warwick 04 - Over My Dead Body # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 04 - Over My Dead Body', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 04 - Over My Dead Body # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 04 - Over My Dead Body', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 04 - Over My Dead Body # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Matthew Scudder 03 - Time to Murder and Create - Lawrence Block

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Matthew Scudder 03 - Time to Murder and Create # (v5.2).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Matthew Scudder 03 - Time to Murder and Create # (v5.2).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lawrence Block', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Matthew Scudder 03 - Time to Murder and Create', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matthew Scudder 03 - Time to Murder and Create # (v5.2).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lawrence Block', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Matthew Scudder 03 - Time to Murder and Create', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matthew Scudder 03 - Time to Murder and Create # (v5.2).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Star Trek Prometheus 01 - Fire with Fire - Christian Humberg

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek Prometheus 01 - Fire with Fire # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek Prometheus 01 - Fire with Fire # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christian Humberg', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek Prometheus 01 - Fire with Fire', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek Prometheus 01 - Fire with Fire # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christian Humberg', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek Prometheus 01 - Fire with Fire', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek Prometheus 01 - Fire with Fire # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lady Almina and the Real Downton Abbey - The Countess of Carnarvon

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lady Almina and the Real Downton Abbey # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lady Almina and the Real Downton Abbey # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'The Countess of Carnarvon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lady Almina and the Real Downton Abbey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lady Almina and the Real Downton Abbey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'The Countess of Carnarvon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lady Almina and the Real Downton Abbey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lady Almina and the Real Downton Abbey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: State of Terror - Louise Penny & Hillary Rodham Clinton

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Louise Penny & Hillary Rodham Clinton - State of Terror.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Louise Penny & Hillary Rodham Clinton - State of Terror.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny & Hillary Rodham Clinton', 'DateLastRead': None, 'Title': 'State of Terror', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Louise Penny & Hillary Rodham Clinton - State of Terror.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny & Hillary Rodham Clinton', 'DateLastRead': None, 'Title': 'State of Terror', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Louise Penny & Hillary Rodham Clinton - State of Terror.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Magician - Colm Tóibín

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Magician # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Magician # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Colm Tóibín', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Magician', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Magician # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Colm Tóibín', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Magician', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Magician # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: In Death 54 - Abandoned in Death - J. D. Robb

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 54.0 - In Death 54 - Abandoned in Death.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 54.0 - In Death 54 - Abandoned in Death.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 54 - Abandoned in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 54.0 - In Death 54 - Abandoned in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 54 - Abandoned in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 54.0 - In Death 54 - Abandoned in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: A Clubbable Woman - Reginald Hill

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Clubbable Woman # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/A Clubbable Woman # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Reginald Hill', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'A Clubbable Woman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Clubbable Woman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Reginald Hill', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'A Clubbable Woman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Clubbable Woman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Wayward Children 04 - In an Absent Dream - Seanan McGuire

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayward Children 04 - In an Absent Dream # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayward Children 04 - In an Absent Dream # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 04 - In an Absent Dream', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 04 - In an Absent Dream # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 04 - In an Absent Dream', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 04 - In an Absent Dream # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Wayward Children 06 - Across the Green Grass Fields - Seanan McGuire

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayward Children 06 - Across the Green Grass Fields # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayward Children 06 - Across the Green Grass Fields # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 06 - Across the Green Grass Fields', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 06 - Across the Green Grass Fields # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 06 - Across the Green Grass Fields', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 06 - Across the Green Grass Fields # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Wayward Children 05 - Come Tumbling Down - Seanan McGuire

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayward Children 05 - Come Tumbling Down # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayward Children 05 - Come Tumbling Down # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 05 - Come Tumbling Down', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 05 - Come Tumbling Down # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 05 - Come Tumbling Down', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 05 - Come Tumbling Down # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Wayward Children 07 - Where the Drowned Girls Go - Seanan McGuire

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayward Children 07 - Where the Drowned Girls Go # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayward Children 07 - Where the Drowned Girls Go # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 07 - Where the Drowned Girls Go', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 07 - Where the Drowned Girls Go # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 07 - Where the Drowned Girls Go', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 07 - Where the Drowned Girls Go # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Bazil Broketail 01 - Bazil Broketail - Christopher Rowley

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bazil Broketail 01 - Bazil Broketail # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bazil Broketail 01 - Bazil Broketail # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Rowley', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Bazil Broketail 01 - Bazil Broketail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bazil Broketail 01 - Bazil Broketail # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Rowley', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Bazil Broketail 01 - Bazil Broketail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bazil Broketail 01 - Bazil Broketail # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 06 - Bury Your Dead - Louise Penny

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 06 - Bury Your Dead # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 06 - Bury Your Dead # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 06 - Bury Your Dead', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 06 - Bury Your Dead # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 06 - Bury Your Dead', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 06 - Bury Your Dead # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 06.5 - The Hangman - Louise Penny

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 06.5 - The Hangman # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 06.5 - The Hangman # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 06.5 - The Hangman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 06.5 - The Hangman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 06.5 - The Hangman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 06.5 - The Hangman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 07 - A Trick of the Light - Louise Penny

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 07 - A Trick of the Light # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 07 - A Trick of the Light # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 07 - A Trick of the Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 07 - A Trick of the Light # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 07 - A Trick of the Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 07 - A Trick of the Light # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 08 - The Beautiful Mystery - Louise Penny

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 08 - The Beautiful Mystery # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 08 - The Beautiful Mystery # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 08 - The Beautiful Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 08 - The Beautiful Mystery # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 08 - The Beautiful Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 08 - The Beautiful Mystery # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 09 - How the Light Gets In - Louise Penny

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 09 - How the Light Gets In # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 09 - How the Light Gets In # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 09 - How the Light Gets In', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 09 - How the Light Gets In # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 09 - How the Light Gets In', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 09 - How the Light Gets In # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 10 - The Long Way Home - Louise Penny

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 10 - The Long Way Home # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 10 - The Long Way Home # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 10 - The Long Way Home', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 10 - The Long Way Home # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 10 - The Long Way Home', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 10 - The Long Way Home # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 11 - The Nature of the Beast - Louise Penny

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 11 - The Nature of the Beast # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 11 - The Nature of the Beast # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 11 - The Nature of the Beast', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 11 - The Nature of the Beast # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 11 - The Nature of the Beast', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 11 - The Nature of the Beast # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 12 - A Great Reckoning - Louise Penny

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 12 - A Great Reckoning # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 12 - A Great Reckoning # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 12 - A Great Reckoning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 12 - A Great Reckoning # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 12 - A Great Reckoning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 12 - A Great Reckoning # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Alex Deleware 02 - Blood Test - Jonathan Kellerman

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Deleware 02 - Blood Test # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Deleware 02 - Blood Test # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jonathan Kellerman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Alex Deleware 02 - Blood Test', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Deleware 02 - Blood Test # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jonathan Kellerman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Alex Deleware 02 - Blood Test', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Deleware 02 - Blood Test # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Last Chronicles of Thomas Covenant 02 - Fatal Revenant - Stephen R. Donaldson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Last Chronicles of Thomas Covenant 02 - Fatal Revenant # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Last Chronicles of Thomas Covenant 02 - Fatal Revenant # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen R. Donaldson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Last Chronicles of Thomas Covenant 02 - Fatal Revenant', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Chronicles of Thomas Covenant 02 - Fatal Revenant # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen R. Donaldson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Last Chronicles of Thomas Covenant 02 - Fatal Revenant', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Chronicles of Thomas Covenant 02 - Fatal Revenant # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: A Liaden Universe® Constellation: Volume Two - Sharon Lee & Steve Miller

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Liaden Universe(r) Constellation_ Volume Two # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/A Liaden Universe(r) Constellation_ Volume Two # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sharon Lee & Steve Miller', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'A Liaden Universe® Constellation: Volume Two', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Liaden Universe(r) Constellation_ Volume Two # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sharon Lee & Steve Miller', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'A Liaden Universe® Constellation: Volume Two', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Liaden Universe(r) Constellation_ Volume Two # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Gabriel Wolfe 01 - Trigger Point - Andy Maslen

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Gabriel Wolfe 01 - Trigger Point # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Gabriel Wolfe 01 - Trigger Point # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Maslen', 'DateLastRead': None, 'Title': 'Gabriel Wolfe 01 - Trigger Point', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gabriel Wolfe 01 - Trigger Point # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Maslen', 'DateLastRead': None, 'Title': 'Gabriel Wolfe 01 - Trigger Point', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gabriel Wolfe 01 - Trigger Point # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Lord of the Rings - J. R. R. Tolkien

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Lord of the Rings - J. R. R. Tolkien.kepub.epub', 'file:///mnt/onboard/books/J. R. R. Tolkien - Middle Earth 04 - The Lord of the Rings.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Lord of the Rings - J. R. R. Tolkien.kepub.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'p01b01c02.xhtml#', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'J. R. R. Tolkien', 'DateLastRead': '2022-04-20T11:15:32Z', 'Title': 'The Lord of the Rings', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Lord of the Rings - J. R. R. Tolkien.kepub.epub', 'TimeSpentReading': 142, 'RestOfBookEstimate': 133915}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. R. R. Tolkien - Middle Earth 04 - The Lord of the Rings.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='{'ChapterIDBookmarked': 'p01b01c02.xhtml#', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'J. R. R. Tolkien', 'DateLastRead': '2022-04-20T11:15:32Z', 'Title': 'The Lord of the Rings', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Lord of the Rings - J. R. R. Tolkien.kepub.epub', 'TimeSpentReading': 142, 'RestOfBookEstimate': 133915}'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. R. R. Tolkien', 'DateLastRead': None, 'Title': 'The Lord of the Rings', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. R. R. Tolkien - Middle Earth 04 - The Lord of the Rings.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-20 11:15:32+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: 87th Precinct 03 - The Pusher - Ed McBain

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/87th Precinct 03 - The Pusher # (v5.1).kepub.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/87th Precinct 03 - The Pusher # (v5.1).kepub.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ed McBain', 'DateLastRead': None, 'Title': '87th Precinct 03 - The Pusher', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/87th Precinct 03 - The Pusher # (v5.1).kepub.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ed McBain', 'DateLastRead': None, 'Title': '87th Precinct 03 - The Pusher', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/87th Precinct 03 - The Pusher # (v5.1).kepub.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Alex Delaware 03 - Over the Edge - Jonathan Kellerman

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Delaware 03 - Over the Edge # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Delaware 03 - Over the Edge # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jonathan Kellerman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Alex Delaware 03 - Over the Edge', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Delaware 03 - Over the Edge # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jonathan Kellerman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Alex Delaware 03 - Over the Edge', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Delaware 03 - Over the Edge # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: 87th Precinct 04 - The Con Man - Ed McBain

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ed McBain - The Con Man 4.0 - 87th Precinct 04 - The Con Man.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ed McBain - The Con Man 4.0 - 87th Precinct 04 - The Con Man.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ed McBain', 'DateLastRead': None, 'Title': '87th Precinct 04 - The Con Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ed McBain - The Con Man 4.0 - 87th Precinct 04 - The Con Man.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ed McBain', 'DateLastRead': None, 'Title': '87th Precinct 04 - The Con Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ed McBain - The Con Man 4.0 - 87th Precinct 04 - The Con Man.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vorkosigan 01 - Miles, Mystery & Mayhem - Lois McMaster Bujold

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vorkosigan 01 - Miles, Mystery & Mayhem # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vorkosigan 01 - Miles, Mystery & Mayhem # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vorkosigan 01 - Miles, Mystery & Mayhem', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vorkosigan 01 - Miles, Mystery & Mayhem # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vorkosigan 01 - Miles, Mystery & Mayhem', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vorkosigan 01 - Miles, Mystery & Mayhem # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lucas Davenport 01 - Rules of Prey - John Sandford

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lucas Davenport 01 - Rules of Prey # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lucas Davenport 01 - Rules of Prey # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Sandford', 'DateLastRead': None, 'Title': 'Lucas Davenport 01 - Rules of Prey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lucas Davenport 01 - Rules of Prey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Sandford', 'DateLastRead': None, 'Title': 'Lucas Davenport 01 - Rules of Prey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lucas Davenport 01 - Rules of Prey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Wars of Light and Shadow 01 - Curse of the Mistwraith - Janny Wurts

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Janny Wurts - Wars of Light and Shadow 01 - Wars of Light and Shadow 01 - Curse of the Mistwraith.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Janny Wurts - Wars of Light and Shadow 01 - Wars of Light and Shadow 01 - Curse of the Mistwraith.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Janny Wurts', 'DateLastRead': None, 'Title': 'Wars of Light and Shadow 01 - Curse of the Mistwraith', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Janny Wurts - Wars of Light and Shadow 01 - Wars of Light and Shadow 01 - Curse of the Mistwraith.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Janny Wurts', 'DateLastRead': None, 'Title': 'Wars of Light and Shadow 01 - Curse of the Mistwraith', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Janny Wurts - Wars of Light and Shadow 01 - Wars of Light and Shadow 01 - Curse of the Mistwraith.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Howl's Castle 02 - Castle in the Air - Diana Wynne Jones

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Howl_s Castle 02 - Castle in the Air # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Howl_s Castle 02 - Castle in the Air # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Wynne Jones', 'DateLastRead': None, 'Title': "Howl's Castle 02 - Castle in the Air", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Howl_s Castle 02 - Castle in the Air # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Wynne Jones', 'DateLastRead': None, 'Title': "Howl's Castle 02 - Castle in the Air", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Howl_s Castle 02 - Castle in the Air # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Miles, Mutants and Microbes - Lois McMaster Bujold

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Miles, Mutants and Microbes # (v5.2).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Miles, Mutants and Microbes # (v5.2).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Miles, Mutants and Microbes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Miles, Mutants and Microbes # (v5.2).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Miles, Mutants and Microbes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Miles, Mutants and Microbes # (v5.2).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Cordelia's Honor - Lois McMaster Bujold

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cordelia_s Honor # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cordelia_s Honor # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "Cordelia's Honor", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cordelia_s Honor # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "Cordelia's Honor", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cordelia_s Honor # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 04 - Stranger in Town - Cheryl Bradshaw

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sloane Monroe 04 - Stranger in Town # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sloane Monroe 04 - Stranger in Town # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter01.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': '2023-09-01T11:38:07Z', 'Title': 'Sloane Monroe 04 - Stranger in Town', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 04 - Stranger in Town # (v5.1).epub', 'TimeSpentReading': 115, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-09-01 11:38:07+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Informant - James Grippando

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Informant # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Informant # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Grippando', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Informant', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Informant # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Grippando', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Informant', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Informant # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The President's Daughter - Bill Clinton & James Patterson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The President_s Daughter # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The President_s Daughter # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bill Clinton & James Patterson', 'DateLastRead': None, 'Title': "The President's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The President_s Daughter # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bill Clinton & James Patterson', 'DateLastRead': None, 'Title': "The President's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The President_s Daughter # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Rizzoli & Isles 13 - Listen to Me - Tess Gerritsen

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rizzoli & Isles 13 - Listen to Me # (v5.1).kepub.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rizzoli & Isles 13 - Listen to Me # (v5.1).kepub.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/Gerr_9780593497142_epub3_c001_r1.xhtml#kobo.1.1', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Tess Gerritsen', 'DateLastRead': '2022-07-24T14:11:27Z', 'Title': 'Rizzoli & Isles 13 - Listen to Me', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rizzoli & Isles 13 - Listen to Me # (v5.1).kepub.epub', 'TimeSpentReading': 440, 'RestOfBookEstimate': 21810}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-07-24 14:11:27+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Quicksilver - Dean Koontz

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Quicksilver # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Quicksilver # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dean Koontz', 'DateLastRead': None, 'Title': 'Quicksilver', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Quicksilver # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dean Koontz', 'DateLastRead': None, 'Title': 'Quicksilver', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Quicksilver # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 01 - The Informationist - Taylor Stevens

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 01 - The Informationist # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 01 - The Informationist # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 01 - The Informationist', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 01 - The Informationist # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 01 - The Informationist', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 01 - The Informationist # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 05 - Bed of Bones - Cheryl Bradshaw

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sloane Monroe 05 - Bed of Bones # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sloane Monroe 05 - Bed of Bones # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 05 - Bed of Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 05 - Bed of Bones # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 05 - Bed of Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 05 - Bed of Bones # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 5.5 - Flirting with Danger - Cheryl Bradshaw

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sloane Monroe 5.5 - Flirting with Danger # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sloane Monroe 5.5 - Flirting with Danger # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 5.5 - Flirting with Danger', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 5.5 - Flirting with Danger # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 5.5 - Flirting with Danger', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 5.5 - Flirting with Danger # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 06 - Hush Now Baby - Cheryl Bradshaw

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sloane Monroe 06 - Hush Now Baby # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sloane Monroe 06 - Hush Now Baby # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 06 - Hush Now Baby', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 06 - Hush Now Baby # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 06 - Hush Now Baby', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 06 - Hush Now Baby # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 07 - Gone Daddy Gone - Cheryl Bradshaw

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 7.0 - Sloane Monroe 07 - Gone Daddy Gone.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 7.0 - Sloane Monroe 07 - Gone Daddy Gone.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 07 - Gone Daddy Gone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 7.0 - Sloane Monroe 07 - Gone Daddy Gone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 07 - Gone Daddy Gone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 7.0 - Sloane Monroe 07 - Gone Daddy Gone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Farseer 03 - Assassin's Quest - Robin Hobb

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Farseer 03 - Assassin_s Quest # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Farseer 03 - Assassin_s Quest # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robin Hobb', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "Farseer 03 - Assassin's Quest", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Farseer 03 - Assassin_s Quest # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robin Hobb', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "Farseer 03 - Assassin's Quest", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Farseer 03 - Assassin_s Quest # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 06.5 - Dead of Night - Cheryl Bradshaw

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 6.5 - Sloane Monroe 06.5 - Dead of Night.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 6.5 - Sloane Monroe 06.5 - Dead of Night.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 06.5 - Dead of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 6.5 - Sloane Monroe 06.5 - Dead of Night.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 06.5 - Dead of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 6.5 - Sloane Monroe 06.5 - Dead of Night.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Recluse 02 - The Towers of the Sunset - L. E. Modesitt, Jr.

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Recluse 02 - The Towers of the Sunset # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Recluse 02 - The Towers of the Sunset # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/xhtml/ch08.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'L. E. Modesitt, Jr.', 'DateLastRead': '2023-10-18T05:52:24Z', 'Title': 'Recluse 02 - The Towers of the Sunset', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Recluse 02 - The Towers of the Sunset # (v5.1).epub', 'TimeSpentReading': 3563, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-10-18 05:52:24+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 02 - The Innocent - Taylor Stevens

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 02 - The Innocent # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 02 - The Innocent # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 02 - The Innocent', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 02 - The Innocent # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 02 - The Innocent', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 02 - The Innocent # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Liveship Traders 01 - Ship of Magic - Robin Hobb

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Liveship Traders 01 - Ship of Magic # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Liveship Traders 01 - Ship of Magic # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robin Hobb', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Liveship Traders 01 - Ship of Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Liveship Traders 01 - Ship of Magic # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robin Hobb', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Liveship Traders 01 - Ship of Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Liveship Traders 01 - Ship of Magic # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Solar Lottery - Philip K. Dick

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Solar Lottery # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Solar Lottery # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip K. Dick', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Solar Lottery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Solar Lottery # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip K. Dick', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Solar Lottery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Solar Lottery # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Planetfall 01 - Planetfall - Emma Newman

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Planetfall 01 - Planetfall # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Planetfall 01 - Planetfall # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/03_9780698404328_EPUB-1.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Emma Newman', 'DateLastRead': '2022-09-02T14:56:29Z', 'Title': 'Planetfall 01 - Planetfall', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Planetfall 01 - Planetfall # (v5.1).epub', 'TimeSpentReading': 211, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-09-02 14:56:29+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Small Change 01 - Farthing - Jo Walton

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jo Walton - Small Change 1.0 - Small Change 01 - Farthing.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jo Walton - Small Change 1.0 - Small Change 01 - Farthing.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jo Walton', 'DateLastRead': None, 'Title': 'Small Change 01 - Farthing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jo Walton - Small Change 1.0 - Small Change 01 - Farthing.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jo Walton', 'DateLastRead': None, 'Title': 'Small Change 01 - Farthing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jo Walton - Small Change 1.0 - Small Change 01 - Farthing.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Things We Do in the Dark - Jennifer Hillier

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jennifer Hillier - Things We Do in the Dark.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jennifer Hillier - Things We Do in the Dark.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Hillier', 'DateLastRead': None, 'Title': 'Things We Do in the Dark', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jennifer Hillier - Things We Do in the Dark.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Hillier', 'DateLastRead': None, 'Title': 'Things We Do in the Dark', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jennifer Hillier - Things We Do in the Dark.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Cormoran Strike 06 - The Ink Black Heart - Robert Galbraith

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.kepub.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.kepub.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': None, 'Title': 'Cormoran Strike 06 - The Ink Black Heart', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.kepub.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Capital Crimes 01 - Murder in the White House - Margaret Truman

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Margaret Truman - Capital Crimes 1.0 - Capital Crimes 01 - Murder in the White House.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Margaret Truman - Capital Crimes 1.0 - Capital Crimes 01 - Murder in the White House.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter1.htm#point(/1/4/164/3:272)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 10, 'Attribution': 'Margaret Truman', 'DateLastRead': '2022-10-23T16:26:43Z', 'Title': 'Capital Crimes 01 - Murder in the White House', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Margaret Truman - Capital Crimes 1.0 - Capital Crimes 01 - Murder in the White House.epub', 'TimeSpentReading': 3406, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-10-23 16:26:43+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Midwife 02 - Shadows of the Workhouse - Jennifer Worth

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Midwife 02 - Shadows of the Workhouse # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Midwife 02 - Shadows of the Workhouse # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Worth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Midwife 02 - Shadows of the Workhouse', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Midwife 02 - Shadows of the Workhouse # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Worth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Midwife 02 - Shadows of the Workhouse', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Midwife 02 - Shadows of the Workhouse # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Wild Cards 01 - Wild Cards I - George R. R. Martin (ed)

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wild Cards 01 - Wild Cards I # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wild Cards 01 - Wild Cards I # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/xhtml/prologue.html#point(/1/4/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'George R. R. Martin (ed)', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Wild Cards 01 - Wild Cards I', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wild Cards 01 - Wild Cards I # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dorothy Must Die 02 - The Wicked Will Rise - Danielle Paige

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Danielle Paige - Dorothy Must Die 2.0 - Dorothy Must Die 02 - The Wicked Will Rise.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Danielle Paige - Dorothy Must Die 2.0 - Dorothy Must Die 02 - The Wicked Will Rise.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/text/9780062280725_Chapter_1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Danielle Paige', 'DateLastRead': '2022-10-17T17:45:07Z', 'Title': 'Dorothy Must Die 02 - The Wicked Will Rise', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Danielle Paige - Dorothy Must Die 2.0 - Dorothy Must Die 02 - The Wicked Will Rise.epub', 'TimeSpentReading': 72, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-10-17 17:45:07+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: In Death 55 - Desperation in Death - J. D. Robb

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 55.0 - In Death 55 - Desperation in Death.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 55.0 - In Death 55 - Desperation in Death.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 55 - Desperation in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 55.0 - In Death 55 - Desperation in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 55 - Desperation in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 55.0 - In Death 55 - Desperation in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Fairy Tale - Stephen King

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stephen King - Fairy Tale.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stephen King - Fairy Tale.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'Fairy Tale', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - Fairy Tale.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'Fairy Tale', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - Fairy Tale.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vera Stanhope 10 - The Rising Tide - Ann Cleeves

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 10.0 - Vera Stanhope 10 - The Rising Tide.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 10.0 - Vera Stanhope 10 - The Rising Tide.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Vera Stanhope 10 - The Rising Tide', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 10.0 - Vera Stanhope 10 - The Rising Tide.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Vera Stanhope 10 - The Rising Tide', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 10.0 - Vera Stanhope 10 - The Rising Tide.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vera Stanhope 09.5 - The Woman on the Island - Ann Cleeves

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 9.5 - Vera Stanhope 09.5 - The Woman on the Island.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 9.5 - Vera Stanhope 09.5 - The Woman on the Island.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Vera Stanhope 09.5 - The Woman on the Island', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 9.5 - Vera Stanhope 09.5 - The Woman on the Island.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Vera Stanhope 09.5 - The Woman on the Island', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 9.5 - Vera Stanhope 09.5 - The Woman on the Island.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Cormoran Strike 06 - The Ink Black Heart - Robert Galbraith

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': None, 'Title': 'Cormoran Strike 06 - The Ink Black Heart', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: World War Z - Max Brooks

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/World War Z # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/World War Z # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Max Brooks', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'World War Z', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/World War Z # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Max Brooks', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'World War Z', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/World War Z # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Karen Pirie 02 - A Darker Domain - Val McDermid

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Val McDermid - Karen Pirie 2.0 - Karen Pirie 02 - A Darker Domain.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Val McDermid - Karen Pirie 2.0 - Karen Pirie 02 - A Darker Domain.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/xhtml/cover.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Val McDermid', 'DateLastRead': '2022-10-02T12:15:40Z', 'Title': 'Karen Pirie 02 - A Darker Domain', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Val McDermid - Karen Pirie 2.0 - Karen Pirie 02 - A Darker Domain.epub', 'TimeSpentReading': 7, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-10-02 12:15:40+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Heart of What Was Lost - Tad Williams

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tad Williams - Last King of Osten Ard 0.5 - The Heart of What Was Lost.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tad Williams - Last King of Osten Ard 0.5 - The Heart of What Was Lost.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': '2022-11-21T13:52:38.060', 'Title': 'The Heart of What Was Lost', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Last King of Osten Ard 0.5 - The Heart of What Was Lost.epub', 'TimeSpentReading': 534, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-11-21 13:52:38+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': '2022-11-21T13:52:38.060', 'Title': 'The Heart of What Was Lost', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Last King of Osten Ard 0.5 - The Heart of What Was Lost.epub', 'TimeSpentReading': 534, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Memory, Sorrow, and Thorn 01 - The Dragonbone Chair - Tad Williams

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 1.0 - Memory, Sorrow, and Thorn 01 - The Dragonbone Chair.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 1.0 - Memory, Sorrow, and Thorn 01 - The Dragonbone Chair.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/9781101160770_EPUB-27.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 18, 'Attribution': 'Tad Williams', 'DateLastRead': '2022-12-08T22:03:17Z', 'Title': 'Memory, Sorrow, and Thorn 01 - The Dragonbone Chair', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 1.0 - Memory, Sorrow, and Thorn 01 - The Dragonbone Chair.epub', 'TimeSpentReading': 24148, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-12-08 22:03:17+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Memory, Sorrow, and Thorn 02 - The Stone of Farewell - Tad Williams

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 2.0 - Memory, Sorrow, and Thorn 02 - The Stone of Farewell.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 2.0 - Memory, Sorrow, and Thorn 02 - The Stone of Farewell.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': None, 'Title': 'Memory, Sorrow, and Thorn 02 - The Stone of Farewell', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 2.0 - Memory, Sorrow, and Thorn 02 - The Stone of Farewell.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': None, 'Title': 'Memory, Sorrow, and Thorn 02 - The Stone of Farewell', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 2.0 - Memory, Sorrow, and Thorn 02 - The Stone of Farewell.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Memory, Sorrow, and Thorn 03 - To Green Angel Tower - Tad Williams

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 3.0 - Memory, Sorrow, and Thorn 03 - To Green Angel Tower.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 3.0 - Memory, Sorrow, and Thorn 03 - To Green Angel Tower.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': None, 'Title': 'Memory, Sorrow, and Thorn 03 - To Green Angel Tower', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 3.0 - Memory, Sorrow, and Thorn 03 - To Green Angel Tower.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': None, 'Title': 'Memory, Sorrow, and Thorn 03 - To Green Angel Tower', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 3.0 - Memory, Sorrow, and Thorn 03 - To Green Angel Tower.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Riftwar 02 - Silverthorn - Raymond E. Feist

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Riftwar 02 - Silverthorn # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Riftwar 02 - Silverthorn # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Raymond E. Feist', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Riftwar 02 - Silverthorn', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Riftwar 02 - Silverthorn # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Raymond E. Feist', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Riftwar 02 - Silverthorn', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Riftwar 02 - Silverthorn # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Joe Gunther 01 - Open Season - Archer Mayor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Archer Mayor - Joe Gunther 1.0 - Joe Gunther 01 - Open Season.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Archer Mayor - Joe Gunther 1.0 - Joe Gunther 01 - Open Season.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Archer Mayor', 'DateLastRead': None, 'Title': 'Joe Gunther 01 - Open Season', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Archer Mayor - Joe Gunther 1.0 - Joe Gunther 01 - Open Season.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Archer Mayor', 'DateLastRead': None, 'Title': 'Joe Gunther 01 - Open Season', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Archer Mayor - Joe Gunther 1.0 - Joe Gunther 01 - Open Season.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 03 - The Doll - Taylor Stevens

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 03 - The Doll # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 03 - The Doll # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 03 - The Doll', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 03 - The Doll # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 03 - The Doll', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 03 - The Doll # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Innocence Game - Michael Harvey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Innocence Game # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Innocence Game # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Harvey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Innocence Game', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Innocence Game # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Harvey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Innocence Game', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Innocence Game # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Kate Shugak Novels, Volume 2 - Dana Stabenow

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Kate Shugak Novels, Volume 2 # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Kate Shugak Novels, Volume 2 # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dana Stabenow', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Kate Shugak Novels, Volume 2', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Kate Shugak Novels, Volume 2 # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dana Stabenow', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Kate Shugak Novels, Volume 2', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Kate Shugak Novels, Volume 2 # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Band 01 - Kings of the Wyld - Nicholas Eames

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nicholas Eames - The Band 1.0 - The Band 01 - Kings of the Wyld.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Nicholas Eames - The Band 1.0 - The Band 01 - Kings of the Wyld.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Nicholas Eames', 'DateLastRead': None, 'Title': 'The Band 01 - Kings of the Wyld', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nicholas Eames - The Band 1.0 - The Band 01 - Kings of the Wyld.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Nicholas Eames', 'DateLastRead': None, 'Title': 'The Band 01 - Kings of the Wyld', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nicholas Eames - The Band 1.0 - The Band 01 - Kings of the Wyld.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Mysterious Benedict Society - Trenton Lee Stewart

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Trenton Lee Stewart - Mysterious Benedict Society 1.0 - The Mysterious Benedict Society.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Trenton Lee Stewart - Mysterious Benedict Society 1.0 - The Mysterious Benedict Society.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/titlepage.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Trenton Lee Stewart', 'DateLastRead': '2023-06-06T21:52:16Z', 'Title': 'The Mysterious Benedict Society', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Trenton Lee Stewart - Mysterious Benedict Society 1.0 - The Mysterious Benedict Society.epub', 'TimeSpentReading': 70, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-06-06 21:52:16+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 05 - Echo Burning - Lee Child

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 05 - Jack Reacher 05 - Echo Burning.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 05 - Jack Reacher 05 - Echo Burning.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/echoburning_TOCREF-1.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Lee Child', 'DateLastRead': '2025-01-20T19:06:46Z', 'Title': 'Jack Reacher 05 - Echo Burning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 05 - Jack Reacher 05 - Echo Burning.epub', 'TimeSpentReading': 59, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-01-20 19:06:46+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Midwife 03 - Farewell to the East End - Jennifer Worth

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Midwife 03 - Farewell to the East End # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Midwife 03 - Farewell to the East End # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Worth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Midwife 03 - Farewell to the East End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Midwife 03 - Farewell to the East End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Worth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Midwife 03 - Farewell to the East End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Midwife 03 - Farewell to the East End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Gabriel Allon 02 - The English Assassin - Daniel Silva

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Gabriel Allon 02 - The English Assassin # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Gabriel Allon 02 - The English Assassin # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Daniel Silva', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Gabriel Allon 02 - The English Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gabriel Allon 02 - The English Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Daniel Silva', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Gabriel Allon 02 - The English Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gabriel Allon 02 - The English Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: William Warwick 05 - Next in Line - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeffrey Archer - William Warwick 5.0 - William Warwick 05 - Next in Line.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeffrey Archer - William Warwick 5.0 - William Warwick 05 - Next in Line.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'William Warwick 05 - Next in Line', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - William Warwick 5.0 - William Warwick 05 - Next in Line.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'William Warwick 05 - Next in Line', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - William Warwick 5.0 - William Warwick 05 - Next in Line.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Broken Earth 01 - The Fifth Season - N. K. Jemisin

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/N. K. Jemisin - Broken Earth 1.0 - Broken Earth 01 - The Fifth Season.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/N. K. Jemisin - Broken Earth 1.0 - Broken Earth 01 - The Fifth Season.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'N. K. Jemisin', 'DateLastRead': None, 'Title': 'Broken Earth 01 - The Fifth Season', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/N. K. Jemisin - Broken Earth 1.0 - Broken Earth 01 - The Fifth Season.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'N. K. Jemisin', 'DateLastRead': None, 'Title': 'Broken Earth 01 - The Fifth Season', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/N. K. Jemisin - Broken Earth 1.0 - Broken Earth 01 - The Fifth Season.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Heart of Bone - Maggie James

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Maggie James - Heart of Bone.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Maggie James - Heart of Bone.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Maggie James', 'DateLastRead': None, 'Title': 'Heart of Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Maggie James - Heart of Bone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Maggie James', 'DateLastRead': None, 'Title': 'Heart of Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Maggie James - Heart of Bone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Cities in Flight - James Blish

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James Blish - Cities in Flight.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James Blish - Cities in Flight.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Blish', 'DateLastRead': None, 'Title': 'Cities in Flight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Blish - Cities in Flight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Blish', 'DateLastRead': None, 'Title': 'Cities in Flight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Blish - Cities in Flight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Gray Man 01 - The Gray Man - Mark Greaney

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mark Greaney - Gray Man 1.0 - Gray Man 01 - The Gray Man.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mark Greaney - Gray Man 1.0 - Gray Man 01 - The Gray Man.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mark Greaney', 'DateLastRead': None, 'Title': 'Gray Man 01 - The Gray Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mark Greaney - Gray Man 1.0 - Gray Man 01 - The Gray Man.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mark Greaney', 'DateLastRead': None, 'Title': 'Gray Man 01 - The Gray Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mark Greaney - Gray Man 1.0 - Gray Man 01 - The Gray Man.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Children of Time 01 - Children of Time - Adrian Tchaikovsky

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Adrian Tchaikovsky - Children of Time 1.0 - Children of Time 01 - Children of Time.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Adrian Tchaikovsky - Children of Time 1.0 - Children of Time 01 - Children of Time.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Adrian Tchaikovsky', 'DateLastRead': None, 'Title': 'Children of Time 01 - Children of Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Adrian Tchaikovsky - Children of Time 1.0 - Children of Time 01 - Children of Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Adrian Tchaikovsky', 'DateLastRead': None, 'Title': 'Children of Time 01 - Children of Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Adrian Tchaikovsky - Children of Time 1.0 - Children of Time 01 - Children of Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: In Death 56 - Encore in Death - J. D. Robb

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 56.0 - In Death 56 - Encore in Death.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 56.0 - In Death 56 - Encore in Death.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 56 - Encore in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 56.0 - In Death 56 - Encore in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 56 - Encore in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 56.0 - In Death 56 - Encore in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Crescent City 01 - House of Earth and Blood - Sarah J. Maas

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sarah J. Maas - Crescent City 1.0 - Crescent City 01 - House of Earth and Blood.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sarah J. Maas - Crescent City 1.0 - Crescent City 01 - House of Earth and Blood.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Sarah J. Maas', 'DateLastRead': '2024-02-01T01:03:36Z', 'Title': 'Crescent City 01 - House of Earth and Blood', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah J. Maas - Crescent City 1.0 - Crescent City 01 - House of Earth and Blood.epub', 'TimeSpentReading': 78, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-02-01 01:03:36+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Secret Life of Albert Entwistle - Matt Cain

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Matt Cain - The Secret Life of Albert Entwistle.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Matt Cain - The Secret Life of Albert Entwistle.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Matt Cain', 'DateLastRead': None, 'Title': 'The Secret Life of Albert Entwistle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matt Cain - The Secret Life of Albert Entwistle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Matt Cain', 'DateLastRead': None, 'Title': 'The Secret Life of Albert Entwistle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matt Cain - The Secret Life of Albert Entwistle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Riftwar 01 - Magician - Raymond E. Feist

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Raymond E. Feist - Riftwar 1.0 - Riftwar 01 - Magician.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Raymond E. Feist - Riftwar 1.0 - Riftwar 01 - Magician.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter003.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 6, 'Attribution': 'Raymond E. Feist', 'DateLastRead': '2024-06-02T08:07:56Z', 'Title': 'Riftwar 01 - Magician', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Raymond E. Feist - Riftwar 1.0 - Riftwar 01 - Magician.epub', 'TimeSpentReading': 5565, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-06-02 08:07:56+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dirk Pitt 02 - The Mediterranean Caper - Clive Cussler

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 2.0 - Dirk Pitt 02 - The Mediterranean Caper.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 2.0 - Dirk Pitt 02 - The Mediterranean Caper.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 02 - The Mediterranean Caper', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 2.0 - Dirk Pitt 02 - The Mediterranean Caper.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 02 - The Mediterranean Caper', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 2.0 - Dirk Pitt 02 - The Mediterranean Caper.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dirk Pitt 04 - Raise the Titanic! - Clive Cussler

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 4.0 - Dirk Pitt 04 - Raise the Titanic_.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 4.0 - Dirk Pitt 04 - Raise the Titanic_.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 04 - Raise the Titanic!', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 4.0 - Dirk Pitt 04 - Raise the Titanic_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 04 - Raise the Titanic!', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 4.0 - Dirk Pitt 04 - Raise the Titanic_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dirk Pitt 01 - Pacific Vortex! - Clive Cussler

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 1.0 - Dirk Pitt 01 - Pacific Vortex_.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 1.0 - Dirk Pitt 01 - Pacific Vortex_.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 01 - Pacific Vortex!', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 1.0 - Dirk Pitt 01 - Pacific Vortex_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 01 - Pacific Vortex!', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 1.0 - Dirk Pitt 01 - Pacific Vortex_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dirk Pitt 03 - Iceberg - Clive Cussler

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 3.0 - Dirk Pitt 03 - Iceberg.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 3.0 - Dirk Pitt 03 - Iceberg.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 03 - Iceberg', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 3.0 - Dirk Pitt 03 - Iceberg.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 03 - Iceberg', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 3.0 - Dirk Pitt 03 - Iceberg.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Wayfarers 04 - The Galaxy, and the Ground Within - Becky Chambers

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Becky Chambers - Wayfarers 4.0 - Wayfarers 04 - The Galaxy, and the Ground Within.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Becky Chambers - Wayfarers 4.0 - Wayfarers 04 - The Galaxy, and the Ground Within.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Becky Chambers', 'DateLastRead': None, 'Title': 'Wayfarers 04 - The Galaxy, and the Ground Within', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Becky Chambers - Wayfarers 4.0 - Wayfarers 04 - The Galaxy, and the Ground Within.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Becky Chambers', 'DateLastRead': None, 'Title': 'Wayfarers 04 - The Galaxy, and the Ground Within', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Becky Chambers - Wayfarers 4.0 - Wayfarers 04 - The Galaxy, and the Ground Within.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: His Dark Materials 03 - The Amber Spyglass - Philip Pullman

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Philip Pullman - His Dark Materials 3.0 - His Dark Materials 03 - The Amber Spyglass.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Philip Pullman - His Dark Materials 3.0 - His Dark Materials 03 - The Amber Spyglass.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip Pullman', 'DateLastRead': None, 'Title': 'His Dark Materials 03 - The Amber Spyglass', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Philip Pullman - His Dark Materials 3.0 - His Dark Materials 03 - The Amber Spyglass.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip Pullman', 'DateLastRead': None, 'Title': 'His Dark Materials 03 - The Amber Spyglass', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Philip Pullman - His Dark Materials 3.0 - His Dark Materials 03 - The Amber Spyglass.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Legends of Muirwood 01 - The Wretched of Muirwood - Jeff Wheeler

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeff Wheeler - Legends of Muirwood 1.0 - Legends of Muirwood 01 - The Wretched of Muirwood.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeff Wheeler - Legends of Muirwood 1.0 - Legends of Muirwood 01 - The Wretched of Muirwood.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeff Wheeler', 'DateLastRead': None, 'Title': 'Legends of Muirwood 01 - The Wretched of Muirwood', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeff Wheeler - Legends of Muirwood 1.0 - Legends of Muirwood 01 - The Wretched of Muirwood.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeff Wheeler', 'DateLastRead': None, 'Title': 'Legends of Muirwood 01 - The Wretched of Muirwood', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeff Wheeler - Legends of Muirwood 1.0 - Legends of Muirwood 01 - The Wretched of Muirwood.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Green Creek 02 - Ravensong - TJ Klune

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/TJ Klune - Green Creek 2.0 - Green Creek 02 - Ravensong.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/TJ Klune - Green Creek 2.0 - Green Creek 02 - Ravensong.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'TJ Klune', 'DateLastRead': None, 'Title': 'Green Creek 02 - Ravensong', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/TJ Klune - Green Creek 2.0 - Green Creek 02 - Ravensong.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'TJ Klune', 'DateLastRead': None, 'Title': 'Green Creek 02 - Ravensong', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/TJ Klune - Green Creek 2.0 - Green Creek 02 - Ravensong.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Harry Hole 01 - The Bat - Jo Nesbo

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jo Nesbo - Harry Hole 1.0 - Harry Hole 01 - The Bat.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jo Nesbo - Harry Hole 1.0 - Harry Hole 01 - The Bat.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jo Nesbo', 'DateLastRead': None, 'Title': 'Harry Hole 01 - The Bat', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jo Nesbo - Harry Hole 1.0 - Harry Hole 01 - The Bat.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jo Nesbo', 'DateLastRead': None, 'Title': 'Harry Hole 01 - The Bat', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jo Nesbo - Harry Hole 1.0 - Harry Hole 01 - The Bat.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Murderbot Diaries 06 - Fugitive Telemetry - Martha Wells

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 6.0 - Murderbot Diaries 06 - Fugitive Telemetry.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 6.0 - Murderbot Diaries 06 - Fugitive Telemetry.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 06 - Fugitive Telemetry', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 6.0 - Murderbot Diaries 06 - Fugitive Telemetry.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 06 - Fugitive Telemetry', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 6.0 - Murderbot Diaries 06 - Fugitive Telemetry.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Gone 01 - Gone - Michael Grant

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Grant - Gone 1.0 - Gone 01 - Gone.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Grant - Gone 1.0 - Gone 01 - Gone.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Grant', 'DateLastRead': None, 'Title': 'Gone 01 - Gone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Grant - Gone 1.0 - Gone 01 - Gone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Grant', 'DateLastRead': None, 'Title': 'Gone 01 - Gone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Grant - Gone 1.0 - Gone 01 - Gone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: I Have Some Questions for You - Rebecca Makkai

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rebecca Makkai - I Have Some Questions for You.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rebecca Makkai - I Have Some Questions for You.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/001_Cover.xhtml#point(:1)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Rebecca Makkai', 'DateLastRead': '2023-08-09T00:55:29Z', 'Title': 'I Have Some Questions for You', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rebecca Makkai - I Have Some Questions for You.epub', 'TimeSpentReading': 12, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-08-09 00:55:29+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: In the Lives of Puppets - TJ Klune

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/TJ Klune - In the Lives of Puppets.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/TJ Klune - In the Lives of Puppets.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'TJ Klune', 'DateLastRead': None, 'Title': 'In the Lives of Puppets', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/TJ Klune - In the Lives of Puppets.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'TJ Klune', 'DateLastRead': None, 'Title': 'In the Lives of Puppets', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/TJ Klune - In the Lives of Puppets.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: WMC 22 - 22 Seconds - James Patterson & Maxine Paetro

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James Patterson - Women_s Murder Club 22.0 - WMC 22 - 22 Seconds.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James Patterson - Women_s Murder Club 22.0 - WMC 22 - 22 Seconds.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson & Maxine Paetro', 'DateLastRead': None, 'Title': 'WMC 22 - 22 Seconds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Patterson - Women_s Murder Club 22.0 - WMC 22 - 22 Seconds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson & Maxine Paetro', 'DateLastRead': None, 'Title': 'WMC 22 - 22 Seconds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Patterson - Women_s Murder Club 22.0 - WMC 22 - 22 Seconds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Cruise - Catherine Cooper

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Catherine Cooper - The Cruise.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Catherine Cooper - The Cruise.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Catherine Cooper', 'DateLastRead': None, 'Title': 'The Cruise', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Catherine Cooper - The Cruise.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Catherine Cooper', 'DateLastRead': None, 'Title': 'The Cruise', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Catherine Cooper - The Cruise.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Caught - Harlan Coben

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Caught # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Caught # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/cobe_9781101186053_oeb_fm2_r1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Harlan Coben', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Caught', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Caught # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Storyteller - Jodi Picoult

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Picoult - The Storyteller.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Picoult - The Storyteller.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Picoult', 'DateLastRead': None, 'Title': 'The Storyteller', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Picoult - The Storyteller.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Picoult', 'DateLastRead': None, 'Title': 'The Storyteller', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Picoult - The Storyteller.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: You Deserve Each Other - Sarah Hogle

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sarah Hogle - You Deserve Each Other.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sarah Hogle - You Deserve Each Other.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sarah Hogle', 'DateLastRead': None, 'Title': 'You Deserve Each Other', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah Hogle - You Deserve Each Other.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sarah Hogle', 'DateLastRead': None, 'Title': 'You Deserve Each Other', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah Hogle - You Deserve Each Other.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Airport - Arthur Hailey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Arthur Hailey - Airport.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Arthur Hailey - Airport.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Arthur Hailey', 'DateLastRead': None, 'Title': 'Airport', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Arthur Hailey - Airport.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Arthur Hailey', 'DateLastRead': None, 'Title': 'Airport', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Arthur Hailey - Airport.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Will Trent 01 - Triptych - Karin Slaughter

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Karin Slaughter - Will Trent 01 - Triptych.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Karin Slaughter - Will Trent 01 - Triptych.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Slau_9780440336235_epub_c01_r1.htm#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Karin Slaughter', 'DateLastRead': '2024-04-14T23:23:03Z', 'Title': 'Will Trent 01 - Triptych', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Karin Slaughter - Will Trent 01 - Triptych.epub', 'TimeSpentReading': 165, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-04-14 23:23:03+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Probability 01 - Probability Moon - Nancy Kress

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nancy Kress - Probability 1.0 - Probability 01 - Probability Moon.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Nancy Kress - Probability 1.0 - Probability 01 - Probability Moon.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Nancy Kress', 'DateLastRead': None, 'Title': 'Probability 01 - Probability Moon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nancy Kress - Probability 1.0 - Probability 01 - Probability Moon.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Nancy Kress', 'DateLastRead': None, 'Title': 'Probability 01 - Probability Moon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nancy Kress - Probability 1.0 - Probability 01 - Probability Moon.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Beaker's Dozen - Nancy Kress

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nancy Kress - Beaker_s Dozen.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Nancy Kress - Beaker_s Dozen.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter1.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Nancy Kress', 'DateLastRead': '2023-06-06T22:07:37Z', 'Title': "Beaker's Dozen", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nancy Kress - Beaker_s Dozen.epub', 'TimeSpentReading': 1292, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-06-06 22:07:37+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Mage Wars 01 - The Black Gryphon - Mercedes Lackey & Larry Dixon

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mercedes Lackey & Larry Dixon - Valdemar_ Mage Wars 1.0 - Valdemar_ Mage Wars 01 - The Black Gryphon.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mercedes Lackey & Larry Dixon - Valdemar_ Mage Wars 1.0 - Valdemar_ Mage Wars 01 - The Black Gryphon.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/03_lack_9781101127292_oe.xhtml#point(/1/3/2/1/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey & Larry Dixon', 'DateLastRead': '2023-06-12T08:17:00Z', 'Title': 'Mage Wars 01 - The Black Gryphon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey & Larry Dixon - Valdemar_ Mage Wars 1.0 - Valdemar_ Mage Wars 01 - The Black Gryphon.epub', 'TimeSpentReading': 20, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-06-12 08:17:00+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Valdemar Anthologies 12 - Choices - Mercedes Lackey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 12.0 - Valdemar Anthologies 12 - Choices.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 12.0 - Valdemar Anthologies 12 - Choices.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar Anthologies 12 - Choices', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 12.0 - Valdemar Anthologies 12 - Choices.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar Anthologies 12 - Choices', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 12.0 - Valdemar Anthologies 12 - Choices.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar - Mercedes Lackey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 2.0 - Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 2.0 - Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 2.0 - Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 2.0 - Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lincoln Lawyer 02 - The Brass Verdict - Michael Connelly

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 2.0 - Lincoln Lawyer 02 - The Brass Verdict.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 2.0 - Lincoln Lawyer 02 - The Brass Verdict.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter002.xhtml#point(/1/4/12/1:215)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Michael Connelly', 'DateLastRead': '2025-01-05T16:39:24Z', 'Title': 'Lincoln Lawyer 02 - The Brass Verdict', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 2.0 - Lincoln Lawyer 02 - The Brass Verdict.epub', 'TimeSpentReading': 322, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-01-05 16:39:24+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lincoln Lawyer 03 - The Reversal - Michael Connelly

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 3.0 - Lincoln Lawyer 03 - The Reversal.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 3.0 - Lincoln Lawyer 03 - The Reversal.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 03 - The Reversal', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 3.0 - Lincoln Lawyer 03 - The Reversal.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 03 - The Reversal', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 3.0 - Lincoln Lawyer 03 - The Reversal.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lincoln Lawyer 05 - The Gods of Guilt - Michael Connelly

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 5.0 - Lincoln Lawyer 05 - The Gods of Guilt.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 5.0 - Lincoln Lawyer 05 - The Gods of Guilt.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 05 - The Gods of Guilt', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 5.0 - Lincoln Lawyer 05 - The Gods of Guilt.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 05 - The Gods of Guilt', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 5.0 - Lincoln Lawyer 05 - The Gods of Guilt.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Goldfinch - Donna Tartt

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Goldfinch # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Goldfinch # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donna Tartt', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Goldfinch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Goldfinch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donna Tartt', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Goldfinch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Goldfinch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lincoln Lawyer 04 - The Fifth Witness - Michael Connelly

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 4.0 - Lincoln Lawyer 04 - The Fifth Witness.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 4.0 - Lincoln Lawyer 04 - The Fifth Witness.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 04 - The Fifth Witness', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 4.0 - Lincoln Lawyer 04 - The Fifth Witness.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 04 - The Fifth Witness', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 4.0 - Lincoln Lawyer 04 - The Fifth Witness.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dresden Codex 01 - Doomsday Match - Jeff Wheeler

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeff Wheeler - Doomsday Mat 1.0 - Dresden Codex 01 - Doomsday Match.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeff Wheeler - Doomsday Mat 1.0 - Dresden Codex 01 - Doomsday Match.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeff Wheeler', 'DateLastRead': None, 'Title': 'Dresden Codex 01 - Doomsday Match', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeff Wheeler - Doomsday Mat 1.0 - Dresden Codex 01 - Doomsday Match.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeff Wheeler', 'DateLastRead': None, 'Title': 'Dresden Codex 01 - Doomsday Match', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeff Wheeler - Doomsday Mat 1.0 - Dresden Codex 01 - Doomsday Match.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Miss Peregrine 02 - Hollow City - Ransom Riggs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Miss Peregrine 02 - Hollow City # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Miss Peregrine 02 - Hollow City # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Rigg_9781594746208_epub_c01_r1.htm#point(/1/4/36/1:414)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'Ransom Riggs', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Miss Peregrine 02 - Hollow City', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Miss Peregrine 02 - Hollow City # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dune 91 - Tales of Dune - Brian Herbert & Kevin J. Anderson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Brian Herbert & Kevin J. Anderson - Dune 1.0 - Dune 91 - Tales of Dune.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Brian Herbert & Kevin J. Anderson - Dune 1.0 - Dune 91 - Tales of Dune.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/ch02.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 24, 'Attribution': 'Brian Herbert & Kevin J. Anderson', 'DateLastRead': '2023-07-06T20:11:18Z', 'Title': 'Dune 91 - Tales of Dune', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brian Herbert & Kevin J. Anderson - Dune 1.0 - Dune 91 - Tales of Dune.epub', 'TimeSpentReading': 7873, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-07-06 20:11:18+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Tomorrow and Tomorrow - Charles Sheffield

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Charles Sheffield - Tomorrow and Tomorrow.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Charles Sheffield - Tomorrow and Tomorrow.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Sheffield', 'DateLastRead': None, 'Title': 'Tomorrow and Tomorrow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Sheffield - Tomorrow and Tomorrow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Sheffield', 'DateLastRead': None, 'Title': 'Tomorrow and Tomorrow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Sheffield - Tomorrow and Tomorrow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Michael Flint 01 - Blood Trails - Diane Capri

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Diane Capri - Micheal Flint 1.0 - Michael Flint 01 - Blood Trails.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Diane Capri - Micheal Flint 1.0 - Michael Flint 01 - Blood Trails.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Capri', 'DateLastRead': None, 'Title': 'Michael Flint 01 - Blood Trails', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Diane Capri - Micheal Flint 1.0 - Michael Flint 01 - Blood Trails.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Capri', 'DateLastRead': None, 'Title': 'Michael Flint 01 - Blood Trails', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Diane Capri - Micheal Flint 1.0 - Michael Flint 01 - Blood Trails.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Book Eaters - Sunyi Dean

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sunyi Dean - The Book Eaters.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sunyi Dean - The Book Eaters.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter2.xhtml#point(/1/4/20/1:67)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 4, 'Attribution': 'Sunyi Dean', 'DateLastRead': '2023-08-23T17:05:40Z', 'Title': 'The Book Eaters', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sunyi Dean - The Book Eaters.epub', 'TimeSpentReading': 1211, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-08-23 17:05:40+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: On the Run: Book 1 in the Ryan Kaine series - Kerry J Donovan

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kerry J Donovan - Ryan Kaine 1.0 - On the Run_ Book 1 in the Ryan Kaine series.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kerry J Donovan - Ryan Kaine 1.0 - On the Run_ Book 1 in the Ryan Kaine series.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kerry J Donovan', 'DateLastRead': None, 'Title': 'On the Run: Book 1 in the Ryan Kaine series', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kerry J Donovan - Ryan Kaine 1.0 - On the Run_ Book 1 in the Ryan Kaine series.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kerry J Donovan', 'DateLastRead': None, 'Title': 'On the Run: Book 1 in the Ryan Kaine series', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kerry J Donovan - Ryan Kaine 1.0 - On the Run_ Book 1 in the Ryan Kaine series.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 02 - Sharpe's Triumph - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 02 - Sharpe 02 - Sharpe_s Triumph.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 02 - Sharpe 02 - Sharpe_s Triumph.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 02 - Sharpe's Triumph", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 02 - Sharpe 02 - Sharpe_s Triumph.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 03 - Sharpe's Fortress - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 03 - Sharpe 03 - Sharpe_s Fortress.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 03 - Sharpe 03 - Sharpe_s Fortress.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 03 - Sharpe's Fortress", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 03 - Sharpe 03 - Sharpe_s Fortress.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 03 - Sharpe's Fortress", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 03 - Sharpe 03 - Sharpe_s Fortress.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Void 01 - The Dreaming Void - Peter F. Hamilton

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Peter F. Hamilton - Commonwealth Saga 03 - Void 01 - The Dreaming Void.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Peter F. Hamilton - Commonwealth Saga 03 - Void 01 - The Dreaming Void.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter F. Hamilton', 'DateLastRead': None, 'Title': 'Void 01 - The Dreaming Void', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Peter F. Hamilton - Commonwealth Saga 03 - Void 01 - The Dreaming Void.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter F. Hamilton', 'DateLastRead': None, 'Title': 'Void 01 - The Dreaming Void', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Peter F. Hamilton - Commonwealth Saga 03 - Void 01 - The Dreaming Void.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 03 - Deadly Decisions - Kathy Reichs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 3.0 - Temperance Brennan 03 - Deadly Decisions.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 3.0 - Temperance Brennan 03 - Deadly Decisions.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'ops/xhtml/ch01.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Kathy Reichs', 'DateLastRead': '2023-10-04T07:49:27Z', 'Title': 'Temperance Brennan 03 - Deadly Decisions', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 3.0 - Temperance Brennan 03 - Deadly Decisions.epub', 'TimeSpentReading': 546, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-10-04 07:49:27+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 04 - Fatal Voyage - Kathy Reichs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 4.0 - Temperance Brennan 04 - Fatal Voyage.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 4.0 - Temperance Brennan 04 - Fatal Voyage.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 04 - Fatal Voyage', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 4.0 - Temperance Brennan 04 - Fatal Voyage.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 04 - Fatal Voyage', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 4.0 - Temperance Brennan 04 - Fatal Voyage.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 10 - Bones to Ashes - Kathy Reichs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 10.0 - Temperance Brennan 10 - Bones to Ashes.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 10.0 - Temperance Brennan 10 - Bones to Ashes.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 10 - Bones to Ashes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 10.0 - Temperance Brennan 10 - Bones to Ashes.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 10 - Bones to Ashes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 10.0 - Temperance Brennan 10 - Bones to Ashes.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 07 - Monday Mourning - Kathy Reichs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 7.0 - Temperance Brennan 07 - Monday Mourning.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 7.0 - Temperance Brennan 07 - Monday Mourning.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 07 - Monday Mourning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 7.0 - Temperance Brennan 07 - Monday Mourning.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 07 - Monday Mourning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 7.0 - Temperance Brennan 07 - Monday Mourning.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 09 - Break No Bones - Kathy Reichs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 9.0 - Temperance Brennan 09 - Break No Bones.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 9.0 - Temperance Brennan 09 - Break No Bones.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 09 - Break No Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 9.0 - Temperance Brennan 09 - Break No Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 09 - Break No Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 9.0 - Temperance Brennan 09 - Break No Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Far Reaches 01 - How It Unfolds - James S. A. Corey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Corey, James S. A. - Far Reaches 1.0 - Far Reaches 01 - How It Unfolds.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Corey, James S. A. - Far Reaches 1.0 - Far Reaches 01 - How It Unfolds.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': 'Far Reaches 01 - How It Unfolds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Corey, James S. A. - Far Reaches 1.0 - Far Reaches 01 - How It Unfolds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': 'Far Reaches 01 - How It Unfolds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Corey, James S. A. - Far Reaches 1.0 - Far Reaches 01 - How It Unfolds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 05 - Grave Secrets - Kathy Reichs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 5.0 - Temperance Brennan 05 - Grave Secrets.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 5.0 - Temperance Brennan 05 - Grave Secrets.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 05 - Grave Secrets', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 5.0 - Temperance Brennan 05 - Grave Secrets.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 05 - Grave Secrets', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 5.0 - Temperance Brennan 05 - Grave Secrets.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 06 - Bare Bones - Kathy Reichs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 6.0 - Temperance Brennan 06 - Bare Bones.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 6.0 - Temperance Brennan 06 - Bare Bones.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 06 - Bare Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 6.0 - Temperance Brennan 06 - Bare Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 06 - Bare Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 6.0 - Temperance Brennan 06 - Bare Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Caffery 01 - Birdman - Mo Hayder

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mo Hayder - Jack Caffery 1.0 - Jack Caffery 01 - Birdman.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mo Hayder - Jack Caffery 1.0 - Jack Caffery 01 - Birdman.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 01 - Birdman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 1.0 - Jack Caffery 01 - Birdman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 01 - Birdman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 1.0 - Jack Caffery 01 - Birdman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: WMC 23 - The 23rd Midnight - James Patterson & Maxine Paetro

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James Patterson & Maxine Paetro - Women_s Murder Club 23.0 - WMC 23 - The 23rd Midnight.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James Patterson & Maxine Paetro - Women_s Murder Club 23.0 - WMC 23 - The 23rd Midnight.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson & Maxine Paetro', 'DateLastRead': None, 'Title': 'WMC 23 - The 23rd Midnight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Patterson & Maxine Paetro - Women_s Murder Club 23.0 - WMC 23 - The 23rd Midnight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson & Maxine Paetro', 'DateLastRead': None, 'Title': 'WMC 23 - The 23rd Midnight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Patterson & Maxine Paetro - Women_s Murder Club 23.0 - WMC 23 - The 23rd Midnight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Murderbot Diaries 05 - Network Effect - Martha Wells

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 5.0 - Murderbot Diaries 05 - Network Effect.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 5.0 - Murderbot Diaries 05 - Network Effect.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 05 - Network Effect', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 5.0 - Murderbot Diaries 05 - Network Effect.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 05 - Network Effect', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 5.0 - Murderbot Diaries 05 - Network Effect.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 08 - Cross Bones - Kathy Reichs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 8.0 - Temperance Brennan 08 - Cross Bones.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 8.0 - Temperance Brennan 08 - Cross Bones.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 08 - Cross Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 8.0 - Temperance Brennan 08 - Cross Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 08 - Cross Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 8.0 - Temperance Brennan 08 - Cross Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Caffery 02 - The Treatment - Mo Hayder

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mo Hayder - Jack Caffery 2.0 - Jack Caffery 02 - The Treatment.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mo Hayder - Jack Caffery 2.0 - Jack Caffery 02 - The Treatment.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 02 - The Treatment', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 2.0 - Jack Caffery 02 - The Treatment.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 02 - The Treatment', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 2.0 - Jack Caffery 02 - The Treatment.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Caffery 03 - Ritual - Mo Hayder

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mo Hayder - Jack Caffery 3.0 - Jack Caffery 03 - Ritual.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mo Hayder - Jack Caffery 3.0 - Jack Caffery 03 - Ritual.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 03 - Ritual', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 3.0 - Jack Caffery 03 - Ritual.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 03 - Ritual', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 3.0 - Jack Caffery 03 - Ritual.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lincoln Lawyer 06 - The Law of Innocence - Michael Connelly

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 6.0 - Lincoln Lawyer 06 - The Law of Innocence.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 6.0 - Lincoln Lawyer 06 - The Law of Innocence.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 06 - The Law of Innocence', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 6.0 - Lincoln Lawyer 06 - The Law of Innocence.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 06 - The Law of Innocence', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 6.0 - Lincoln Lawyer 06 - The Law of Innocence.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Caffrey 04 - Skin - Mo Hayder

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mo Hayder - Jack Caffery 4.0 - Jack Caffrey 04 - Skin.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mo Hayder - Jack Caffery 4.0 - Jack Caffrey 04 - Skin.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffrey 04 - Skin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 4.0 - Jack Caffrey 04 - Skin.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffrey 04 - Skin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 4.0 - Jack Caffrey 04 - Skin.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Atlee Pine 04 - Mercy - David Baldacci

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David Baldacci - Atlee Pine 4.0 - Atlee Pine 04 - Mercy.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/David Baldacci - Atlee Pine 4.0 - Atlee Pine 04 - Mercy.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 04 - Mercy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 4.0 - Atlee Pine 04 - Mercy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 04 - Mercy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 4.0 - Atlee Pine 04 - Mercy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Atlee Pine 01 - Long Road to Mercy - David Baldacci

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David Baldacci - Atlee Pine 1.0 - Atlee Pine 01 - Long Road to Mercy.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/David Baldacci - Atlee Pine 1.0 - Atlee Pine 01 - Long Road to Mercy.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 01 - Long Road to Mercy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 1.0 - Atlee Pine 01 - Long Road to Mercy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 01 - Long Road to Mercy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 1.0 - Atlee Pine 01 - Long Road to Mercy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Atlee Pine 02 - A Minute to Midnight - David Baldacci

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David Baldacci - Atlee Pine 2.0 - Atlee Pine 02 - A Minute to Midnight.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/David Baldacci - Atlee Pine 2.0 - Atlee Pine 02 - A Minute to Midnight.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 02 - A Minute to Midnight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 2.0 - Atlee Pine 02 - A Minute to Midnight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 02 - A Minute to Midnight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 2.0 - Atlee Pine 02 - A Minute to Midnight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Inheritance Cycle 01 - Eragon - Christopher Paolini

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Christopher Paolini - Inheritance Cycle 1.0 - Inheritance Cycle 01 - Eragon.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Christopher Paolini - Inheritance Cycle 1.0 - Inheritance Cycle 01 - Eragon.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Paolini', 'DateLastRead': None, 'Title': 'Inheritance Cycle 01 - Eragon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Christopher Paolini - Inheritance Cycle 1.0 - Inheritance Cycle 01 - Eragon.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Paolini', 'DateLastRead': None, 'Title': 'Inheritance Cycle 01 - Eragon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Christopher Paolini - Inheritance Cycle 1.0 - Inheritance Cycle 01 - Eragon.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: In Death 57 - Payback in Death - J. D. Robb

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 57.0 - In Death 57 - Payback in Death.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 57.0 - In Death 57 - Payback in Death.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 57 - Payback in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 57.0 - In Death 57 - Payback in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 57 - Payback in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 57.0 - In Death 57 - Payback in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Malazan Book of the Fallan 01 - Gardens of the Moon - Steven Erikson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Steven Erikson - Malazan Book of the Fallen 01 - Malazan Book of the Fallan 01 - Gardens of the Moon.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Steven Erikson - Malazan Book of the Fallen 01 - Malazan Book of the Fallan 01 - Gardens of the Moon.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/frontmatter004.html#point(/1/4/2/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Steven Erikson', 'DateLastRead': '2024-09-24T17:52:50Z', 'Title': 'Malazan Book of the Fallan 01 - Gardens of the Moon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Steven Erikson - Malazan Book of the Fallen 01 - Malazan Book of the Fallan 01 - Gardens of the Moon.epub', 'TimeSpentReading': 299, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-09-24 17:52:50+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Shining 01 - The Shining - Stephen King

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stephen King - Shining 1.0 - Shining 01 - The Shining.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stephen King - Shining 1.0 - Shining 01 - The Shining.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/King_9780385528863_epub_c01_r1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Stephen King', 'DateLastRead': '2024-07-08T22:13:48Z', 'Title': 'Shining 01 - The Shining', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - Shining 1.0 - Shining 01 - The Shining.epub', 'TimeSpentReading': 296, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-07-08 22:13:48+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Atlee Pine 03 - Daylight - David Baldacci

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David Baldacci - Atlee Pine 3.0 - Atlee Pine 03 - Daylight.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/David Baldacci - Atlee Pine 3.0 - Atlee Pine 03 - Daylight.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 03 - Daylight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 3.0 - Atlee Pine 03 - Daylight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 03 - Daylight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 3.0 - Atlee Pine 03 - Daylight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Recluse 03 - The Magic Engineer - L.E. Modesitt, Jr.

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/L.E. Modesitt, Jr. - The Magic Engineer 3.0 - Recluse 03 - The Magic Engineer.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/L.E. Modesitt, Jr. - The Magic Engineer 3.0 - Recluse 03 - The Magic Engineer.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'L.E. Modesitt, Jr.', 'DateLastRead': None, 'Title': 'Recluse 03 - The Magic Engineer', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/L.E. Modesitt, Jr. - The Magic Engineer 3.0 - Recluse 03 - The Magic Engineer.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'L.E. Modesitt, Jr.', 'DateLastRead': None, 'Title': 'Recluse 03 - The Magic Engineer', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/L.E. Modesitt, Jr. - The Magic Engineer 3.0 - Recluse 03 - The Magic Engineer.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Kingsbridge 05 - The Armor of Light - Ken Follett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ken Follett - The Armor of L 5.0 - Kingsbridge 05 - The Armor of Light.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ken Follett - The Armor of L 5.0 - Kingsbridge 05 - The Armor of Light.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': None, 'Title': 'Kingsbridge 05 - The Armor of Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ken Follett - The Armor of L 5.0 - Kingsbridge 05 - The Armor of Light.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': None, 'Title': 'Kingsbridge 05 - The Armor of Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ken Follett - The Armor of L 5.0 - Kingsbridge 05 - The Armor of Light.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 04 - Sharpe's Trafalgar - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 04 - Sharpe 04 - Sharpe_s Trafalgar.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 04 - Sharpe 04 - Sharpe_s Trafalgar.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 04 - Sharpe's Trafalgar", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 04 - Sharpe 04 - Sharpe_s Trafalgar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 04 - Sharpe's Trafalgar", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 04 - Sharpe 04 - Sharpe_s Trafalgar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 28 - The Secret - Lee Child & Andrew Child

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child & Andrew Child - Jack Reacher 28 - Jack Reacher 28 - The Secret.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child & Andrew Child - Jack Reacher 28 - Jack Reacher 28 - The Secret.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child & Andrew Child', 'DateLastRead': None, 'Title': 'Jack Reacher 28 - The Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child & Andrew Child - Jack Reacher 28 - Jack Reacher 28 - The Secret.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child & Andrew Child', 'DateLastRead': None, 'Title': 'Jack Reacher 28 - The Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child & Andrew Child - Jack Reacher 28 - Jack Reacher 28 - The Secret.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Murderbot Diaries 07 - System Collapse - Martha Wells

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 7.0 - Murderbot Diaries 07 - System Collapse.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 7.0 - Murderbot Diaries 07 - System Collapse.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 07 - System Collapse', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 7.0 - Murderbot Diaries 07 - System Collapse.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 07 - System Collapse', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 7.0 - Murderbot Diaries 07 - System Collapse.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Courtney 02 - The Sound of Thunder - Wilbur Smith

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wilbur Smith - Courtney 02 - Courtney 02 - The Sound of Thunder.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wilbur Smith - Courtney 02 - Courtney 02 - The Sound of Thunder.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 02 - The Sound of Thunder', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 02 - Courtney 02 - The Sound of Thunder.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 02 - The Sound of Thunder', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 02 - Courtney 02 - The Sound of Thunder.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Shetland 01 - Raven Black - Ann Cleeves

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ann Cleeves - Shetland 01 - Shetland 01 - Raven Black.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ann Cleeves - Shetland 01 - Shetland 01 - Raven Black.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Shetland 01 - Raven Black', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Shetland 01 - Shetland 01 - Raven Black.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Shetland 01 - Raven Black', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Shetland 01 - Shetland 01 - Raven Black.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Shetland 02 - White Nights - Ann Cleeves

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ann Cleeves - Shetland 02 - Shetland 02 - White Nights.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ann Cleeves - Shetland 02 - Shetland 02 - White Nights.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Shetland 02 - White Nights', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Shetland 02 - Shetland 02 - White Nights.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Shetland 02 - White Nights', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Shetland 02 - Shetland 02 - White Nights.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 05 - Sharpe's Prey - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 05 - Sharpe 05 - Sharpe_s Prey.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 05 - Sharpe 05 - Sharpe_s Prey.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 05 - Sharpe's Prey", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 05 - Sharpe 05 - Sharpe_s Prey.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 05 - Sharpe's Prey", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 05 - Sharpe 05 - Sharpe_s Prey.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Motherland - Maria Hummel

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Maria Hummel - Motherland.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Maria Hummel - Motherland.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Maria Hummel', 'DateLastRead': None, 'Title': 'Motherland', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Maria Hummel - Motherland.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Maria Hummel', 'DateLastRead': None, 'Title': 'Motherland', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Maria Hummel - Motherland.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Books of the Raksura 04 - Stories of the Raksura Vol 1. - Martha Wells

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Martha Wells - Books of the Raksura 04 - Books of the Raksura 04 - Stories of the Raksura Vol 1_.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Martha Wells - Books of the Raksura 04 - Books of the Raksura 04 - Stories of the Raksura Vol 1_.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Books of the Raksura 04 - Stories of the Raksura Vol 1.', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Books of the Raksura 04 - Books of the Raksura 04 - Stories of the Raksura Vol 1_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Books of the Raksura 04 - Stories of the Raksura Vol 1.', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Books of the Raksura 04 - Books of the Raksura 04 - Stories of the Raksura Vol 1_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lost Fleet 02 - Fearless - Jack Campbell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lost Fleet 02 - Fearless # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lost Fleet 02 - Fearless # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack Campbell', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lost Fleet 02 - Fearless', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lost Fleet 02 - Fearless # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack Campbell', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lost Fleet 02 - Fearless', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lost Fleet 02 - Fearless # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Slough House 01 - Slow Horses (Deluxe Edition) - Mick Herron

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mick Herron - Slough House 01 - Slough House 01 - Slow Horses (Deluxe Edition).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mick Herron - Slough House 01 - Slough House 01 - Slow Horses (Deluxe Edition).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Slow_Horses_Deluxe-6.xhtml#point(/1/4/54/1:521)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 4, 'Attribution': 'Mick Herron', 'DateLastRead': '2024-02-10T12:43:01Z', 'Title': 'Slough House 01 - Slow Horses (Deluxe Edition)', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mick Herron - Slough House 01 - Slough House 01 - Slow Horses (Deluxe Edition).epub', 'TimeSpentReading': 1579, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-02-10 12:43:01+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Realm of False Gods 0.5 - Live and Die by Magic - Steve Higgs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Steve Higgs - Realm of False Gods 0.5 - Realm of False Gods 0.5 - Live and Die by Magic.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Steve Higgs - Realm of False Gods 0.5 - Realm of False Gods 0.5 - Live and Die by Magic.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steve Higgs', 'DateLastRead': None, 'Title': 'Realm of False Gods 0.5 - Live and Die by Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Steve Higgs - Realm of False Gods 0.5 - Realm of False Gods 0.5 - Live and Die by Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steve Higgs', 'DateLastRead': None, 'Title': 'Realm of False Gods 0.5 - Live and Die by Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Steve Higgs - Realm of False Gods 0.5 - Realm of False Gods 0.5 - Live and Die by Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Realm of False Gods 01 - Untethered Magic - Higgs, Steve

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Higgs, Steve - Realm of False Gods 01 - Realm of False Gods 01 - Untethered Magic.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Higgs, Steve - Realm of False Gods 01 - Realm of False Gods 01 - Untethered Magic.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Higgs, Steve', 'DateLastRead': None, 'Title': 'Realm of False Gods 01 - Untethered Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Higgs, Steve - Realm of False Gods 01 - Realm of False Gods 01 - Untethered Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Higgs, Steve', 'DateLastRead': None, 'Title': 'Realm of False Gods 01 - Untethered Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Higgs, Steve - Realm of False Gods 01 - Realm of False Gods 01 - Untethered Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lost Fleet 03 - Courageous - Jack Campbell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lost Fleet 03 - Courageous # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lost Fleet 03 - Courageous # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack Campbell', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lost Fleet 03 - Courageous', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lost Fleet 03 - Courageous # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack Campbell', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lost Fleet 03 - Courageous', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lost Fleet 03 - Courageous # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Courtney 01 - When the Lion Feeds - Wilbur Smith

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wilbur Smith - Courtney 01 - Courtney 01 - When the Lion Feeds.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wilbur Smith - Courtney 01 - Courtney 01 - When the Lion Feeds.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 01 - When the Lion Feeds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 01 - Courtney 01 - When the Lion Feeds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 01 - When the Lion Feeds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 01 - Courtney 01 - When the Lion Feeds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Inspector Banks 03 - A Necessary End - Peter Robinson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Inspector Banks 03 - A Necessary End # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Inspector Banks 03 - A Necessary End # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter Robinson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Inspector Banks 03 - A Necessary End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Inspector Banks 03 - A Necessary End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter Robinson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Inspector Banks 03 - A Necessary End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Inspector Banks 03 - A Necessary End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Courtney 03 - A Sparrow Falls - Wilbur Smith

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wilbur Smith - Courtney 03 - Courtney 03 - A Sparrow Falls.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wilbur Smith - Courtney 03 - Courtney 03 - A Sparrow Falls.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 03 - A Sparrow Falls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 03 - Courtney 03 - A Sparrow Falls.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 03 - A Sparrow Falls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 03 - Courtney 03 - A Sparrow Falls.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Detective Kat Ballantyne 01 - The Seventh Girl - Andy Maslen

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Andy Maslen - Detective Kat Ballantyne 01 - Detective Kat Ballantyne 01 - The Seventh Girl.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Andy Maslen - Detective Kat Ballantyne 01 - Detective Kat Ballantyne 01 - The Seventh Girl.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Maslen', 'DateLastRead': None, 'Title': 'Detective Kat Ballantyne 01 - The Seventh Girl', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Andy Maslen - Detective Kat Ballantyne 01 - Detective Kat Ballantyne 01 - The Seventh Girl.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Maslen', 'DateLastRead': None, 'Title': 'Detective Kat Ballantyne 01 - The Seventh Girl', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Andy Maslen - Detective Kat Ballantyne 01 - Detective Kat Ballantyne 01 - The Seventh Girl.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Valdemar 01 - Arrows of the Queen - Mercedes Lackey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mercedes Lackey - Valdemar 01 - Valdemar 01 - Arrows of the Queen.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mercedes Lackey - Valdemar 01 - Valdemar 01 - Arrows of the Queen.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar 01 - Arrows of the Queen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar 01 - Valdemar 01 - Arrows of the Queen.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar 01 - Arrows of the Queen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar 01 - Valdemar 01 - Arrows of the Queen.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 06 - Sharpe's Rifles - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 06 - Sharpe 06 - Sharpe_s Rifles.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 06 - Sharpe 06 - Sharpe_s Rifles.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 06 - Sharpe's Rifles", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 06 - Sharpe 06 - Sharpe_s Rifles.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 06 - Sharpe's Rifles", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 06 - Sharpe 06 - Sharpe_s Rifles.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 07 - Sharpe's Havoc - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 07 - Sharpe 07 - Sharpe_s Havoc.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 07 - Sharpe 07 - Sharpe_s Havoc.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 07 - Sharpe's Havoc", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 07 - Sharpe 07 - Sharpe_s Havoc.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 07 - Sharpe's Havoc", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 07 - Sharpe 07 - Sharpe_s Havoc.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 01 - Old Man's War - John Scalzi

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 01 - Old Man_s War 01 - Old Man_s War.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 01 - Old Man_s War 01 - Old Man_s War.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 01 - Old Man's War", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 01 - Old Man_s War 01 - Old Man_s War.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 01 - Old Man's War", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 01 - Old Man_s War 01 - Old Man_s War.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Martini Club 01 - The Spy Coast - Tess Gerritsen

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tess Gerritsen - Martini Club 01 - Martini Club 01 - The Spy Coast.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tess Gerritsen - Martini Club 01 - Martini Club 01 - The Spy Coast.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tess Gerritsen', 'DateLastRead': None, 'Title': 'Martini Club 01 - The Spy Coast', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tess Gerritsen - Martini Club 01 - Martini Club 01 - The Spy Coast.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tess Gerritsen', 'DateLastRead': None, 'Title': 'Martini Club 01 - The Spy Coast', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tess Gerritsen - Martini Club 01 - Martini Club 01 - The Spy Coast.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 01.5 - Questions for a Soldier - John Scalzi

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 1.5 - Old Man_s War 01.5 - Questions for a Soldier.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 1.5 - Old Man_s War 01.5 - Questions for a Soldier.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 01.5 - Questions for a Soldier", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 1.5 - Old Man_s War 01.5 - Questions for a Soldier.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 01.5 - Questions for a Soldier", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 1.5 - Old Man_s War 01.5 - Questions for a Soldier.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 08 - Sharpe's Eagle - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 08 - Sharpe 08 - Sharpe_s Eagle.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 08 - Sharpe 08 - Sharpe_s Eagle.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 08 - Sharpe's Eagle", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 08 - Sharpe 08 - Sharpe_s Eagle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 08 - Sharpe's Eagle", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 08 - Sharpe 08 - Sharpe_s Eagle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: In Death 58 - Random in Death - J. D. Robb

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 58 - In Death 58 - Random in Death.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 58 - In Death 58 - Random in Death.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 58 - Random in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 58 - In Death 58 - Random in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 58 - Random in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 58 - In Death 58 - Random in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Cuckoo's Child - Margaret Thompson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Cuckoo_s Child # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Cuckoo_s Child # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Margaret Thompson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "The Cuckoo's Child", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Cuckoo_s Child # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Margaret Thompson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "The Cuckoo's Child", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Cuckoo_s Child # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Once We Were Brothers - Ronald H. Balson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Once We Were Brothers # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Once We Were Brothers # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ronald H. Balson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Once We Were Brothers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Once We Were Brothers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ronald H. Balson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Once We Were Brothers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Once We Were Brothers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 09 - Sharpe's Gold - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 09 - Sharpe 09 - Sharpe_s Gold.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 09 - Sharpe 09 - Sharpe_s Gold.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 09 - Sharpe's Gold", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 09 - Sharpe 09 - Sharpe_s Gold.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 09 - Sharpe's Gold", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 09 - Sharpe 09 - Sharpe_s Gold.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 10 - Sharpe's Escape - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 10 - Sharpe 10 - Sharpe_s Escape.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 10 - Sharpe 10 - Sharpe_s Escape.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 10 - Sharpe's Escape", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 10 - Sharpe 10 - Sharpe_s Escape.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 10 - Sharpe's Escape", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 10 - Sharpe 10 - Sharpe_s Escape.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 11 - Sharpe's Fury - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 11 - Sharpe 11 - Sharpe_s Fury.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 11 - Sharpe 11 - Sharpe_s Fury.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 11 - Sharpe's Fury", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 11 - Sharpe 11 - Sharpe_s Fury.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 11 - Sharpe's Fury", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 11 - Sharpe 11 - Sharpe_s Fury.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Thursday Next 02 - Lost in a Good Book - Jasper Fforde

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jasper Fforde - Thursday Next 02 - Thursday Next 02 - Lost in a Good Book.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jasper Fforde - Thursday Next 02 - Thursday Next 02 - Lost in a Good Book.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jasper Fforde', 'DateLastRead': None, 'Title': 'Thursday Next 02 - Lost in a Good Book', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jasper Fforde - Thursday Next 02 - Thursday Next 02 - Lost in a Good Book.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jasper Fforde', 'DateLastRead': None, 'Title': 'Thursday Next 02 - Lost in a Good Book', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jasper Fforde - Thursday Next 02 - Thursday Next 02 - Lost in a Good Book.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 04 - Zoe's Tale - John Scalzi

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 04 - Old Man_s War 04 - Zoe_s Tale.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 04 - Old Man_s War 04 - Zoe_s Tale.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 04 - Zoe's Tale", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 04 - Old Man_s War 04 - Zoe_s Tale.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 04 - Zoe's Tale", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 04 - Old Man_s War 04 - Zoe_s Tale.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 02.5 - The Sagan Diary - John Scalzi

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 2.5 - Old Man_s War 02.5 - The Sagan Diary.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 2.5 - Old Man_s War 02.5 - The Sagan Diary.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 02.5 - The Sagan Diary", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 2.5 - Old Man_s War 02.5 - The Sagan Diary.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 02.5 - The Sagan Diary", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 2.5 - Old Man_s War 02.5 - The Sagan Diary.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 03 - The Last Colony - John Scalzi

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 03 - Old Man_s War 03 - The Last Colony.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 03 - Old Man_s War 03 - The Last Colony.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 03 - The Last Colony", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 03 - Old Man_s War 03 - The Last Colony.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 03 - The Last Colony", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 03 - Old Man_s War 03 - The Last Colony.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 05 - The Human Division - John Scalzi

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 05 - Old Man_s War 05 - The Human Division.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 05 - Old Man_s War 05 - The Human Division.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 05 - The Human Division", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 05 - Old Man_s War 05 - The Human Division.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 05 - The Human Division", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 05 - Old Man_s War 05 - The Human Division.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 06 - The End of All Things - John Scalzi

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 06 - Old Man_s War 06 - The End of All Things.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 06 - Old Man_s War 06 - The End of All Things.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 06 - The End of All Things", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 06 - Old Man_s War 06 - The End of All Things.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 06 - The End of All Things", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 06 - Old Man_s War 06 - The End of All Things.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 14 - The Good, The Bad and The History - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14 - Chronicles of St Mary_s 14 - The Good, The Bad and The History.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14 - Chronicles of St Mary_s 14 - The Good, The Bad and The History.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 14 - The Good, The Bad and The History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14 - Chronicles of St Mary_s 14 - The Good, The Bad and The History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 14 - The Good, The Bad and The History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14 - Chronicles of St Mary_s 14 - The Good, The Bad and The History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Time Police 03 - Saving Time - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 03 - Time Police 03 - Saving Time.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 03 - Time Police 03 - Saving Time.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 03 - Saving Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 03 - Time Police 03 - Saving Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 03 - Saving Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 03 - Time Police 03 - Saving Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 12 - Another Time, Another Place - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12 - Chronicles of St Mary_s 12 - Another Time, Another Place.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12 - Chronicles of St Mary_s 12 - Another Time, Another Place.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 12 - Another Time, Another Place", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12 - Chronicles of St Mary_s 12 - Another Time, Another Place.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 12 - Another Time, Another Place", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12 - Chronicles of St Mary_s 12 - Another Time, Another Place.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 07 - Lies, Damned Lies, and History - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 07 - Chronicles of St Mary_s 07 - Lies, Damned Lies, and History.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 07 - Chronicles of St Mary_s 07 - Lies, Damned Lies, and History.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07 - Lies, Damned Lies, and History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 07 - Chronicles of St Mary_s 07 - Lies, Damned Lies, and History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07 - Lies, Damned Lies, and History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 07 - Chronicles of St Mary_s 07 - Lies, Damned Lies, and History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 07.6 - My Name is Markham - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.6 - Chronicles of St Mary_s 07.6 - My Name is Markham.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.6 - Chronicles of St Mary_s 07.6 - My Name is Markham.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.6 - My Name is Markham", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.6 - Chronicles of St Mary_s 07.6 - My Name is Markham.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.6 - My Name is Markham", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.6 - Chronicles of St Mary_s 07.6 - My Name is Markham.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 08 - And the Rest Is History - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 08 - Chronicles of St Mary_s 08 - And the Rest Is History.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 08 - Chronicles of St Mary_s 08 - And the Rest Is History.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08 - And the Rest Is History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 08 - Chronicles of St Mary_s 08 - And the Rest Is History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08 - And the Rest Is History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 08 - Chronicles of St Mary_s 08 - And the Rest Is History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 08.6 - A Perfect Storm - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.6 - Chronicles of St Mary_s 08.6 - A Perfect Storm.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.6 - Chronicles of St Mary_s 08.6 - A Perfect Storm.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.6 - A Perfect Storm", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.6 - Chronicles of St Mary_s 08.6 - A Perfect Storm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.6 - A Perfect Storm", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.6 - Chronicles of St Mary_s 08.6 - A Perfect Storm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 08.7 - Christmas Past - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.7 - Chronicles of St Mary_s 08.7 - Christmas Past.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.7 - Chronicles of St Mary_s 08.7 - Christmas Past.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.7 - Christmas Past", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.7 - Chronicles of St Mary_s 08.7 - Christmas Past.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.7 - Christmas Past", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.7 - Chronicles of St Mary_s 08.7 - Christmas Past.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 09 - An Argumentation of Historians - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 09 - Chronicles of St Mary_s 09 - An Argumentation of Historians.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 09 - Chronicles of St Mary_s 09 - An Argumentation of Historians.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09 - An Argumentation of Historians", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 09 - Chronicles of St Mary_s 09 - An Argumentation of Historians.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09 - An Argumentation of Historians", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 09 - Chronicles of St Mary_s 09 - An Argumentation of Historians.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 09.5 - The Battersea Barricades - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.5 - Chronicles of St Mary_s 09.5 - The Battersea Barricades.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.5 - Chronicles of St Mary_s 09.5 - The Battersea Barricades.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.5 - The Battersea Barricades", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.5 - Chronicles of St Mary_s 09.5 - The Battersea Barricades.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.5 - The Battersea Barricades", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.5 - Chronicles of St Mary_s 09.5 - The Battersea Barricades.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 09.6 - The Steam Pump Jump - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.6 - Chronicles of St Mary_s 09.6 - The Steam Pump Jump.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.6 - Chronicles of St Mary_s 09.6 - The Steam Pump Jump.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.6 - The Steam Pump Jump", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.6 - Chronicles of St Mary_s 09.6 - The Steam Pump Jump.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.6 - The Steam Pump Jump", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.6 - Chronicles of St Mary_s 09.6 - The Steam Pump Jump.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 10.5 - When Did You Last See Your Father? - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.5 - Chronicles of St Mary_s 10.5 - When Did You Last See Your Father_.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.5 - Chronicles of St Mary_s 10.5 - When Did You Last See Your Father_.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10.5 - When Did You Last See Your Father?", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.5 - Chronicles of St Mary_s 10.5 - When Did You Last See Your Father_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10.5 - When Did You Last See Your Father?", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.5 - Chronicles of St Mary_s 10.5 - When Did You Last See Your Father_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 11 - Plan for the Worst - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11 - Chronicles of St Mary_s 11 - Plan for the Worst.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11 - Chronicles of St Mary_s 11 - Plan for the Worst.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11 - Plan for the Worst", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11 - Chronicles of St Mary_s 11 - Plan for the Worst.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11 - Plan for the Worst", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11 - Chronicles of St Mary_s 11 - Plan for the Worst.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 11.5 - The Ordeal of the Haunted Room - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.5 - Chronicles of St Mary_s 11.5 - The Ordeal of the Haunted Room.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.5 - Chronicles of St Mary_s 11.5 - The Ordeal of the Haunted Room.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11.5 - The Ordeal of the Haunted Room", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.5 - Chronicles of St Mary_s 11.5 - The Ordeal of the Haunted Room.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11.5 - The Ordeal of the Haunted Room", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.5 - Chronicles of St Mary_s 11.5 - The Ordeal of the Haunted Room.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 12.5 - The Toast of Time - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12.5 - Chronicles of St Mary_s 12.5 - The Toast of Time.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12.5 - Chronicles of St Mary_s 12.5 - The Toast of Time.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 12.5 - The Toast of Time", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12.5 - Chronicles of St Mary_s 12.5 - The Toast of Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 12.5 - The Toast of Time", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12.5 - Chronicles of St Mary_s 12.5 - The Toast of Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 13 - A Catalogue of Catastrophe - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 13 - Chronicles of St Mary_s 13 - A Catalogue of Catastrophe.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 13 - Chronicles of St Mary_s 13 - A Catalogue of Catastrophe.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 13 - A Catalogue of Catastrophe", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 13 - Chronicles of St Mary_s 13 - A Catalogue of Catastrophe.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 13 - A Catalogue of Catastrophe", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 13 - Chronicles of St Mary_s 13 - A Catalogue of Catastrophe.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 10 - Hope for the Best - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10 - Chronicles of St Mary_s 10 - Hope for the Best.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10 - Chronicles of St Mary_s 10 - Hope for the Best.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10 - Hope for the Best", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10 - Chronicles of St Mary_s 10 - Hope for the Best.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10 - Hope for the Best", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10 - Chronicles of St Mary_s 10 - Hope for the Best.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Shōgun - James Clavell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James Clavell - Asian Saga 01 - Shogun.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James Clavell - Asian Saga 01 - Shogun.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Clavell', 'DateLastRead': None, 'Title': 'Shōgun', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Clavell - Asian Saga 01 - Shogun.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Clavell', 'DateLastRead': None, 'Title': 'Shōgun', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Clavell - Asian Saga 01 - Shogun.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Empyrean 01 - Fourth Wing - Rebecca Yarros

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rebecca Yarros - Empyrean 01 - Empyrean 01 - Fourth Wing.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rebecca Yarros - Empyrean 01 - Empyrean 01 - Fourth Wing.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter04.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 11, 'Attribution': 'Rebecca Yarros', 'DateLastRead': '2025-02-13T17:11:34Z', 'Title': 'Empyrean 01 - Fourth Wing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rebecca Yarros - Empyrean 01 - Empyrean 01 - Fourth Wing.epub', 'TimeSpentReading': 1398, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-02-13 17:11:34+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 03.5 - The Vessel - Taylor Stevens

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 03.5 - The Vessel # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 03.5 - The Vessel # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 03.5 - The Vessel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 03.5 - The Vessel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 03.5 - The Vessel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 03.5 - The Vessel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 07.5 - The Great St Mary's Day Out - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.5 - Chronicles of St Mary_s 07.5 - The Great St Mary_s Day Out.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.5 - Chronicles of St Mary_s 07.5 - The Great St Mary_s Day Out.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.5 - The Great St Mary's Day Out", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.5 - Chronicles of St Mary_s 07.5 - The Great St Mary_s Day Out.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.5 - The Great St Mary's Day Out", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.5 - Chronicles of St Mary_s 07.5 - The Great St Mary_s Day Out.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 07.7 - Dessicated Water - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.7 - Chronicles of St Mary_s 07.7 - Dessicated Water.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.7 - Chronicles of St Mary_s 07.7 - Dessicated Water.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.7 - Dessicated Water", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.7 - Chronicles of St Mary_s 07.7 - Dessicated Water.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.7 - Dessicated Water", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.7 - Chronicles of St Mary_s 07.7 - Dessicated Water.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 12 - Sharpe's Battle - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 12 - Sharpe 12 - Sharpe_s Battle.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 12 - Sharpe 12 - Sharpe_s Battle.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 12 - Sharpe's Battle", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 12 - Sharpe 12 - Sharpe_s Battle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 12 - Sharpe's Battle", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 12 - Sharpe 12 - Sharpe_s Battle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 08.5 - Markham and the Anal Probing - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.5 - Chronicles of St Mary_s 08.5 - Markham and the Anal Probing.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.5 - Chronicles of St Mary_s 08.5 - Markham and the Anal Probing.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.5 - Markham and the Anal Probing", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.5 - Chronicles of St Mary_s 08.5 - Markham and the Anal Probing.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.5 - Markham and the Anal Probing", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.5 - Chronicles of St Mary_s 08.5 - Markham and the Anal Probing.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 09.7 - And Now For Something Completely Different - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.7 - Chronicles of St Mary_s 09.7 - And Now For Something Completely Different.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.7 - Chronicles of St Mary_s 09.7 - And Now For Something Completely Different.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.7 - And Now For Something Completely Different", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.7 - Chronicles of St Mary_s 09.7 - And Now For Something Completely Different.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.7 - And Now For Something Completely Different", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.7 - Chronicles of St Mary_s 09.7 - And Now For Something Completely Different.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Remembrance of Earth's Past 01 - The Three-Body Problem - Cixin Liu

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cixin Liu - Remembrance of Earth_s Past 01 - Remembrance of Earth_s Past 01 - The Three-Body Problem.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cixin Liu - Remembrance of Earth_s Past 01 - Remembrance of Earth_s Past 01 - The Three-Body Problem.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter2.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'Cixin Liu', 'DateLastRead': '2024-04-21T22:05:36Z', 'Title': "Remembrance of Earth's Past 01 - The Three-Body Problem", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cixin Liu - Remembrance of Earth_s Past 01 - Remembrance of Earth_s Past 01 - The Three-Body Problem.epub', 'TimeSpentReading': 3054, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-04-21 22:05:36+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Two Rivers 01 - The Long Call - Ann Cleeves

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ann Cleeves - Two Rivers 01 - Two Rivers 01 - The Long Call.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ann Cleeves - Two Rivers 01 - Two Rivers 01 - The Long Call.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Two Rivers 01 - The Long Call', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Two Rivers 01 - Two Rivers 01 - The Long Call.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Two Rivers 01 - The Long Call', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Two Rivers 01 - Two Rivers 01 - The Long Call.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Time Police 01 - Doing Time - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 01 - Time Police 01 - Doing Time.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 01 - Time Police 01 - Doing Time.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 01 - Doing Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 01 - Time Police 01 - Doing Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 01 - Doing Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 01 - Time Police 01 - Doing Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Time Police 02 - Hard Time - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 02 - Time Police 02 - Hard Time.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 02 - Time Police 02 - Hard Time.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 02 - Hard Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 02 - Time Police 02 - Hard Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 02 - Hard Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 02 - Time Police 02 - Hard Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 13 - Sharpe's Company - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 13 - Sharpe 13 - Sharpe_s Company.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 13 - Sharpe 13 - Sharpe_s Company.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 13 - Sharpe's Company", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 13 - Sharpe 13 - Sharpe_s Company.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 13 - Sharpe's Company", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 13 - Sharpe 13 - Sharpe_s Company.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 10.6 - Why is Nothing Ever Simple? - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.6 - Chronicles of St Mary_s 10.6 - Why is Nothing Ever Simple_.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.6 - Chronicles of St Mary_s 10.6 - Why is Nothing Ever Simple_.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10.6 - Why is Nothing Ever Simple?", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.6 - Chronicles of St Mary_s 10.6 - Why is Nothing Ever Simple_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10.6 - Why is Nothing Ever Simple?", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.6 - Chronicles of St Mary_s 10.6 - Why is Nothing Ever Simple_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Ellery Queen 01 - Roman Hat Mystery - Ellery Queen

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ellery Queen - Ellery Queen 01 - Ellery Queen 01 - Roman Hat Mystery.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ellery Queen - Ellery Queen 01 - Ellery Queen 01 - Roman Hat Mystery.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ellery Queen', 'DateLastRead': None, 'Title': 'Ellery Queen 01 - Roman Hat Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ellery Queen - Ellery Queen 01 - Ellery Queen 01 - Roman Hat Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ellery Queen', 'DateLastRead': None, 'Title': 'Ellery Queen 01 - Roman Hat Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ellery Queen - Ellery Queen 01 - Ellery Queen 01 - Roman Hat Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Familiar - Leigh Bardugo

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Leigh Bardugo - The Familiar.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Leigh Bardugo - The Familiar.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': None, 'Title': 'The Familiar', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Leigh Bardugo - The Familiar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': None, 'Title': 'The Familiar', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Leigh Bardugo - The Familiar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Tattooist of Auschwitz - Heather Morris

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Heather Morris - The Tattooist of Auschwitz.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Heather Morris - The Tattooist of Auschwitz.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Heather Morris', 'DateLastRead': None, 'Title': 'The Tattooist of Auschwitz', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Heather Morris - The Tattooist of Auschwitz.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Heather Morris', 'DateLastRead': None, 'Title': 'The Tattooist of Auschwitz', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Heather Morris - The Tattooist of Auschwitz.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Hyperion Cantos 02 - The Fall of Hyperion - Dan Simmons

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 02 - Hyperion Cantos 02 - The Fall of Hyperion.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 02 - Hyperion Cantos 02 - The Fall of Hyperion.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 02 - The Fall of Hyperion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 02 - Hyperion Cantos 02 - The Fall of Hyperion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 02 - The Fall of Hyperion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 02 - Hyperion Cantos 02 - The Fall of Hyperion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 04 - The Catch - Taylor Stevens

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 04 - The Catch # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 04 - The Catch # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 04 - The Catch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 04 - The Catch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 04 - The Catch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 04 - The Catch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 11.6 - The Muse of History - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.6 - Chronicles of St Mary_s 11.6 - The Muse of History.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.6 - Chronicles of St Mary_s 11.6 - The Muse of History.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11.6 - The Muse of History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.6 - Chronicles of St Mary_s 11.6 - The Muse of History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11.6 - The Muse of History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.6 - Chronicles of St Mary_s 11.6 - The Muse of History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Century 03 - Edge of Eternity - Ken Follett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Century 03 - Edge of Eternity # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Century 03 - Edge of Eternity # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Century 03 - Edge of Eternity', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 03 - Edge of Eternity # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Century 03 - Edge of Eternity', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 03 - Edge of Eternity # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 14.5 - Christmas Pie - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14.5 - Chronicles of St Mary_s 14.5 - Christmas Pie.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14.5 - Chronicles of St Mary_s 14.5 - Christmas Pie.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 14.5 - Christmas Pie", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14.5 - Chronicles of St Mary_s 14.5 - Christmas Pie.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 14.5 - Christmas Pie", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14.5 - Chronicles of St Mary_s 14.5 - Christmas Pie.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Time Police 04.5 - Santa Grint - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 4.5 - Time Police 04.5 - Santa Grint.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 4.5 - Time Police 04.5 - Santa Grint.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 04.5 - Santa Grint', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 4.5 - Time Police 04.5 - Santa Grint.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 04.5 - Santa Grint', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 4.5 - Time Police 04.5 - Santa Grint.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Time Police 04 - About Time - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 04 - Time Police 04 - About Time.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 04 - Time Police 04 - About Time.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 04 - About Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 04 - Time Police 04 - About Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 04 - About Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 04 - Time Police 04 - About Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Liaden 01 - Dragon Tide - Sharon Lee & Steve Miller

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Liaden 01 - Dragon Tide # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Liaden 01 - Dragon Tide # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sharon Lee & Steve Miller', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Liaden 01 - Dragon Tide', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Liaden 01 - Dragon Tide # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sharon Lee & Steve Miller', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Liaden 01 - Dragon Tide', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Liaden 01 - Dragon Tide # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Hyperion Cantos 01 - Hyperion - Dan Simmons

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 01 - Hyperion Cantos 01 - Hyperion.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 01 - Hyperion Cantos 01 - Hyperion.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 01 - Hyperion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 01 - Hyperion Cantos 01 - Hyperion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 01 - Hyperion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 01 - Hyperion Cantos 01 - Hyperion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: John Rebus 02 - Hide and Seek - Ian Rankin

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ian Rankin - John Rebus 02 - John Rebus 02 - Hide and Seek.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ian Rankin - John Rebus 02 - John Rebus 02 - Hide and Seek.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 02 - Hide and Seek', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 02 - John Rebus 02 - Hide and Seek.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 02 - Hide and Seek', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 02 - John Rebus 02 - Hide and Seek.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: John Rebus 01 - Knots and Crosses - Ian Rankin

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ian Rankin - John Rebus 01 - John Rebus 01 - Knots and Crosses.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ian Rankin - John Rebus 01 - John Rebus 01 - Knots and Crosses.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/Chapter07.xhtml#point(/1/4/158/1:173)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 25, 'Attribution': 'Ian Rankin', 'DateLastRead': '2024-10-15T22:15:29Z', 'Title': 'John Rebus 01 - Knots and Crosses', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 01 - John Rebus 01 - Knots and Crosses.epub', 'TimeSpentReading': 5296, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-10-15 22:15:29+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: John Rebus 03 - Tooth and Nail - Ian Rankin

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ian Rankin - John Rebus 03 - John Rebus 03 - Tooth and Nail.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ian Rankin - John Rebus 03 - John Rebus 03 - Tooth and Nail.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 03 - Tooth and Nail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 03 - John Rebus 03 - Tooth and Nail.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 03 - Tooth and Nail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 03 - John Rebus 03 - Tooth and Nail.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: John Rebus 04 - Strip Jack - Ian Rankin

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ian Rankin - John Rebus 04 - John Rebus 04 - Strip Jack.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ian Rankin - John Rebus 04 - John Rebus 04 - Strip Jack.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 04 - Strip Jack', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 04 - John Rebus 04 - Strip Jack.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 04 - Strip Jack', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 04 - John Rebus 04 - Strip Jack.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Time Police 05 - Killing Time - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 05 - Time Police 05 - Killing Time.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 05 - Time Police 05 - Killing Time.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 05 - Killing Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 05 - Time Police 05 - Killing Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 05 - Killing Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 05 - Time Police 05 - Killing Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Stone Barrington 01 - New York Dead - Stuart Woods

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stuart Woods - Stone Barrington 01 - Stone Barrington 01 - New York Dead.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stuart Woods - Stone Barrington 01 - Stone Barrington 01 - New York Dead.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stuart Woods', 'DateLastRead': None, 'Title': 'Stone Barrington 01 - New York Dead', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stuart Woods - Stone Barrington 01 - Stone Barrington 01 - New York Dead.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stuart Woods', 'DateLastRead': None, 'Title': 'Stone Barrington 01 - New York Dead', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stuart Woods - Stone Barrington 01 - Stone Barrington 01 - New York Dead.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Dead Zone - Stephen King

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stephen King - The Dead Zone.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stephen King - The Dead Zone.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'The Dead Zone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - The Dead Zone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'The Dead Zone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - The Dead Zone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: 5th Wave 01 - The 5th Wave - Rick Yancey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/5th Wave 01 - The 5th Wave # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/5th Wave 01 - The 5th Wave # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/xhtml/intrusion.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Rick Yancey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': '5th Wave 01 - The 5th Wave', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/5th Wave 01 - The 5th Wave # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Roger the Chapman 05 - Eve of Saint Hyacinth - Kate Sedley

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 05 - Roger the Chapman 05 - Eve of Saint Hyacinth.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 05 - Roger the Chapman 05 - Eve of Saint Hyacinth.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Sedley', 'DateLastRead': None, 'Title': 'Roger the Chapman 05 - Eve of Saint Hyacinth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 05 - Roger the Chapman 05 - Eve of Saint Hyacinth.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Sedley', 'DateLastRead': None, 'Title': 'Roger the Chapman 05 - Eve of Saint Hyacinth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 05 - Roger the Chapman 05 - Eve of Saint Hyacinth.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Roger the Chapman 01 - Death and the Chapman - Kate Sedley

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 01 - Roger the Chapman 01 - Death and the Chapman.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 01 - Roger the Chapman 01 - Death and the Chapman.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Sedley', 'DateLastRead': None, 'Title': 'Roger the Chapman 01 - Death and the Chapman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 01 - Roger the Chapman 01 - Death and the Chapman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Sedley', 'DateLastRead': None, 'Title': 'Roger the Chapman 01 - Death and the Chapman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 01 - Roger the Chapman 01 - Death and the Chapman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 09 - One Shot - Lee Child

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 09 - Jack Reacher 09 - One Shot.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 09 - Jack Reacher 09 - One Shot.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 09 - One Shot', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 09 - Jack Reacher 09 - One Shot.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 09 - One Shot', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 09 - Jack Reacher 09 - One Shot.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Firm 02 - The Exchange: After the Firm - John Grisham

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Grisham - Firm 02 - Firm 02 - The Exchange_ After the Firm.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Grisham - Firm 02 - Firm 02 - The Exchange_ After the Firm.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': None, 'Title': 'Firm 02 - The Exchange: After the Firm', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Grisham - Firm 02 - Firm 02 - The Exchange_ After the Firm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': None, 'Title': 'Firm 02 - The Exchange: After the Firm', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Grisham - Firm 02 - Firm 02 - The Exchange_ After the Firm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Firm 01 - The Firm - John Grisham

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Grisham - Firm 01 - Firm 01 - The Firm.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Grisham - Firm 01 - Firm 01 - The Firm.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': None, 'Title': 'Firm 01 - The Firm', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Grisham - Firm 01 - Firm 01 - The Firm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': None, 'Title': 'Firm 01 - The Firm', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Grisham - Firm 01 - Firm 01 - The Firm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 10 - The Hard Way - Lee Child

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 10 - Jack Reacher 10 - The Hard Way.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 10 - Jack Reacher 10 - The Hard Way.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 10 - The Hard Way', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 10 - Jack Reacher 10 - The Hard Way.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 10 - The Hard Way', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 10 - Jack Reacher 10 - The Hard Way.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lucy Kincaid 0.5 - Love Is Murder - Allison Brennan

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Allison Brennan - Lucy Kincaid 0.5 - Lucy Kincaid 0.5 - Love Is Murder.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Allison Brennan - Lucy Kincaid 0.5 - Lucy Kincaid 0.5 - Love Is Murder.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Bren_9780345527998_epub_c01_r1.htm#point(/1/4/46/1:475)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 8, 'Attribution': 'Allison Brennan', 'DateLastRead': '2024-08-06T11:28:02Z', 'Title': 'Lucy Kincaid 0.5 - Love Is Murder', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - Lucy Kincaid 0.5 - Lucy Kincaid 0.5 - Love Is Murder.epub', 'TimeSpentReading': 2486, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-08-06 11:28:02+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Predator 02 - The Hunt - Allison Brennan

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Allison Brennan - Predator 02 - Predator 02 - The Hunt.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Allison Brennan - Predator 02 - Predator 02 - The Hunt.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Allison Brennan', 'DateLastRead': None, 'Title': 'Predator 02 - The Hunt', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - Predator 02 - Predator 02 - The Hunt.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Allison Brennan', 'DateLastRead': None, 'Title': 'Predator 02 - The Hunt', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - Predator 02 - Predator 02 - The Hunt.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Predator 03 - The Kill - Allison Brennan

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Allison Brennan - Predator 03 - Predator 03 - The Kill.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Allison Brennan - Predator 03 - Predator 03 - The Kill.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Allison Brennan', 'DateLastRead': None, 'Title': 'Predator 03 - The Kill', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - Predator 03 - Predator 03 - The Kill.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Allison Brennan', 'DateLastRead': None, 'Title': 'Predator 03 - The Kill', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - Predator 03 - Predator 03 - The Kill.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Predator 01 - The Prey - Allison Brennan

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Allison Brennan - The Prey 01 - Predator 01 - The Prey.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Allison Brennan - The Prey 01 - Predator 01 - The Prey.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/Bren_9780345490766_epub_prl_r1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Allison Brennan', 'DateLastRead': '2024-08-08T10:59:14Z', 'Title': 'Predator 01 - The Prey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - The Prey 01 - Predator 01 - The Prey.epub', 'TimeSpentReading': 187, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-08-08 10:59:14+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Court of Thorns and Roses 01 - A Court of Thorns and Roses - Sarah J. Maas

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sarah J. Maas - Court of Thorns and Roses 01 - Court of Thorns and Roses 01 - A Court of Thorns and Roses.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sarah J. Maas - Court of Thorns and Roses 01 - Court of Thorns and Roses 01 - A Court of Thorns and Roses.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'ops/xhtml/ch7.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 15, 'Attribution': 'Sarah J. Maas', 'DateLastRead': '2024-08-28T19:14:23Z', 'Title': 'Court of Thorns and Roses 01 - A Court of Thorns and Roses', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah J. Maas - Court of Thorns and Roses 01 - Court of Thorns and Roses 01 - A Court of Thorns and Roses.epub', 'TimeSpentReading': 7851, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-08-28 19:14:23+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Bern Saga 02 - Molly Fyde and the Land of Light - Hugh Howey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bern Saga 02 - Molly Fyde and the Land of Light # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bern Saga 02 - Molly Fyde and the Land of Light # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Hugh Howey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Bern Saga 02 - Molly Fyde and the Land of Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bern Saga 02 - Molly Fyde and the Land of Light # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Hugh Howey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Bern Saga 02 - Molly Fyde and the Land of Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bern Saga 02 - Molly Fyde and the Land of Light # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 12 - Nothing to Lose - Lee Child

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 12 - Jack Reacher 12 - Nothing to Lose.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 12 - Jack Reacher 12 - Nothing to Lose.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 12 - Nothing to Lose', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 12 - Jack Reacher 12 - Nothing to Lose.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 12 - Nothing to Lose', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 12 - Jack Reacher 12 - Nothing to Lose.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 11 - Bad Luck and Trouble - Lee Child

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 11 - Jack Reacher 11 - Bad Luck and Trouble.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 11 - Jack Reacher 11 - Bad Luck and Trouble.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 11 - Bad Luck and Trouble', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 11 - Jack Reacher 11 - Bad Luck and Trouble.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 11 - Bad Luck and Trouble', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 11 - Jack Reacher 11 - Bad Luck and Trouble.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 13 - Gone Tomorrow - Lee Child

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 13 - Jack Reacher 13 - Gone Tomorrow.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 13 - Jack Reacher 13 - Gone Tomorrow.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 13 - Gone Tomorrow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 13 - Jack Reacher 13 - Gone Tomorrow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 13 - Gone Tomorrow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 13 - Jack Reacher 13 - Gone Tomorrow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 14 - 61 Hours - Lee Child

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 14 - Jack Reacher 14 - 61 Hours.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 14 - Jack Reacher 14 - 61 Hours.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 14 - 61 Hours', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 14 - Jack Reacher 14 - 61 Hours.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 14 - 61 Hours', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 14 - Jack Reacher 14 - 61 Hours.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 15 - Worth Dying For - Lee Child

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 15 - Jack Reacher 15 - Worth Dying For.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 15 - Jack Reacher 15 - Worth Dying For.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 15 - Worth Dying For', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 15 - Jack Reacher 15 - Worth Dying For.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 15 - Worth Dying For', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 15 - Jack Reacher 15 - Worth Dying For.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Oldest Starfighter 01 - The Oldest Starfighter - Jamie McFarlane

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jamie McFarlane - Oldest tarfighter 01 - Oldest Starfighter 01 - The Oldest Starfighter.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jamie McFarlane - Oldest tarfighter 01 - Oldest Starfighter 01 - The Oldest Starfighter.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jamie McFarlane', 'DateLastRead': None, 'Title': 'Oldest Starfighter 01 - The Oldest Starfighter', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jamie McFarlane - Oldest tarfighter 01 - Oldest Starfighter 01 - The Oldest Starfighter.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jamie McFarlane', 'DateLastRead': None, 'Title': 'Oldest Starfighter 01 - The Oldest Starfighter', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jamie McFarlane - Oldest tarfighter 01 - Oldest Starfighter 01 - The Oldest Starfighter.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: In Death 59 - Passions in Death - J. D. Robb

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 59 - In Death 59 - Passions in Death.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 59 - In Death 59 - Passions in Death.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 59 - Passions in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 59 - In Death 59 - Passions in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 59 - Passions in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 59 - In Death 59 - Passions in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sanchez & Heron 01 - Fatal Intrusion - Jeffrey Deaver & Isabella Maldonado

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeffrey Deaver & Isabella Maldonado - Sanchez & Heron 01 - Sanchez & Heron 01 - Fatal Intrusion.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeffrey Deaver & Isabella Maldonado - Sanchez & Heron 01 - Sanchez & Heron 01 - Fatal Intrusion.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Deaver & Isabella Maldonado', 'DateLastRead': None, 'Title': 'Sanchez & Heron 01 - Fatal Intrusion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Deaver & Isabella Maldonado - Sanchez & Heron 01 - Sanchez & Heron 01 - Fatal Intrusion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Deaver & Isabella Maldonado', 'DateLastRead': None, 'Title': 'Sanchez & Heron 01 - Fatal Intrusion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Deaver & Isabella Maldonado - Sanchez & Heron 01 - Sanchez & Heron 01 - Fatal Intrusion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 15 - Sharpe's Sword - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15 - Sharpe 15 - Sharpe_s Sword.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15 - Sharpe 15 - Sharpe_s Sword.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 15 - Sharpe's Sword", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15 - Sharpe 15 - Sharpe_s Sword.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 15 - Sharpe's Sword", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15 - Sharpe 15 - Sharpe_s Sword.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 16 - Sharpe's Enemy - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 16 - Sharpe 16 - Sharpe_s Enemy.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 16 - Sharpe 16 - Sharpe_s Enemy.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 16 - Sharpe's Enemy", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 16 - Sharpe 16 - Sharpe_s Enemy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 16 - Sharpe's Enemy", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 16 - Sharpe 16 - Sharpe_s Enemy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 17 - Sharpe's Honor - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 17 - Sharpe 17 - Sharpe_s Honor.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 17 - Sharpe 17 - Sharpe_s Honor.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 17 - Sharpe's Honor", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 17 - Sharpe 17 - Sharpe_s Honor.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 17 - Sharpe's Honor", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 17 - Sharpe 17 - Sharpe_s Honor.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 18 - Sharpe's Regiment - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18 - Sharpe 18 - Sharpe_s Regiment.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18 - Sharpe 18 - Sharpe_s Regiment.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 18 - Sharpe's Regiment", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18 - Sharpe 18 - Sharpe_s Regiment.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 18 - Sharpe's Regiment", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18 - Sharpe 18 - Sharpe_s Regiment.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 18.5 - Sharpe's Christmas - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18.5 - Sharpe 18.5 - Sharpe_s Christmas.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18.5 - Sharpe 18.5 - Sharpe_s Christmas.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 18.5 - Sharpe's Christmas", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18.5 - Sharpe 18.5 - Sharpe_s Christmas.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 18.5 - Sharpe's Christmas", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18.5 - Sharpe 18.5 - Sharpe_s Christmas.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 19 - Sharpe's Siege - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 19 - Sharpe 19 - Sharpe_s Siege.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 19 - Sharpe 19 - Sharpe_s Siege.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 19 - Sharpe's Siege", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 19 - Sharpe 19 - Sharpe_s Siege.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 19 - Sharpe's Siege", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 19 - Sharpe 19 - Sharpe_s Siege.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 15.5 - Sharpe's Skirmish - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15.5 - Sharpe 15.5 - Sharpe_s Skirmish.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15.5 - Sharpe 15.5 - Sharpe_s Skirmish.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 15.5 - Sharpe's Skirmish", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15.5 - Sharpe 15.5 - Sharpe_s Skirmish.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 15.5 - Sharpe's Skirmish", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15.5 - Sharpe 15.5 - Sharpe_s Skirmish.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 14 - Sharpe's Command - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 14 - Sharpe 14 - Sharpe_s Command.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 14 - Sharpe 14 - Sharpe_s Command.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 14 - Sharpe's Command", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 14 - Sharpe 14 - Sharpe_s Command.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 14 - Sharpe's Command", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 14 - Sharpe 14 - Sharpe_s Command.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 20 - Sharpe's Revenge - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 20 - Sharpe 20 - Sharpe_s Revenge.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 20 - Sharpe 20 - Sharpe_s Revenge.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 20 - Sharpe's Revenge", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 20 - Sharpe 20 - Sharpe_s Revenge.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 20 - Sharpe's Revenge", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 20 - Sharpe 20 - Sharpe_s Revenge.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 21 - Sharpe's Waterloo - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 21 - Sharpe 21 - Sharpe_s Waterloo.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 21 - Sharpe 21 - Sharpe_s Waterloo.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 21 - Sharpe's Waterloo", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 21 - Sharpe 21 - Sharpe_s Waterloo.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 21 - Sharpe's Waterloo", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 21 - Sharpe 21 - Sharpe_s Waterloo.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 15 - The Ballad of Smallhope and Pennyroyal - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15 - Chronicles of St Mary_s 15 - The Ballad of Smallhope and Pennyroyal.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15 - Chronicles of St Mary_s 15 - The Ballad of Smallhope and Pennyroyal.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/cover.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': '2024-09-21T15:36:53Z', 'Title': "Chronicles of St Mary's 15 - The Ballad of Smallhope and Pennyroyal", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15 - Chronicles of St Mary_s 15 - The Ballad of Smallhope and Pennyroyal.epub', 'TimeSpentReading': 6, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-09-21 15:36:53+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 22 - Sharpe's Assassin - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 22 - Sharpe 22 - Sharpe_s Assassin.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 22 - Sharpe 22 - Sharpe_s Assassin.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 22 - Sharpe's Assassin", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 22 - Sharpe 22 - Sharpe_s Assassin.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 22 - Sharpe's Assassin", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 22 - Sharpe 22 - Sharpe_s Assassin.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: 20,000 Leagues Under the Sea - Jules Verne

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/20,000 Leagues Under the Sea # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/20,000 Leagues Under the Sea # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jules Verne', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': '20,000 Leagues Under the Sea', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/20,000 Leagues Under the Sea # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jules Verne', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': '20,000 Leagues Under the Sea', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/20,000 Leagues Under the Sea # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 23 - Sharpe's Devil - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 23 - Sharpe 23 - Sharpe_s Devil.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 23 - Sharpe 23 - Sharpe_s Devil.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 23 - Sharpe's Devil", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 23 - Sharpe 23 - Sharpe_s Devil.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 23 - Sharpe's Devil", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 23 - Sharpe 23 - Sharpe_s Devil.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: We Solve Murders 01 - We Solve Murders - Richard Osman

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Richard Osman - We Solve Murders 01 - We Solve Murders 01 - We Solve Murders.kepub.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Richard Osman - We Solve Murders 01 - We Solve Murders 01 - We Solve Murders.kepub.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/009_Chapter_1.xhtml#kobo.1.1', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Richard Osman', 'DateLastRead': '2024-09-24T17:52:37Z', 'Title': 'We Solve Murders 01 - We Solve Murders', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Richard Osman - We Solve Murders 01 - We Solve Murders 01 - We Solve Murders.kepub.epub', 'TimeSpentReading': 661, 'RestOfBookEstimate': 25644}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-09-24 17:52:37+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: William Warwick 06 - An Eye for an Eye - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeffrey Archer - William Warwick 06 - William Warwick 06 - An Eye for an Eye.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeffrey Archer - William Warwick 06 - William Warwick 06 - An Eye for an Eye.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'William Warwick 06 - An Eye for an Eye', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - William Warwick 06 - William Warwick 06 - An Eye for an Eye.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'William Warwick 06 - An Eye for an Eye', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - William Warwick 06 - William Warwick 06 - An Eye for an Eye.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Mighty Red - Louise Erdrich

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Louise Erdrich - The Mighty Red.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Louise Erdrich - The Mighty Red.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Erdrich', 'DateLastRead': None, 'Title': 'The Mighty Red', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Louise Erdrich - The Mighty Red.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Erdrich', 'DateLastRead': None, 'Title': 'The Mighty Red', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Louise Erdrich - The Mighty Red.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Clifton Chronicles 05 - Mightier Than the Sword - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clifton Chronicles 05 - Mightier Than the Sword # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clifton Chronicles 05 - Mightier Than the Sword # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Clifton Chronicles 05 - Mightier Than the Sword', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 05 - Mightier Than the Sword # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Clifton Chronicles 05 - Mightier Than the Sword', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 05 - Mightier Than the Sword # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: State Of 01 - State of Emergency - Richard Drysdale

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Richard Drysdale - State 01 - State 01 - _State of Emergency_.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Richard Drysdale - State 01 - State 01 - _State of Emergency_.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter01.xhtml#point(/1/4/20/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 4, 'Attribution': 'Richard Drysdale', 'DateLastRead': '2025-02-25T18:20:47Z', 'Title': 'State Of 01 - State of Emergency', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Richard Drysdale - State 01 - State 01 - _State of Emergency_.epub', 'TimeSpentReading': 1229, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-02-25 18:20:47+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Inspector Morse 01 - Last Bus to Woodstock - Colin Dexter

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Colin Dexter - Inspector Morse 01 - Inspector Morse 01 - Last Bus to Woodstock.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Colin Dexter - Inspector Morse 01 - Inspector Morse 01 - Last Bus to Woodstock.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Colin Dexter', 'DateLastRead': None, 'Title': 'Inspector Morse 01 - Last Bus to Woodstock', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Colin Dexter - Inspector Morse 01 - Inspector Morse 01 - Last Bus to Woodstock.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Colin Dexter', 'DateLastRead': None, 'Title': 'Inspector Morse 01 - Last Bus to Woodstock', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Colin Dexter - Inspector Morse 01 - Inspector Morse 01 - Last Bus to Woodstock.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Dark Tower 01 - The Gunslinger - Stephen King

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Dark Tower 01 - The Gunslinger # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Dark Tower 01 - The Gunslinger # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Dark Tower 01 - The Gunslinger', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dark Tower 01 - The Gunslinger # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Dark Tower 01 - The Gunslinger', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dark Tower 01 - The Gunslinger # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Stormlight Archive 01 - The Way of Kings - Brandon Sanderson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 01 - Stormlight Archive 01 - The Way of Kings.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 01 - Stormlight Archive 01 - The Way of Kings.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/pre.xhtml#point(/1/4/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Brandon Sanderson', 'DateLastRead': '2024-11-28T16:29:56Z', 'Title': 'Stormlight Archive 01 - The Way of Kings', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 01 - Stormlight Archive 01 - The Way of Kings.epub', 'TimeSpentReading': 1256, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-11-28 16:29:56+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Mistborn 01 - Mistborn - Brandon Sanderson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Brandon Sanderson - Mistborn 01 - Mistborn 01 - Mistborn.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Brandon Sanderson - Mistborn 01 - Mistborn 01 - Mistborn.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter2.xhtml#point(/1/4/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 6, 'Attribution': 'Brandon Sanderson', 'DateLastRead': '2025-02-14T17:51:12Z', 'Title': 'Mistborn 01 - Mistborn', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Mistborn 01 - Mistborn 01 - Mistborn.epub', 'TimeSpentReading': 3725, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-02-14 17:51:12+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Weather - Jenny Offill

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jenny Offill - Weather.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jenny Offill - Weather.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/Offi_9780385351119_epub3_p004-sup_r1.xhtml#point(/1/3/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 65, 'Attribution': 'Jenny Offill', 'DateLastRead': '2025-02-28T15:36:06Z', 'Title': 'Weather', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jenny Offill - Weather.epub', 'TimeSpentReading': 18529, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-02-28 15:36:06+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Nero Wolfe 01 - Fer-de-Lance - Rex Stout

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rex Stout - Nero Wolfe 01 - Nero Wolfe 01 - Fer-de-Lance.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rex Stout - Nero Wolfe 01 - Nero Wolfe 01 - Fer-de-Lance.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rex Stout', 'DateLastRead': None, 'Title': 'Nero Wolfe 01 - Fer-de-Lance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rex Stout - Nero Wolfe 01 - Nero Wolfe 01 - Fer-de-Lance.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rex Stout', 'DateLastRead': None, 'Title': 'Nero Wolfe 01 - Fer-de-Lance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rex Stout - Nero Wolfe 01 - Nero Wolfe 01 - Fer-de-Lance.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Shadow of the Leviathan 01 - The Tainted Cup - Robert Jackson Bennett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Robert Jackson Bennett - Shadow of the Leviathan 01 - Shadow of the Leviathan 01 - The Tainted Cup.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Robert Jackson Bennett - Shadow of the Leviathan 01 - Shadow of the Leviathan 01 - The Tainted Cup.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jackson Bennett', 'DateLastRead': None, 'Title': 'Shadow of the Leviathan 01 - The Tainted Cup', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Jackson Bennett - Shadow of the Leviathan 01 - Shadow of the Leviathan 01 - The Tainted Cup.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jackson Bennett', 'DateLastRead': None, 'Title': 'Shadow of the Leviathan 01 - The Tainted Cup', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Jackson Bennett - Shadow of the Leviathan 01 - Shadow of the Leviathan 01 - The Tainted Cup.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Stormlight Archive 05 - Wind and Truth - Brandon Sanderson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 05 - Stormlight Archive 05 - Wind and Truth.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 05 - Stormlight Archive 05 - Wind and Truth.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brandon Sanderson', 'DateLastRead': None, 'Title': 'Stormlight Archive 05 - Wind and Truth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 05 - Stormlight Archive 05 - Wind and Truth.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brandon Sanderson', 'DateLastRead': None, 'Title': 'Stormlight Archive 05 - Wind and Truth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 05 - Stormlight Archive 05 - Wind and Truth.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: As the Crow Flies - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/As the Crow Flies # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/As the Crow Flies # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'As the Crow Flies', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/As the Crow Flies # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'As the Crow Flies', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/As the Crow Flies # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Goldy Shultz 01 - Catering to Nobody - Diane Mott Davidson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Diane Mott Davidson - Goldy Scultz 01 - Goldy Shultz 01 - Catering to Nobody.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Diane Mott Davidson - Goldy Scultz 01 - Goldy Shultz 01 - Catering to Nobody.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Mott Davidson', 'DateLastRead': None, 'Title': 'Goldy Shultz 01 - Catering to Nobody', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Diane Mott Davidson - Goldy Scultz 01 - Goldy Shultz 01 - Catering to Nobody.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Mott Davidson', 'DateLastRead': None, 'Title': 'Goldy Shultz 01 - Catering to Nobody', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Diane Mott Davidson - Goldy Scultz 01 - Goldy Shultz 01 - Catering to Nobody.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 05 - The Mask - Taylor Stevens

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 05 - The Mask # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 05 - The Mask # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 05 - The Mask', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 05 - The Mask # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 05 - The Mask', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 05 - The Mask # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dhalgren - Samuel R. Delany

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dhalgren # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dhalgren # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Samuel R. Delany', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Dhalgren', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dhalgren # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Samuel R. Delany', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Dhalgren', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dhalgren # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Queen of the Tearling 01 - The Queen of the Tearling - Erika Johansen

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Queen of the Tearling 01 - The Queen of the Tearling # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Queen of the Tearling 01 - The Queen of the Tearling # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erika Johansen', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Queen of the Tearling 01 - The Queen of the Tearling', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Queen of the Tearling 01 - The Queen of the Tearling # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erika Johansen', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Queen of the Tearling 01 - The Queen of the Tearling', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Queen of the Tearling 01 - The Queen of the Tearling # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Mistborn 02 - The Well of Ascension - Brandon Sanderson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Brandon Sanderson - Mistborn 02 - Mistborn 02 - The Well of Ascension.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Brandon Sanderson - Mistborn 02 - Mistborn 02 - The Well of Ascension.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brandon Sanderson', 'DateLastRead': None, 'Title': 'Mistborn 02 - The Well of Ascension', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Mistborn 02 - Mistborn 02 - The Well of Ascension.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brandon Sanderson', 'DateLastRead': None, 'Title': 'Mistborn 02 - The Well of Ascension', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Mistborn 02 - Mistborn 02 - The Well of Ascension.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Superintendent Battle 02 - The Seven Dials Mystery - Agatha Christie

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Agatha Christie - Superintendent Battle 02 - Superintendent Battle 02 - The Seven Dials Mystery.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Agatha Christie - Superintendent Battle 02 - Superintendent Battle 02 - The Seven Dials Mystery.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Agatha Christie', 'DateLastRead': None, 'Title': 'Superintendent Battle 02 - The Seven Dials Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Agatha Christie - Superintendent Battle 02 - Superintendent Battle 02 - The Seven Dials Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Agatha Christie', 'DateLastRead': None, 'Title': 'Superintendent Battle 02 - The Seven Dials Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Agatha Christie - Superintendent Battle 02 - Superintendent Battle 02 - The Seven Dials Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Book of Lost Tales, Part One - J.R.R. Tolkien

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J.R.R. Tolkien - The Book of Lost Tales, Part One.kepub.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J.R.R. Tolkien - The Book of Lost Tales, Part One.kepub.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/004-forewordpage.html#kobo.50.4', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'J.R.R. Tolkien', 'DateLastRead': '2025-01-11T19:02:35Z', 'Title': 'The Book of Lost Tales, Part One', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J.R.R. Tolkien - The Book of Lost Tales, Part One.kepub.epub', 'TimeSpentReading': 720, 'RestOfBookEstimate': 29583}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-01-11 19:02:35+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Ruth Galloway 01 - The Crossing Places - Elly Griffiths

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Elly Griffiths - Ruth Galloway 01 - Ruth Galloway 01 - The Crossing Places.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Elly Griffiths - Ruth Galloway 01 - Ruth Galloway 01 - The Crossing Places.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Elly Griffiths', 'DateLastRead': None, 'Title': 'Ruth Galloway 01 - The Crossing Places', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Elly Griffiths - Ruth Galloway 01 - Ruth Galloway 01 - The Crossing Places.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Elly Griffiths', 'DateLastRead': None, 'Title': 'Ruth Galloway 01 - The Crossing Places', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Elly Griffiths - Ruth Galloway 01 - Ruth Galloway 01 - The Crossing Places.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Expanse 0.1 - Drive - James S. A. Corey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James S. A. Corey - Expanse 0.1 - Expanse 0.1 - Drive.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James S. A. Corey - Expanse 0.1 - Expanse 0.1 - Drive.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': 'Expanse 0.1 - Drive', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James S. A. Corey - Expanse 0.1 - Expanse 0.1 - Drive.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': 'Expanse 0.1 - Drive', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James S. A. Corey - Expanse 0.1 - Expanse 0.1 - Drive.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Glass and Steele 01 - The Watchmaker's Daughter - C.J. Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/C.J. Archer - Glass and Steele 01 - Glass and Steele 01 - The Watchmaker_s Daughter.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/C.J. Archer - Glass and Steele 01 - Glass and Steele 01 - The Watchmaker_s Daughter.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C.J. Archer', 'DateLastRead': None, 'Title': "Glass and Steele 01 - The Watchmaker's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/C.J. Archer - Glass and Steele 01 - Glass and Steele 01 - The Watchmaker_s Daughter.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C.J. Archer', 'DateLastRead': None, 'Title': "Glass and Steele 01 - The Watchmaker's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/C.J. Archer - Glass and Steele 01 - Glass and Steele 01 - The Watchmaker_s Daughter.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Expanse 99 - Memory's Legion - James S. A. Corey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James S. A. Corey - Expanse 99 - Expanse 99 - Memory_s Legion.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James S. A. Corey - Expanse 99 - Expanse 99 - Memory_s Legion.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter001.xhtml#point(/1/4/36/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'James S. A. Corey', 'DateLastRead': '2025-01-27T20:54:26Z', 'Title': "Expanse 99 - Memory's Legion", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James S. A. Corey - Expanse 99 - Expanse 99 - Memory_s Legion.epub', 'TimeSpentReading': 2396, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-01-27 20:54:26+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 15.5 - Lights! Camera! Mayhem! - Jodi Taylor

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15.5 - Chronicles of St Mary_s 15.5 - Lights_ Camera_ Mayhem_.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15.5 - Chronicles of St Mary_s 15.5 - Lights_ Camera_ Mayhem_.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 15.5 - Lights! Camera! Mayhem!", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15.5 - Chronicles of St Mary_s 15.5 - Lights_ Camera_ Mayhem_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 15.5 - Lights! Camera! Mayhem!", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15.5 - Chronicles of St Mary_s 15.5 - Lights_ Camera_ Mayhem_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Cities of The Weft 01 - Mordew - Alex Pheby

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Pheby - Cities Of The Weft 01 - Cities Of The Weft 01 - Mordew.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Pheby - Cities Of The Weft 01 - Cities Of The Weft 01 - Mordew.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alex Pheby', 'DateLastRead': None, 'Title': 'Cities of The Weft 01 - Mordew', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Pheby - Cities Of The Weft 01 - Cities Of The Weft 01 - Mordew.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alex Pheby', 'DateLastRead': None, 'Title': 'Cities of The Weft 01 - Mordew', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Pheby - Cities Of The Weft 01 - Cities Of The Weft 01 - Mordew.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Mitch Rapp 01 - American Assassin - Vince Flynn

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mitch Rapp 01 - American Assassin # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mitch Rapp 01 - American Assassin # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Vince Flynn', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Mitch Rapp 01 - American Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mitch Rapp 01 - American Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Vince Flynn', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Mitch Rapp 01 - American Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mitch Rapp 01 - American Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Foreigner 01 - Foreigner - C. J. Cherryh

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/C. J. Cherryh - Foreigner 01 - Foreigner 01 - Foreigner.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/C. J. Cherryh - Foreigner 01 - Foreigner 01 - Foreigner.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C. J. Cherryh', 'DateLastRead': None, 'Title': 'Foreigner 01 - Foreigner', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/C. J. Cherryh - Foreigner 01 - Foreigner 01 - Foreigner.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C. J. Cherryh', 'DateLastRead': None, 'Title': 'Foreigner 01 - Foreigner', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/C. J. Cherryh - Foreigner 01 - Foreigner 01 - Foreigner.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Expanse 03 - Abaddon's Gate - James S. A. Corey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James S. A. Corey - Expanse 03 - Expanse 03 - Abaddon_s Gate.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James S. A. Corey - Expanse 03 - Expanse 03 - Abaddon_s Gate.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': "Expanse 03 - Abaddon's Gate", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James S. A. Corey - Expanse 03 - Expanse 03 - Abaddon_s Gate.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': "Expanse 03 - Abaddon's Gate", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James S. A. Corey - Expanse 03 - Expanse 03 - Abaddon_s Gate.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Go Set a Watchman - Harper Lee

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Go Set a Watchman # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Go Set a Watchman # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Harper Lee', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Go Set a Watchman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Go Set a Watchman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Harper Lee', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Go Set a Watchman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Go Set a Watchman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Laundry Files 03 - The Fuller Memorandum - Charles Stross

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Charles Stross - Laundry Files 03 - Laundry Files 03 - The Fuller Memorandum.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Charles Stross - Laundry Files 03 - Laundry Files 03 - The Fuller Memorandum.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': None, 'Title': 'Laundry Files 03 - The Fuller Memorandum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Stross - Laundry Files 03 - Laundry Files 03 - The Fuller Memorandum.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': None, 'Title': 'Laundry Files 03 - The Fuller Memorandum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Stross - Laundry Files 03 - Laundry Files 03 - The Fuller Memorandum.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Laundry Files 04.5 - A Conventional Boy - Charles Stross

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Charles Stross - Laundry Files 4.5 - Laundry Files 04.5 - A Conventional Boy.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Charles Stross - Laundry Files 4.5 - Laundry Files 04.5 - A Conventional Boy.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': None, 'Title': 'Laundry Files 04.5 - A Conventional Boy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Stross - Laundry Files 4.5 - Laundry Files 04.5 - A Conventional Boy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': None, 'Title': 'Laundry Files 04.5 - A Conventional Boy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Stross - Laundry Files 4.5 - Laundry Files 04.5 - A Conventional Boy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Old Kingdom 01 - Sabriel - Garth Nix

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Garth Nix - Old Kingdom 01 - Old Kingdom 01 - Sabriel.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Garth Nix - Old Kingdom 01 - Old Kingdom 01 - Sabriel.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Garth Nix', 'DateLastRead': None, 'Title': 'Old Kingdom 01 - Sabriel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Garth Nix - Old Kingdom 01 - Old Kingdom 01 - Sabriel.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Garth Nix', 'DateLastRead': None, 'Title': 'Old Kingdom 01 - Sabriel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Garth Nix - Old Kingdom 01 - Old Kingdom 01 - Sabriel.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: In Death 60 - Bonded in Death - J. D. Robb

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 60 - In Death 60 - Bonded in Death.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 60 - In Death 60 - Bonded in Death.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 60 - Bonded in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 60 - In Death 60 - Bonded in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 60 - Bonded in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 60 - In Death 60 - Bonded in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Warbler - Sarah Beth Durst

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sarah Beth Durst - The Warbler.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sarah Beth Durst - The Warbler.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sarah Beth Durst', 'DateLastRead': None, 'Title': 'The Warbler', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah Beth Durst - The Warbler.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sarah Beth Durst', 'DateLastRead': None, 'Title': 'The Warbler', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah Beth Durst - The Warbler.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dirk Pitt 27 - The Corsican Shadow - Dirk Cussler

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dirk Cussler - Dirk Pitt 27 - Dirk Pitt 27 - The Corsican Shadow.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dirk Cussler - Dirk Pitt 27 - Dirk Pitt 27 - The Corsican Shadow.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dirk Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 27 - The Corsican Shadow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dirk Cussler - Dirk Pitt 27 - Dirk Pitt 27 - The Corsican Shadow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dirk Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 27 - The Corsican Shadow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dirk Cussler - Dirk Pitt 27 - Dirk Pitt 27 - The Corsican Shadow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Lamplighter’s Bookshop - Austin, Sophie

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Austin, Sophie - The Lamplighter_s Bookshop.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Austin, Sophie - The Lamplighter_s Bookshop.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Austin, Sophie', 'DateLastRead': None, 'Title': 'The Lamplighter’s Bookshop', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Austin, Sophie - The Lamplighter_s Bookshop.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Austin, Sophie', 'DateLastRead': None, 'Title': 'The Lamplighter’s Bookshop', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Austin, Sophie - The Lamplighter_s Bookshop.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: NF 19: The Returned, Part II - Peter David

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part II # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part II # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part II', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part II # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part II', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part II # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Ellery Queen 02 - French Powder Mystery - Ellery Queen

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ellery Queen - Ellery Queen 02 - Ellery Queen 02 - French Powder Mystery.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ellery Queen - Ellery Queen 02 - Ellery Queen 02 - French Powder Mystery.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ellery Queen', 'DateLastRead': None, 'Title': 'Ellery Queen 02 - French Powder Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ellery Queen - Ellery Queen 02 - Ellery Queen 02 - French Powder Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ellery Queen', 'DateLastRead': None, 'Title': 'Ellery Queen 02 - French Powder Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ellery Queen - Ellery Queen 02 - Ellery Queen 02 - French Powder Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: First Law World 01 - Best Served Cold - Joe Abercrombie

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/First Law World 01 - Best Served Cold # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/First Law World 01 - Best Served Cold # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joe Abercrombie', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'First Law World 01 - Best Served Cold', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/First Law World 01 - Best Served Cold # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joe Abercrombie', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'First Law World 01 - Best Served Cold', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/First Law World 01 - Best Served Cold # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Empyrean 02 - Iron Flame - Rebecca Yarros

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rebecca Yarros - Empyrean 02 - Empyrean 02 - Iron Flame.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rebecca Yarros - Empyrean 02 - Empyrean 02 - Iron Flame.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rebecca Yarros', 'DateLastRead': None, 'Title': 'Empyrean 02 - Iron Flame', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rebecca Yarros - Empyrean 02 - Empyrean 02 - Iron Flame.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rebecca Yarros', 'DateLastRead': None, 'Title': 'Empyrean 02 - Iron Flame', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rebecca Yarros - Empyrean 02 - Empyrean 02 - Iron Flame.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: NF 19: The Returned, Part I - Peter David

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part I # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part I # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part I', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part I # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part I', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part I # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: First Law 01 - The Blade Itself - Joe Abercrombie

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/First Law 01 - The Blade Itself # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/First Law 01 - The Blade Itself # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/cover.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joe Abercrombie', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'First Law 01 - The Blade Itself', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/First Law 01 - The Blade Itself # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= True

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= 0

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': 'OEBPS/cover.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joe Abercrombie', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'First Law 01 - The Blade Itself', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/First Law 01 - The Blade Itself # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Harry Bosch 02 - The Black Ice - Michael Connelly

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Harry Bosch 02 - The Black Ice # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Harry Bosch 02 - The Black Ice # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter001.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Michael Connelly', 'DateLastRead': '2023-10-20T10:14:52Z', 'Title': 'Harry Bosch 02 - The Black Ice', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Harry Bosch 02 - The Black Ice # (v5.1).epub', 'TimeSpentReading': 78, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-10-20 10:14:52+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Queen of the Tearling 02 - The Invasion of the Tearling - Erika Johansen

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Queen of the Tearling 02 - The Invasion of the Tearling # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Queen of the Tearling 02 - The Invasion of the Tearling # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erika Johansen', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Queen of the Tearling 02 - The Invasion of the Tearling', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Queen of the Tearling 02 - The Invasion of the Tearling # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erika Johansen', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Queen of the Tearling 02 - The Invasion of the Tearling', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Queen of the Tearling 02 - The Invasion of the Tearling # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: NF 19: The Returned, Part III - Peter David

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part III # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part III # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part III', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part III # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part III', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part III # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Faebound 01 - Faebound - Saara El-Arifi

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Saara El-Arifi - Faebound 01 - Faebound 01 - Faebound.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Saara El-Arifi - Faebound 01 - Faebound 01 - Faebound.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Saara El-Arifi', 'DateLastRead': None, 'Title': 'Faebound 01 - Faebound', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Saara El-Arifi - Faebound 01 - Faebound 01 - Faebound.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Saara El-Arifi', 'DateLastRead': None, 'Title': 'Faebound 01 - Faebound', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Saara El-Arifi - Faebound 01 - Faebound 01 - Faebound.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Cormoran Strike 03 - Career of Evil - Robert Galbraith

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cormoran Strike 03 - Career of Evil # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cormoran Strike 03 - Career of Evil # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter001.xhtml#point(/1/4/18/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Robert Galbraith', 'DateLastRead': '2023-10-20T10:20:47Z', 'Title': 'Cormoran Strike 03 - Career of Evil', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cormoran Strike 03 - Career of Evil # (v5.1).epub', 'TimeSpentReading': 241, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-10-20 10:20:47+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Nightingales 01 - The Nightingale Girls - Donna Douglas

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nightingales 01 - The Nightingale Girls # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Nightingales 01 - The Nightingale Girls # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donna Douglas', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Nightingales 01 - The Nightingale Girls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nightingales 01 - The Nightingale Girls # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donna Douglas', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Nightingales 01 - The Nightingale Girls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nightingales 01 - The Nightingale Girls # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vlad Taltos 01 - The Book of Jhereg - Steven Brust

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vlad Taltos 01 - The Book of Jhereg # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vlad Taltos 01 - The Book of Jhereg # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steven Brust', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vlad Taltos 01 - The Book of Jhereg', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vlad Taltos 01 - The Book of Jhereg # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steven Brust', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vlad Taltos 01 - The Book of Jhereg', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vlad Taltos 01 - The Book of Jhereg # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Khaavren Romances 01 - The Phoenix Guards - Steven Brust

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Khaavren Romances 01 - The Phoenix Guards # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Khaavren Romances 01 - The Phoenix Guards # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steven Brust', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Khaavren Romances 01 - The Phoenix Guards', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Khaavren Romances 01 - The Phoenix Guards # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steven Brust', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Khaavren Romances 01 - The Phoenix Guards', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Khaavren Romances 01 - The Phoenix Guards # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Last Hundred Years 02 - Early Warning - Jane Smiley

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Last Hundred Years 02 - Early Warning # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Last Hundred Years 02 - Early Warning # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jane Smiley', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Last Hundred Years 02 - Early Warning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Hundred Years 02 - Early Warning # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jane Smiley', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Last Hundred Years 02 - Early Warning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Hundred Years 02 - Early Warning # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Last Hundred Years 01 - Some Luck - Jane Smiley

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Last Hundred Years 01 - Some Luck # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Last Hundred Years 01 - Some Luck # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Smil_9780385350396_epub_cvi_r1.htm#point(:1)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Jane Smiley', 'DateLastRead': '2022-12-14T00:09:51Z', 'Title': 'Last Hundred Years 01 - Some Luck', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Hundred Years 01 - Some Luck # (v5.1).epub', 'TimeSpentReading': 43, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-12-14 00:09:51+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Expanse 02 - Caliban's War - James S.A. Corey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Expanse 02 - Caliban_s War # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Expanse 02 - Caliban_s War # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter002.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'James S.A. Corey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "Expanse 02 - Caliban's War", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Expanse 02 - Caliban_s War # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Clifton Chronicles 06 - Cometh the Hour - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clifton Chronicles 06 - Cometh the Hour # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clifton Chronicles 06 - Cometh the Hour # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Clifton Chronicles 06 - Cometh the Hour', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 06 - Cometh the Hour # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Clifton Chronicles 06 - Cometh the Hour', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 06 - Cometh the Hour # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Divergent 00.1 - The Transfer - Veronica Roth

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Divergent 00.1 - The Transfer # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Divergent 00.1 - The Transfer # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/text/9780062285638_Chapter_1.xhtml#point(/1/4/52/1:300)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 15, 'Attribution': 'Veronica Roth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Divergent 00.1 - The Transfer', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Divergent 00.1 - The Transfer # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Divergent 00.2 - The Initiate - Veronica Roth

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Divergent 00.2 - The Initiate # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Divergent 00.2 - The Initiate # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Veronica Roth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Divergent 00.2 - The Initiate', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Divergent 00.2 - The Initiate # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Veronica Roth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Divergent 00.2 - The Initiate', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Divergent 00.2 - The Initiate # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: 5th Wave 02 - The Infinite Sea - Rick Yancey

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/5th Wave 02 - The Infinite Sea # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/5th Wave 02 - The Infinite Sea # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rick Yancey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': '5th Wave 02 - The Infinite Sea', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/5th Wave 02 - The Infinite Sea # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rick Yancey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': '5th Wave 02 - The Infinite Sea', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/5th Wave 02 - The Infinite Sea # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Girls - Emma Cline

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Girls # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Girls # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Emma Cline', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Girls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Girls # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Emma Cline', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Girls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Girls # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Barkskins - Annie Proulx

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Barkskins # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Barkskins # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Annie Proulx', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Barkskins', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Barkskins # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Annie Proulx', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Barkskins', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Barkskins # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Gabriel Allon 03 - The Confessor - Daniel Silva

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Gabriel Allon 03 - The Confessor # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Gabriel Allon 03 - The Confessor # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/theconfessor-body_5.html#point(/1/3/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Daniel Silva', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Gabriel Allon 03 - The Confessor', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gabriel Allon 03 - The Confessor # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Laundry Files 02 - The Jennifer Morgue - Charles Stross

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Laundry Files 02 - The Jennifer Morgue # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Laundry Files 02 - The Jennifer Morgue # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Laundry Files 02 - The Jennifer Morgue', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Laundry Files 02 - The Jennifer Morgue # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Laundry Files 02 - The Jennifer Morgue', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Laundry Files 02 - The Jennifer Morgue # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Star Trek:TNG: Slings & Arrows 02: The Oppressor's Wrong - Phaedra M. Weldon

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_TNG_ Slings & Arrows 02_ The Oppressor_s Wrong # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_TNG_ Slings & Arrows 02_ The Oppressor_s Wrong # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Phaedra M. Weldon', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Star Trek:TNG: Slings & Arrows 02: The Oppressor's Wrong", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_TNG_ Slings & Arrows 02_ The Oppressor_s Wrong # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Phaedra M. Weldon', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Star Trek:TNG: Slings & Arrows 02: The Oppressor's Wrong", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_TNG_ Slings & Arrows 02_ The Oppressor_s Wrong # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: TNG: Slings Arrows 01: A Sea of Troubles - J. Steven York Christina F. York

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ TNG_ Slings Arrows 01_ A Sea of Troubles # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ TNG_ Slings Arrows 01_ A Sea of Troubles # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. Steven York Christina F. York', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: TNG: Slings Arrows 01: A Sea of Troubles', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TNG_ Slings Arrows 01_ A Sea of Troubles # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. Steven York Christina F. York', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: TNG: Slings Arrows 01: A Sea of Troubles', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TNG_ Slings Arrows 01_ A Sea of Troubles # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Young Wizards 01 - So You Want to Be a Wizard (Millennium) - Diane Duane

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Young Wizards 01 - So You Want to Be a Wizard (Millennium) # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Young Wizards 01 - So You Want to Be a Wizard (Millennium) # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Duane', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Young Wizards 01 - So You Want to Be a Wizard (Millennium)', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Young Wizards 01 - So You Want to Be a Wizard (Millennium) # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Duane', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Young Wizards 01 - So You Want to Be a Wizard (Millennium)', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Young Wizards 01 - So You Want to Be a Wizard (Millennium) # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dresden Files SSC01 - Side Jobs - Jim Butcher

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dresden Files SSC01 - Side Jobs # (v5.4).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dresden Files SSC01 - Side Jobs # (v5.4).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/butc_9781101464533_oeb_c11_r1.xhtml#point(/1/4/4/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 80, 'Attribution': 'Jim Butcher', 'DateLastRead': '2023-11-26T20:12:32Z', 'Title': 'Dresden Files SSC01 - Side Jobs', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dresden Files SSC01 - Side Jobs # (v5.4).epub', 'TimeSpentReading': 19, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-11-26 20:12:32+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Mercy Thompson 99 - Shifting Shadows - Patricia Briggs

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mercy Thompson 99 - Shifting Shadows # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mercy Thompson 99 - Shifting Shadows # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/9781101609507_EPUB-8.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'Patricia Briggs', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Mercy Thompson 99 - Shifting Shadows', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercy Thompson 99 - Shifting Shadows # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Glittering Edge 01 - Edge of Dark - Brenda Cooper

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Glittering Edge 01 - Edge of Dark # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Glittering Edge 01 - Edge of Dark # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chap02.xhtml#point(/1/4/108/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Brenda Cooper', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Glittering Edge 01 - Edge of Dark', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Glittering Edge 01 - Edge of Dark # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Kane and Abel - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kane and Abel.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kane and Abel.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kane and Abel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kane and Abel.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kane and Abel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kane and Abel.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Robert Langdon 03 - The Lost Symbol - Dan Brown

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Robert Langdon 03 - The Lost Symbol # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Robert Langdon 03 - The Lost Symbol # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Brown', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Robert Langdon 03 - The Lost Symbol', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Langdon 03 - The Lost Symbol # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Brown', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Robert Langdon 03 - The Lost Symbol', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Langdon 03 - The Lost Symbol # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Steve Jobs - Walter Isaacson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Walter Isaacson - Steve Jobs.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Walter Isaacson - Steve Jobs.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Walter Isaacson', 'DateLastRead': None, 'Title': 'Steve Jobs', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Walter Isaacson - Steve Jobs.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Walter Isaacson', 'DateLastRead': None, 'Title': 'Steve Jobs', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Walter Isaacson - Steve Jobs.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Clifton Chronicles 07 - This Was a Man - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clifton Chronicles 07 - This Was a Man # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clifton Chronicles 07 - This Was a Man # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Clifton Chronicles 07 - This Was a Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 07 - This Was a Man # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Clifton Chronicles 07 - This Was a Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 07 - This Was a Man # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Infomocracy - Malka Older

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Infomocracy # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Infomocracy # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter1.xhtml#point(/1/4/136/1:73)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'Malka Older', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Infomocracy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Infomocracy # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Small Magics - Ilona Andrews

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Small Magics # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Small Magics # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ilona Andrews', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Small Magics', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Small Magics # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ilona Andrews', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Small Magics', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Small Magics # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: Strange New Worlds 2016 - Various

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ Strange New Worlds 2016 # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ Strange New Worlds 2016 # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/ch06.xhtml#point(/1/4/136/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 50, 'Attribution': 'Various', 'DateLastRead': '2023-10-23T02:31:44Z', 'Title': 'Star Trek: Strange New Worlds 2016', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ Strange New Worlds 2016 # (v5.1).epub', 'TimeSpentReading': 888, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-10-23 02:31:44+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Ruby's Song 02 - The Diamond Deep - Brenda Cooper

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ruby_s Song 02 - The Diamond Deep # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ruby_s Song 02 - The Diamond Deep # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brenda Cooper', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Ruby's Song 02 - The Diamond Deep", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ruby_s Song 02 - The Diamond Deep # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brenda Cooper', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Ruby's Song 02 - The Diamond Deep", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ruby_s Song 02 - The Diamond Deep # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Ryan 22 - True Faith and Allegiance - Mark Greaney

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jack Ryan 22 - True Faith and Allegiance # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jack Ryan 22 - True Faith and Allegiance # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mark Greaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Jack Ryan 22 - True Faith and Allegiance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jack Ryan 22 - True Faith and Allegiance # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mark Greaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Jack Ryan 22 - True Faith and Allegiance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jack Ryan 22 - True Faith and Allegiance # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Wayward Pines 01 - Pines - Blake Crouch

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayward Pines 01 - Pines # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayward Pines 01 - Pines # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Blake Crouch', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wayward Pines 01 - Pines', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Pines 01 - Pines # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Blake Crouch', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wayward Pines 01 - Pines', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Pines 01 - Pines # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Demigod Diaries - Rick Riordan

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Demigod Diaries # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Demigod Diaries # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rick Riordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Demigod Diaries', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Demigod Diaries # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rick Riordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Demigod Diaries', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Demigod Diaries # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Katherine 'Kitty' Katt 01 - Touched by an Alien - Gini Koch

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Katherine _Kitty_ Katt 01 - Touched by an Alien # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Katherine _Kitty_ Katt 01 - Touched by an Alien # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/koch_9781101186329_oeb_c04_r1.xhtml#point(/1/4/66/1:140)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 7, 'Attribution': 'Gini Koch', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Katherine 'Kitty' Katt 01 - Touched by an Alien", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Katherine _Kitty_ Katt 01 - Touched by an Alien # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Glass Thorns 01 - Touchstone - Melanie Rawn

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Glass Thorns 01 - Touchstone # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Glass Thorns 01 - Touchstone # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Melanie Rawn', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Glass Thorns 01 - Touchstone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Glass Thorns 01 - Touchstone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Melanie Rawn', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Glass Thorns 01 - Touchstone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Glass Thorns 01 - Touchstone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Last Apprentice 01 - Revenge of the Witch - Joseph Delaney

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Last Apprentice 01 - Revenge of the Witch # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Last Apprentice 01 - Revenge of the Witch # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joseph Delaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Apprentice 01 - Revenge of the Witch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Apprentice 01 - Revenge of the Witch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joseph Delaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Apprentice 01 - Revenge of the Witch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Apprentice 01 - Revenge of the Witch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Last Apprentice 02 - Curse of the Bane - Joseph Delaney

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Last Apprentice 02 - Curse of the Bane # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Last Apprentice 02 - Curse of the Bane # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joseph Delaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Apprentice 02 - Curse of the Bane', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Apprentice 02 - Curse of the Bane # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joseph Delaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Apprentice 02 - Curse of the Bane', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Apprentice 02 - Curse of the Bane # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Clifton Chronicles 04 - Be Careful What You Wish For - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 4.0 - Clifton Chronicles 04 - Be Careful What You Wish For.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 4.0 - Clifton Chronicles 04 - Be Careful What You Wish For.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'Clifton Chronicles 04 - Be Careful What You Wish For', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 4.0 - Clifton Chronicles 04 - Be Careful What You Wish For.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'Clifton Chronicles 04 - Be Careful What You Wish For', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 4.0 - Clifton Chronicles 04 - Be Careful What You Wish For.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Clifton Chronicles 03 - Best Kept Secret - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 08 - Clifton Chronicles 03 - Best Kept Secret.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 08 - Clifton Chronicles 03 - Best Kept Secret.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'Clifton Chronicles 03 - Best Kept Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 08 - Clifton Chronicles 03 - Best Kept Secret.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'Clifton Chronicles 03 - Best Kept Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 08 - Clifton Chronicles 03 - Best Kept Secret.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Laundry Files 08 - The Delirium Brief - Charles Stross

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Laundry Files 08 - The Delirium Brief # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Laundry Files 08 - The Delirium Brief # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Laundry Files 08 - The Delirium Brief', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Laundry Files 08 - The Delirium Brief # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Laundry Files 08 - The Delirium Brief', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Laundry Files 08 - The Delirium Brief # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Stillhouse Lake 01 - Stillhouse Lake - Rachel Caine

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stillhouse Lake 01 - Stillhouse Lake # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stillhouse Lake 01 - Stillhouse Lake # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/dedication.xhtml#point(:1)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Rachel Caine', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Stillhouse Lake 01 - Stillhouse Lake', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stillhouse Lake 01 - Stillhouse Lake # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Spenser 20 - Paper Doll - Robert B. Parker

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Spenser 20 - Paper Doll # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Spenser 20 - Paper Doll # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert B. Parker', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Spenser 20 - Paper Doll', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Spenser 20 - Paper Doll # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert B. Parker', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Spenser 20 - Paper Doll', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Spenser 20 - Paper Doll # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Spenser 19 - Double Deuce - Robert B. Parker

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Robert B. Parker - Spencer 19 - Spenser 19 - Double Deuce.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Robert B. Parker - Spencer 19 - Spenser 19 - Double Deuce.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert B. Parker', 'DateLastRead': None, 'Title': 'Spenser 19 - Double Deuce', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert B. Parker - Spencer 19 - Spenser 19 - Double Deuce.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Lilac Girls - Martha Hall Kelly

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lilac Girls # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lilac Girls # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Kell_9781101883068_epub3_c001_r1.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Martha Hall Kelly', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Lilac Girls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lilac Girls # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Mortal Instruments 02 - City of Ashes - Cassandra Clare

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mortal Instruments 02 - City of Ashes # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mortal Instruments 02 - City of Ashes # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cassandra Clare', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Mortal Instruments 02 - City of Ashes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mortal Instruments 02 - City of Ashes # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cassandra Clare', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Mortal Instruments 02 - City of Ashes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mortal Instruments 02 - City of Ashes # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Tessa Leoni 02 - Touch & Go - Lisa Gardner

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tessa Leoni 02 - Touch & Go # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tessa Leoni 02 - Touch & Go # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lisa Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tessa Leoni 02 - Touch & Go', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tessa Leoni 02 - Touch & Go # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lisa Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tessa Leoni 02 - Touch & Go', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tessa Leoni 02 - Touch & Go # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: D.D. Warren 01 - Alone - Lisa Gardner

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/D.D. Warren 01 - Alone # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/D.D. Warren 01 - Alone # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/Gard_9780553901139_epub_cvi_r1.htm#point(/1/3/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lisa Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'D.D. Warren 01 - Alone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/D.D. Warren 01 - Alone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= True

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= 0

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': 'OPS/Gard_9780553901139_epub_cvi_r1.htm#point(/1/3/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lisa Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'D.D. Warren 01 - Alone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/D.D. Warren 01 - Alone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Ed Noon 02 - The Spitting Image - Michael Avallone

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ed Noon 02 - The Spitting Image # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ed Noon 02 - The Spitting Image # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Avallone', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Ed Noon 02 - The Spitting Image', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ed Noon 02 - The Spitting Image # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Avallone', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Ed Noon 02 - The Spitting Image', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ed Noon 02 - The Spitting Image # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Paper Money - Ken Follett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Paper Money # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Paper Money # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Paper Money', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Paper Money # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Paper Money', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Paper Money # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Green Rider 01 - Green Rider - Kristen Britain

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kristen Britain - Green Rider 01 - Green Rider 01 - Green Rider.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kristen Britain - Green Rider 01 - Green Rider 01 - Green Rider.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kristen Britain', 'DateLastRead': None, 'Title': 'Green Rider 01 - Green Rider', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kristen Britain - Green Rider 01 - Green Rider 01 - Green Rider.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kristen Britain', 'DateLastRead': None, 'Title': 'Green Rider 01 - Green Rider', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kristen Britain - Green Rider 01 - Green Rider 01 - Green Rider.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Last Kingdom 01 - The Last Kingdom - Bernard Cornwell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Last Kingdom 01 - The Last Kingdom # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Last Kingdom 01 - The Last Kingdom # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Last Kingdom 01 - The Last Kingdom', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Kingdom 01 - The Last Kingdom # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Last Kingdom 01 - The Last Kingdom', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Kingdom 01 - The Last Kingdom # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Rizzoli & Isles 12 - I Know a Secret - Tess Gerritsen

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rizzoli & Isles 12 - I Know a Secret # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rizzoli & Isles 12 - I Know a Secret # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tess Gerritsen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Rizzoli & Isles 12 - I Know a Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rizzoli & Isles 12 - I Know a Secret # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tess Gerritsen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Rizzoli & Isles 12 - I Know a Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rizzoli & Isles 12 - I Know a Secret # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The England, Their England - A. G. Macdonell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The England, Their England # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The England, Their England # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'A. G. Macdonell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The England, Their England', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The England, Their England # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'A. G. Macdonell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The England, Their England', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The England, Their England # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Kingsbridge 04 - A Column of Fire - Ken Follett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Column of Fire # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/A Column of Fire # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 04 - A Column of Fire', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Column of Fire # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 04 - A Column of Fire', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Column of Fire # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Kingsbridge 02 - The Pillars of the Earth - Ken Follett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Pillars of the Earth # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Pillars of the Earth # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 02 - The Pillars of the Earth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Pillars of the Earth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 02 - The Pillars of the Earth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Pillars of the Earth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Kingsbridge 03 - World Without End - Ken Follett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/World Without End # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/World Without End # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 03 - World Without End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/World Without End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 03 - World Without End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/World Without End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Warcross 01 - Warcross - Marie Lu

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Warcross 01 - Warcross # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Warcross 01 - Warcross # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Marie Lu', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Warcross 01 - Warcross', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Warcross 01 - Warcross # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Marie Lu', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Warcross 01 - Warcross', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Warcross 01 - Warcross # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: One Nation After Trump - E.J. Dionne, Jr.

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/One Nation After Trump # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/One Nation After Trump # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'E.J. Dionne, Jr.', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'One Nation After Trump', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/One Nation After Trump # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'E.J. Dionne, Jr.', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'One Nation After Trump', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/One Nation After Trump # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Last Castle - Denise Kiernan

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Last Castle # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Last Castle # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'ops/xhtml/cover.html#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Denise Kiernan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Castle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Castle # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= True

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= 0

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': 'ops/xhtml/cover.html#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Denise Kiernan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Castle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Castle # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 06 - Without Fail - Lee Child

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 06 - Jack Reacher 06 - Without Fail.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 06 - Jack Reacher 06 - Without Fail.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 06 - Without Fail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 06 - Jack Reacher 06 - Without Fail.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 06 - Without Fail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 06 - Jack Reacher 06 - Without Fail.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Tell Tale - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tell Tale # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tell Tale # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tell Tale', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tell Tale # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tell Tale', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tell Tale # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Millennium 04 - The Girl in the Spider's Web - David Lagercrantz

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Millennium 04 - The Girl in the Spider_s Web # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Millennium 04 - The Girl in the Spider_s Web # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Lagercrantz', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Millennium 04 - The Girl in the Spider's Web", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Millennium 04 - The Girl in the Spider_s Web # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Lagercrantz', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Millennium 04 - The Girl in the Spider's Web", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Millennium 04 - The Girl in the Spider_s Web # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Artemis - Andy Weir

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Artemis # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Artemis # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Weir', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Artemis', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Artemis # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Weir', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Artemis', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Artemis # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Xanth 01 - A Spell for Chameleon - Piers Anthony

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Xanth 01 - A Spell for Chameleon # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Xanth 01 - A Spell for Chameleon # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Piers Anthony', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Xanth 01 - A Spell for Chameleon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Xanth 01 - A Spell for Chameleon # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Piers Anthony', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Xanth 01 - A Spell for Chameleon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Xanth 01 - A Spell for Chameleon # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Night Over Water - Ken Follett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Night Over Water # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Night Over Water # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Night Over Water', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Night Over Water # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Night Over Water', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Night Over Water # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Third Twin - Ken Follett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Third Twin # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Third Twin # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Third Twin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Third Twin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Third Twin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Third Twin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Dark Run - Mike Brooks

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dark Run # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dark Run # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mike Brooks', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Dark Run', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dark Run # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mike Brooks', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Dark Run', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dark Run # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Rainbows End - Vernor Vinge

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rainbows End # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rainbows End # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/9781429991896_ch03.html#point(/1/4/86/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 8, 'Attribution': 'Vernor Vinge', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Rainbows End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rainbows End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Fire and Fury - Michael Wolff

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Fire and Fury # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Fire and Fury # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter13.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 56, 'Attribution': 'Michael Wolff', 'DateLastRead': '2022-12-14T00:08:42Z', 'Title': 'Fire and Fury', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Fire and Fury # (v5.1).epub', 'TimeSpentReading': 1798, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-12-14 00:08:42+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Father Brown Omnibus - G.K. Chesterton

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Father Brown Omnibus # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Father Brown Omnibus # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'bluecross.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'G.K. Chesterton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Father Brown Omnibus', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Father Brown Omnibus # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= True

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= 0

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': 'bluecross.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'G.K. Chesterton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Father Brown Omnibus', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Father Brown Omnibus # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Eye of the Needle - Ken Follett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Eye of the Needle # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Eye of the Needle # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter01.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Eye of the Needle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Eye of the Needle # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Detective Barnes 01 - Punishment - Scott J. Holliday

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Detective Barnes 01 - Punishment # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Detective Barnes 01 - Punishment # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Scott J. Holliday', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Detective Barnes 01 - Punishment', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Detective Barnes 01 - Punishment # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Scott J. Holliday', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Detective Barnes 01 - Punishment', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Detective Barnes 01 - Punishment # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Frankenstein, or the Modern Prometheus (1818) - Mary Shelly

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Frankenstein, or the Modern Prometheus (1818) # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Frankenstein, or the Modern Prometheus (1818) # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter1a.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 11, 'Attribution': 'Mary Shelly', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Frankenstein, or the Modern Prometheus (1818)', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Frankenstein, or the Modern Prometheus (1818) # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vera Stanhope 01 - The Crow Trap - Ann Cleeves

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 01 - The Crow Trap # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 01 - The Crow Trap # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 01 - The Crow Trap', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 01 - The Crow Trap # (v5.1).epub', 'TimeSpentReading': 3, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 01 - The Crow Trap', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 01 - The Crow Trap # (v5.1).epub', 'TimeSpentReading': 3, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Replay - Ken Grimwood

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ken Grimwood - Replay.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ken Grimwood - Replay.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Grimwood', 'DateLastRead': None, 'Title': 'Replay', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ken Grimwood - Replay.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Grimwood', 'DateLastRead': None, 'Title': 'Replay', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ken Grimwood - Replay.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: White Chrysanthemum - Mary Lynn Bracht

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/White Chrysanthemum # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/White Chrysanthemum # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mary Lynn Bracht', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'White Chrysanthemum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/White Chrysanthemum # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mary Lynn Bracht', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'White Chrysanthemum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/White Chrysanthemum # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: A Series of Unfortunate Events 05 - The Austere Academy - Lemony Snicket

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 05 - A Series of Unfortunate Events 05 - The Austere Academy.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 05 - A Series of Unfortunate Events 05 - The Austere Academy.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 05 - The Austere Academy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 05 - A Series of Unfortunate Events 05 - The Austere Academy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 05 - The Austere Academy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 05 - A Series of Unfortunate Events 05 - The Austere Academy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: A Series of Unfortunate Events 06 - The Ersatz Elevator - Lemony Snicket

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 06 - A Series of Unfortunate Events 06 - The Ersatz Elevator.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 06 - A Series of Unfortunate Events 06 - The Ersatz Elevator.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 06 - The Ersatz Elevator', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 06 - A Series of Unfortunate Events 06 - The Ersatz Elevator.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 06 - The Ersatz Elevator', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 06 - A Series of Unfortunate Events 06 - The Ersatz Elevator.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: A Series of Unfortunate Events 04 - The Miserable Mill - Lemony Snicket

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 04 - A Series of Unfortunate Events 04 - The Miserable Mill.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 04 - A Series of Unfortunate Events 04 - The Miserable Mill.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 04 - The Miserable Mill', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 04 - A Series of Unfortunate Events 04 - The Miserable Mill.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 04 - The Miserable Mill', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 04 - A Series of Unfortunate Events 04 - The Miserable Mill.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: King's Musketeers 01 - The Three Musketeers - Alexandre Dumas

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/King_s Musketeers 01 - The Three Musketeers # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/King_s Musketeers 01 - The Three Musketeers # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/ch3.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 6, 'Attribution': 'Alexandre Dumas', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "King's Musketeers 01 - The Three Musketeers", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/King_s Musketeers 01 - The Three Musketeers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Tony Hill & Carol Jordan 01 - The Mermaids Singing - Val McDermid

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tony Hill & Carol Jordan 01 - The Mermaids Singing # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tony Hill & Carol Jordan 01 - The Mermaids Singing # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Val McDermid', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tony Hill & Carol Jordan 01 - The Mermaids Singing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tony Hill & Carol Jordan 01 - The Mermaids Singing # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Val McDermid', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tony Hill & Carol Jordan 01 - The Mermaids Singing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tony Hill & Carol Jordan 01 - The Mermaids Singing # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Heads You Win - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Heads You Win # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Heads You Win # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Heads You Win', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Heads You Win # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Heads You Win', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Heads You Win # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Clockmaker's Daughter - Kate Morton

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Clockmaker_s Daughter # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Clockmaker_s Daughter # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Morton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "The Clockmaker's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Clockmaker_s Daughter # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Morton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "The Clockmaker's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Clockmaker_s Daughter # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Vera Stanhope 02 - Telling Tales - Ann Cleeves

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 02 - Telling Tales # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 02 - Telling Tales # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 02 - Telling Tales', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 02 - Telling Tales # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 02 - Telling Tales', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 02 - Telling Tales # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Nine Perfect Strangers - Liane Moriarty

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nine Perfect Strangers # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Nine Perfect Strangers # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter3.xhtml#point(/1/4/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'Liane Moriarty', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Nine Perfect Strangers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nine Perfect Strangers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Ninth Hour - Alice McDermott

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alice McDermott - The Ninth Hour.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alice McDermott - The Ninth Hour.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice McDermott', 'DateLastRead': None, 'Title': 'The Ninth Hour', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alice McDermott - The Ninth Hour.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice McDermott', 'DateLastRead': None, 'Title': 'The Ninth Hour', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alice McDermott - The Ninth Hour.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Alex Cross 10 - London Bridges - James Patterson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Cross 10 - London Bridges # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Cross 10 - London Bridges # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Alex Cross 10 - London Bridges', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Cross 10 - London Bridges # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Alex Cross 10 - London Bridges', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Cross 10 - London Bridges # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Alex Cross 09 - The Big Bad Wolf - James Patterson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Cross 09 - The Big Bad Wolf # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Cross 09 - The Big Bad Wolf # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/BigBadWolf_chap_4.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'James Patterson', 'DateLastRead': '2024-11-21T08:19:00Z', 'Title': 'Alex Cross 09 - The Big Bad Wolf', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Cross 09 - The Big Bad Wolf # (v5.1).epub', 'TimeSpentReading': 2474, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-11-21 08:19:00+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Belgariad 01 - Pawn of Prophecy - David Eddings

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Belgariad 01 - Pawn of Prophecy # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Belgariad 01 - Pawn of Prophecy # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Eddings', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Belgariad 01 - Pawn of Prophecy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Belgariad 01 - Pawn of Prophecy # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Eddings', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Belgariad 01 - Pawn of Prophecy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Belgariad 01 - Pawn of Prophecy # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: George Smiley 01 - Call for the Dead - John le Carré

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/George Smiley 01 - Call for the Dead # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/George Smiley 01 - Call for the Dead # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/08_introduction.xhtml#point(/1/4/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'John le Carré', 'DateLastRead': '2022-09-04T10:34:03Z', 'Title': 'George Smiley 01 - Call for the Dead', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/George Smiley 01 - Call for the Dead # (v5.1).epub', 'TimeSpentReading': 521, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-09-04 10:34:03+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: TOS: The Captain's Oath - Christopher L. Bennett

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Christopher L. Bennett - Star Trek_ TOS_ The Captain_s Oath.epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Christopher L. Bennett - Star Trek_ TOS_ The Captain_s Oath.epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher L. Bennett', 'DateLastRead': None, 'Title': "Star Trek: TOS: The Captain's Oath", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Christopher L. Bennett - Star Trek_ TOS_ The Captain_s Oath.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher L. Bennett', 'DateLastRead': None, 'Title': "Star Trek: TOS: The Captain's Oath", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Christopher L. Bennett - Star Trek_ TOS_ The Captain_s Oath.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Orphan X - Gregg Hurwitz

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Orphan X # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Orphan X # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Gregg Hurwitz', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Orphan X', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Orphan X # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Gregg Hurwitz', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Orphan X', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Orphan X # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The President Is Missing - Bill Clinton & James Patterson

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The President Is Missing # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The President Is Missing # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/s013-Chapter-007.xhtml', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 10, 'Attribution': 'Bill Clinton & James Patterson', 'DateLastRead': '2022-09-03T16:48:04Z', 'Title': 'The President Is Missing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The President Is Missing # (v5.1).epub', 'TimeSpentReading': 8642, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-09-03 16:48:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Charlotte and Thomas Pitt 01 - The Cater Street Hangman - Anne Perry

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Charlotte and Thomas Pitt 01 - The Cater Street Hangman # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Charlotte and Thomas Pitt 01 - The Cater Street Hangman # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/5-chap2.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 9, 'Attribution': 'Anne Perry', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Charlotte and Thomas Pitt 01 - The Cater Street Hangman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charlotte and Thomas Pitt 01 - The Cater Street Hangman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: A Gentleman in Moscow - Amor Towles

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Gentleman in Moscow # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/A Gentleman in Moscow # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Amor Towles', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Gentleman in Moscow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Gentleman in Moscow # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Amor Towles', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Gentleman in Moscow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Gentleman in Moscow # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Waylander - David Gemmell

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Waylander # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Waylander # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Gemmell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Waylander', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Waylander # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Gemmell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Waylander', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Waylander # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: William Warwick 01 - Nothing Ventured - Jeffrey Archer

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/William Warwick 01 - Nothing Ventured # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/William Warwick 01 - Nothing Ventured # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'William Warwick 01 - Nothing Ventured', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 01 - Nothing Ventured # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'William Warwick 01 - Nothing Ventured', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 01 - Nothing Ventured # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: Charlotte and Thomas Pitt 02 - Callander Square - Anne Perry

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Charlotte and Thomas Pitt 02 - Callander Square # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Charlotte and Thomas Pitt 02 - Callander Square # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/1-cover.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Anne Perry', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Charlotte and Thomas Pitt 02 - Callander Square', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charlotte and Thomas Pitt 02 - Callander Square # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

	DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

	DEBUG:    0.1 _store_bookmarks - Current book: The Women in the Castle - Jessica Shattuck

	DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Women in the Castle # (v5.1).epub']'

	DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Women in the Castle # (v5.1).epub'

	DEBUG:    0.1 _store_bookmarks - device_status='None'

	DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jessica Shattuck', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Women in the Castle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Women in the Castle # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

	DEBUG:    0.1 _store_bookmarks - device_status is None

	DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

	DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

	DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jessica Shattuck', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Women in the Castle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Women in the Castle # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

	DEBUG:    0.1 _store_bookmarks - finished book loop

	DEBUG:    0.1 _store_bookmarks - finished


DEBUG:    1.3 Stored_location count=0
DEBUG:    1.3 Store locations

DEBUG:    0.0 _store_bookmarks - start

DEBUG:    0.0 DEBUG= False

DEBUG:    0.0 _store_bookmarks - about to start book loop

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Horrorstor - Grady Hendrix

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Grady Hendrix - Horrorstor.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Grady Hendrix - Horrorstor.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Grady Hendrix', 'DateLastRead': None, 'Title': 'Horrorstor', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grady Hendrix - Horrorstor.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Grady Hendrix', 'DateLastRead': None, 'Title': 'Horrorstor', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grady Hendrix - Horrorstor.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Hyperion Cantos 03 - Endymion - Dan Simmons

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 03 - Hyperion Cantos 03 - Endymion.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 03 - Hyperion Cantos 03 - Endymion.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 03 - Endymion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 03 - Hyperion Cantos 03 - Endymion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 03 - Endymion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 03 - Hyperion Cantos 03 - Endymion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Jack Reacher 07 - Persuader - Lee Child

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 07 - Jack Reacher 07 - Persuader.epub', 'file:///mnt/onboard/books/Lee Child - Persuader 07 - Jack Reacher 07 - Persuader.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 07 - Jack Reacher 07 - Persuader.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 07 - Persuader', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 07 - Jack Reacher 07 - Persuader.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Persuader 07 - Jack Reacher 07 - Persuader.epub'

DEBUG:    0.0 _store_bookmarks - device_status='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 07 - Persuader', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 07 - Jack Reacher 07 - Persuader.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 07 - Persuader', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Persuader 07 - Jack Reacher 07 - Persuader.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 07 - Persuader', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 07 - Jack Reacher 07 - Persuader.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Heritage of Shannara 01 - The Druid of Shannara - Terry Brooks

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Terry Brooks - Heritage of Shannara 1.0 - Heritage of Shannara 01 - The Druid of Shannara.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Terry Brooks - Heritage of Shannara 1.0 - Heritage of Shannara 01 - The Druid of Shannara.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Brooks', 'DateLastRead': None, 'Title': 'Heritage of Shannara 01 - The Druid of Shannara', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Brooks - Heritage of Shannara 1.0 - Heritage of Shannara 01 - The Druid of Shannara.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Brooks', 'DateLastRead': None, 'Title': 'Heritage of Shannara 01 - The Druid of Shannara', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Brooks - Heritage of Shannara 1.0 - Heritage of Shannara 01 - The Druid of Shannara.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Jack Reacher 16 - The Affair - Lee Child

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 16 - Jack Reacher 16 - The Affair.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 16 - Jack Reacher 16 - The Affair.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 16 - The Affair', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 16 - Jack Reacher 16 - The Affair.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 16 - The Affair', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 16 - Jack Reacher 16 - The Affair.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: His Dak Materials 0.6 - The Collectors - Philip Pullman

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Philip Pullman - His Dark Materials 0.6 - His Dak Materials 0.6 - The Collectors.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Philip Pullman - His Dark Materials 0.6 - His Dak Materials 0.6 - The Collectors.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/PULL_9781101940044_epub3_cvi_r1.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'Philip Pullman', 'DateLastRead': '2022-12-14T00:14:24Z', 'Title': 'His Dak Materials 0.6 - The Collectors', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Philip Pullman - His Dark Materials 0.6 - His Dak Materials 0.6 - The Collectors.epub', 'TimeSpentReading': 64, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-12-14 00:14:24+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Leviathan 02 - Behemoth - Westerfeld, Scott

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Leviathan 02 - Behemoth # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Leviathan 02 - Behemoth # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Westerfeld, Scott', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Leviathan 02 - Behemoth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Leviathan 02 - Behemoth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Westerfeld, Scott', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Leviathan 02 - Behemoth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Leviathan 02 - Behemoth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Dresden Files 12 - Changes - Jim Butcher

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jim Butcher - Dresden Files 12.0 - Dresden Files 12 - Changes.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Jim Butcher - Dresden Files 12.0 - Dresden Files 12 - Changes.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jim Butcher', 'DateLastRead': None, 'Title': 'Dresden Files 12 - Changes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jim Butcher - Dresden Files 12.0 - Dresden Files 12 - Changes.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Alex Verus 01 - Fated - Benedict Jacka

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Verus 01 - Fated # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Verus 01 - Fated # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/07_chapter001.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Benedict Jacka', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Alex Verus 01 - Fated', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Verus 01 - Fated # (v5.1).epub', 'TimeSpentReading': 6036, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: His Dark Materials 02 - The Subtle Knife - Philip Pullman

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Philip Pullman - His Dark Materials 2.0 - His Dark Materials 02 - The Subtle Knife.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Philip Pullman - His Dark Materials 2.0 - His Dark Materials 02 - The Subtle Knife.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip Pullman', 'DateLastRead': None, 'Title': 'His Dark Materials 02 - The Subtle Knife', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Philip Pullman - His Dark Materials 2.0 - His Dark Materials 02 - The Subtle Knife.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip Pullman', 'DateLastRead': None, 'Title': 'His Dark Materials 02 - The Subtle Knife', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Philip Pullman - His Dark Materials 2.0 - His Dark Materials 02 - The Subtle Knife.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Agent Pendergast 02 - Reliquary - Douglas Preston & Lincoln Child

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Agent Pendergast 02 - Reliquary # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Agent Pendergast 02 - Reliquary # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Douglas Preston & Lincoln Child', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Agent Pendergast 02 - Reliquary', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Agent Pendergast 02 - Reliquary # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Douglas Preston & Lincoln Child', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Agent Pendergast 02 - Reliquary', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Agent Pendergast 02 - Reliquary # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Shaggy Dog Bridge - Glen Cook

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Shaggy Dog Bridge # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Shaggy Dog Bridge # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Glen Cook', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Shaggy Dog Bridge', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Shaggy Dog Bridge # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Glen Cook', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Shaggy Dog Bridge', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Shaggy Dog Bridge # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The romance of King Arthur and his knights of the Round Table - Sir Thomas Malory

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sir Thomas Malory - The romance of King Arthur and his knights of the Round Table.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Sir Thomas Malory - The romance of King Arthur and his knights of the Round Table.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sir Thomas Malory', 'DateLastRead': None, 'Title': 'The romance of King Arthur and his knights of the Round Table', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sir Thomas Malory - The romance of King Arthur and his knights of the Round Table.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sir Thomas Malory', 'DateLastRead': None, 'Title': 'The romance of King Arthur and his knights of the Round Table', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sir Thomas Malory - The romance of King Arthur and his knights of the Round Table.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Second Sleep - Robert Harris

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Second Sleep # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Second Sleep # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Harris', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Second Sleep', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Second Sleep # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Harris', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Second Sleep', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Second Sleep # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Fatherland - Robert Harris

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Fatherland # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Fatherland # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter001.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 4, 'Attribution': 'Robert Harris', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Fatherland', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Fatherland # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Eve Duncan 02 - The Killing Game - Iris Johansen

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Eve Duncan 02 - The Killing Game # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Eve Duncan 02 - The Killing Game # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Iris Johansen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Eve Duncan 02 - The Killing Game', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Eve Duncan 02 - The Killing Game # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Iris Johansen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Eve Duncan 02 - The Killing Game', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Eve Duncan 02 - The Killing Game # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Warmth of Other Suns - Isabel Wilkerson

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Warmth of Other Suns # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Warmth of Other Suns # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Isabel Wilkerson', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The Warmth of Other Suns', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Warmth of Other Suns # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Isabel Wilkerson', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The Warmth of Other Suns', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Warmth of Other Suns # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Mike - P. G. Wodehouse

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mike.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Mike.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter01.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'P. G. Wodehouse', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Mike', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mike.epub', 'TimeSpentReading': 285, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Dovekeepers - Alice Hoffman

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Dovekeepers # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Dovekeepers # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice Hoffman', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Dovekeepers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dovekeepers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice Hoffman', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Dovekeepers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dovekeepers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Eve Duncan 03 - The Search - Iris Johansen

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Eve Duncan 03 - The Search # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Eve Duncan 03 - The Search # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Iris Johansen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Eve Duncan 03 - The Search', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Eve Duncan 03 - The Search # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Iris Johansen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Eve Duncan 03 - The Search', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Eve Duncan 03 - The Search # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Hyperion Cantos 04 - The Rise of Endymion - Dan Simmons

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 04 - Hyperion Cantos 04 - The Rise of Endymion.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 04 - Hyperion Cantos 04 - The Rise of Endymion.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 04 - The Rise of Endymion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 04 - Hyperion Cantos 04 - The Rise of Endymion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Becoming - Michelle Obama

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Becoming # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Becoming # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michelle Obama', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Becoming', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Becoming # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michelle Obama', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Becoming', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Becoming # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Five Hundred Kingdoms 02 - One Good Knight - Mercedes Lackey

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Five Hundred Kingdoms 02 - One Good Knight # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Five Hundred Kingdoms 02 - One Good Knight # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Five Hundred Kingdoms 02 - One Good Knight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Five Hundred Kingdoms 02 - One Good Knight # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Five Hundred Kingdoms 02 - One Good Knight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Five Hundred Kingdoms 02 - One Good Knight # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Camino Island 01 - Camino Island - John Grisham

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Camino Island 01 - Camino Island # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Camino Island 01 - Camino Island # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Camino Island 01 - Camino Island', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Camino Island 01 - Camino Island # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Camino Island 01 - Camino Island', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Camino Island 01 - Camino Island # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: A Prisoner of Birth - Jeffrey Archer

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Prisoner of Birth # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/A Prisoner of Birth # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Prisoner of Birth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Prisoner of Birth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Prisoner of Birth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Prisoner of Birth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Shout at the Devil - Wilbur Smith

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Shout at the Devil # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Shout at the Devil # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Shout at the Devil', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Shout at the Devil # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Shout at the Devil', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Shout at the Devil # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Dark of the Sun - Wilbur Smith

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Dark of the Sun # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Dark of the Sun # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Dark of the Sun', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dark of the Sun # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Dark of the Sun', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dark of the Sun # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Diamond Hunters - Wilbur Smith

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Diamond Hunters # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Diamond Hunters # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Diamond Hunters', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Diamond Hunters # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Diamond Hunters', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Diamond Hunters # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Drenai Saga 02 - The King Beyond the Gate - David Gemmell

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Drenai Saga 02 - The King Beyond the Gate # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Drenai Saga 02 - The King Beyond the Gate # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Gemmell', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Drenai Saga 02 - The King Beyond the Gate', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Drenai Saga 02 - The King Beyond the Gate # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Gemmell', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Drenai Saga 02 - The King Beyond the Gate', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Drenai Saga 02 - The King Beyond the Gate # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Sunbird - Wilbur Smith

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Sunbird # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Sunbird # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Sunbird', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Sunbird # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Sunbird', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Sunbird # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Cry Wolf - Wilbur Smith

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cry Wolf # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Cry Wolf # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cry Wolf', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cry Wolf # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cry Wolf', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cry Wolf # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Hollows 04 - A Fistful of Charms - Kim Harrison

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Hollows 04 - A Fistful of Charms # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Hollows 04 - A Fistful of Charms # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kim Harrison', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The Hollows 04 - A Fistful of Charms', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Hollows 04 - A Fistful of Charms # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kim Harrison', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The Hollows 04 - A Fistful of Charms', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Hollows 04 - A Fistful of Charms # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Discworld 29 - Night Watch - Terry Pratchett

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Terry Pratchett - Discworld 29 - Discworld 29 - Night Watch.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Terry Pratchett - Discworld 29 - Discworld 29 - Night Watch.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/begin.xhtml#point(/1/4/2464/1/1:22)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 26, 'Attribution': 'Terry Pratchett', 'DateLastRead': '2025-02-23T18:23:57Z', 'Title': 'Discworld 29 - Night Watch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Pratchett - Discworld 29 - Discworld 29 - Night Watch.epub', 'TimeSpentReading': 1562, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2025-02-23 18:23:57+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Lucas Davenport 04 - Silent Prey - John Sandford

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lucas Davenport 04 - Silent Prey # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Lucas Davenport 04 - Silent Prey # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Sandford', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Lucas Davenport 04 - Silent Prey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lucas Davenport 04 - Silent Prey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Sandford', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Lucas Davenport 04 - Silent Prey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lucas Davenport 04 - Silent Prey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Discworld 39 - Snuff - Terry Pratchett

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Terry Pratchett - Discworld 39.0 - Discworld 39 - Snuff.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Terry Pratchett - Discworld 39.0 - Discworld 39 - Snuff.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Pratchett', 'DateLastRead': None, 'Title': 'Discworld 39 - Snuff', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Pratchett - Discworld 39.0 - Discworld 39 - Snuff.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Pratchett', 'DateLastRead': None, 'Title': 'Discworld 39 - Snuff', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Pratchett - Discworld 39.0 - Discworld 39 - Snuff.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Roy Grace 01 - Dead Simple - Peter James

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Roy Grace 01 - Dead Simple.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Roy Grace 01 - Dead Simple.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter James', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Roy Grace 01 - Dead Simple', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Roy Grace 01 - Dead Simple.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter James', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Roy Grace 01 - Dead Simple', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Roy Grace 01 - Dead Simple.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: New York - Edward Rutherfurd

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/New York # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/New York # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'New York', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/New York # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'New York', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/New York # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: London - Edward Rutherfurd

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/London # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/London # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'London', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/London # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'London', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/London # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Forest - Edward Rutherfurd

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Forest # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Forest # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Forest', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Forest # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Forest', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Forest # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Sarum - Edward Rutherfurd

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sarum # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Sarum # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Sarum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarum # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Edward Rutherfurd', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Sarum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarum # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Century 01 - Fall of Giants - Ken Follett

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Century 01 - Fall of Giants # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Century 01 - Fall of Giants # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2024-12-15T23:43:04.109', 'Title': 'Century 01 - Fall of Giants', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 01 - Fall of Giants # (v5.1).epub', 'TimeSpentReading': 44, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2024-12-15 23:43:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2024-12-15T23:43:04.109', 'Title': 'Century 01 - Fall of Giants', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 01 - Fall of Giants # (v5.1).epub', 'TimeSpentReading': 44, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Bruno, Chief of Police 01 - Bruno, Chief of Police - Martin Walker

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bruno, Chief of Police 01 - Bruno, Chief of Police.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Bruno, Chief of Police 01 - Bruno, Chief of Police.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Walk_9780307271464_epub_c01_r1.htm#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Martin Walker', 'DateLastRead': '2022-12-01T23:02:22Z', 'Title': 'Bruno, Chief of Police 01 - Bruno, Chief of Police', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bruno, Chief of Police 01 - Bruno, Chief of Police.epub', 'TimeSpentReading': 33, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-12-01 23:02:22+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Isaac Bell 01 - The Chase - Clive Cussler

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Isaac Bell 01 - The Chase # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Isaac Bell 01 - The Chase # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Isaac Bell 01 - The Chase', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Isaac Bell 01 - The Chase # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Isaac Bell 01 - The Chase', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Isaac Bell 01 - The Chase # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Sunshine Sketches of a Little Town - Stephen Leacock

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stephen Leacock - Sunshine Sketches of a Little Town.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Stephen Leacock - Sunshine Sketches of a Little Town.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen Leacock', 'DateLastRead': None, 'Title': 'Sunshine Sketches of a Little Town', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen Leacock - Sunshine Sketches of a Little Town.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen Leacock', 'DateLastRead': None, 'Title': 'Sunshine Sketches of a Little Town', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen Leacock - Sunshine Sketches of a Little Town.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Dresden Files SSC02 - Brief Cases - Jim Butcher

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dresden Files SSC02 - Brief Cases # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Dresden Files SSC02 - Brief Cases # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/18_BOMBSHELLS.xhtml#point(/1/4/2/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 50, 'Attribution': 'Jim Butcher', 'DateLastRead': '2023-11-26T20:12:02Z', 'Title': 'Dresden Files SSC02 - Brief Cases', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dresden Files SSC02 - Brief Cases # (v5.1).epub', 'TimeSpentReading': 14008, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2023-11-26 20:12:02+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Dresden Files 13 - Ghost Story - Jim Butcher

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dresden Files 13 - Ghost Story # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Dresden Files 13 - Ghost Story # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jim Butcher', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Dresden Files 13 - Ghost Story', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dresden Files 13 - Ghost Story # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jim Butcher', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Dresden Files 13 - Ghost Story', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dresden Files 13 - Ghost Story # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Devil in the White City - Erik Larson

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Devil in the White City # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Devil in the White City # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Lars_9781400076314_epub_fm4_r1.htm#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'Erik Larson', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The Devil in the White City', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Devil in the White City # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The South Lawn Plot - Ray O'Hanlon

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The South Lawn Plot # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The South Lawn Plot # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': "Ray O'Hanlon", 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The South Lawn Plot', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The South Lawn Plot # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': "Ray O'Hanlon", 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'The South Lawn Plot', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The South Lawn Plot # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: A Walk in the Woods - Bill Bryson

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Walk in the Woods # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/A Walk in the Woods # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bill Bryson', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Walk in the Woods', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Walk in the Woods # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bill Bryson', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Walk in the Woods', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Walk in the Woods # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Teixcalaan 01 - A Memory Called Empire - Arkady Martine

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Teixcalaan 01 - A Memory Called Empire # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Teixcalaan 01 - A Memory Called Empire # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/interlude1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Arkady Martine', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Teixcalaan 01 - A Memory Called Empire', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Teixcalaan 01 - A Memory Called Empire # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Body Farm 01 - Carved in Bone - Jefferson Bass

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Body Farm 01 - Carved in Bone # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Body Farm 01 - Carved in Bone # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jefferson Bass', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Body Farm 01 - Carved in Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Body Farm 01 - Carved in Bone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jefferson Bass', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Body Farm 01 - Carved in Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Body Farm 01 - Carved in Bone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Place Called Freedom - Ken Follett

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Place Called Freedom # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Place Called Freedom # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Place Called Freedom', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Place Called Freedom # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Place Called Freedom', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Place Called Freedom # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Country of Ice Cream Star - Sandra Newman

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Country of Ice Cream Star # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Country of Ice Cream Star # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sandra Newman', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Country of Ice Cream Star', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Country of Ice Cream Star # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sandra Newman', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Country of Ice Cream Star', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Country of Ice Cream Star # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Adversary Cycle 04 - Reborn - F. Paul Wilson

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Adversary Cycle 04 - Reborn # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Adversary Cycle 04 - Reborn # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'F. Paul Wilson', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Adversary Cycle 04 - Reborn', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Adversary Cycle 04 - Reborn # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'F. Paul Wilson', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Adversary Cycle 04 - Reborn', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Adversary Cycle 04 - Reborn # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Matt Helm 01 - Death of a Citizen - Donald Hamilton

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Matt Helm 01 - Death of a Citizen # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Matt Helm 01 - Death of a Citizen # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donald Hamilton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Matt Helm 01 - Death of a Citizen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matt Helm 01 - Death of a Citizen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donald Hamilton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Matt Helm 01 - Death of a Citizen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matt Helm 01 - Death of a Citizen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Warlock 01 - The Warlock in Spite of Himself - Christopher Stasheff

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Warlock 01 - The Warlock in Spite of Himself # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Warlock 01 - The Warlock in Spite of Himself # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Stasheff', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Warlock 01 - The Warlock in Spite of Himself', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Warlock 01 - The Warlock in Spite of Himself # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Stasheff', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Warlock 01 - The Warlock in Spite of Himself', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Warlock 01 - The Warlock in Spite of Himself # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Cormoran Strike 04 - Lethal White - Robert Galbraith

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cormoran Strike 04 - Lethal White # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Cormoran Strike 04 - Lethal White # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cormoran Strike 04 - Lethal White', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cormoran Strike 04 - Lethal White # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cormoran Strike 04 - Lethal White', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cormoran Strike 04 - Lethal White # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 04 - Silent Voices - Ann Cleeves

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 04 - Silent Voices # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 04 - Silent Voices # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 04 - Silent Voices', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 04 - Silent Voices # (v5.1).epub', 'TimeSpentReading': 7, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 04 - Silent Voices', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 04 - Silent Voices # (v5.1).epub', 'TimeSpentReading': 7, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 03 - Hidden Depths - Ann Cleeves

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 03 - Hidden Depths # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 03 - Hidden Depths # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 03 - Hidden Depths', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 03 - Hidden Depths # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 03 - Hidden Depths', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 03 - Hidden Depths # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 05 - The Glass Room - Ann Cleeves

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 05 - The Glass Room # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 05 - The Glass Room # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 05 - The Glass Room', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 05 - The Glass Room # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 05 - The Glass Room', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 05 - The Glass Room # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 06 - Harbour Street - Ann Cleeves

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 06 - Harbour Street # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 06 - Harbour Street # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 06 - Harbour Street', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 06 - Harbour Street # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 06 - Harbour Street', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 06 - Harbour Street # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 07 - The Moth Catcher - Ann Cleeves

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 07 - The Moth Catcher # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 07 - The Moth Catcher # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 07 - The Moth Catcher', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 07 - The Moth Catcher # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 07 - The Moth Catcher', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 07 - The Moth Catcher # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 08 - The Seagull - Ann Cleeves

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 08 - The Seagull # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 08 - The Seagull # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 08 - The Seagull', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 08 - The Seagull # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 08 - The Seagull', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 08 - The Seagull # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 08.5 - Frozen - Ann Cleeves

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 08.5 - Frozen # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 08.5 - Frozen # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 08.5 - Frozen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 08.5 - Frozen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 08.5 - Frozen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 08.5 - Frozen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Vera Stanhope 09 - The Darkest Evening - Ann Cleeves

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 09 - The Darkest Evening # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 09 - The Darkest Evening # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 09 - The Darkest Evening', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 09 - The Darkest Evening # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 09 - The Darkest Evening', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 09 - The Darkest Evening # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Alex Benedict 01 - A Talent for War - Jack McDevitt

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Benedict 01 - A Talent for War # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Benedict 01 - A Talent for War # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack McDevitt', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Alex Benedict 01 - A Talent for War', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Benedict 01 - A Talent for War # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack McDevitt', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Alex Benedict 01 - A Talent for War', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Benedict 01 - A Talent for War # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Darwath 01 - The Time of the Dark - Barbara Hambly

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Darwath 01 - The Time of the Dark # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Darwath 01 - The Time of the Dark # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Barbara Hambly', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Darwath 01 - The Time of the Dark', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Darwath 01 - The Time of the Dark # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Barbara Hambly', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Darwath 01 - The Time of the Dark', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Darwath 01 - The Time of the Dark # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Existence - David Brin

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Existence # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Existence # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Brin', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Existence', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Existence # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Brin', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Existence', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Existence # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Legends of Shannara 01 - Bearers of the Black Staff - Terry Brooks

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Terry Brooks - Shannara 07 - Legends of Shannara 01 - Bearers of the Black Staff.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Terry Brooks - Shannara 07 - Legends of Shannara 01 - Bearers of the Black Staff.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Broo_9780345523006_epub_c01_r1.htm#point(/1/4/16/1:626)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Terry Brooks', 'DateLastRead': '2024-08-20T17:33:53Z', 'Title': 'Legends of Shannara 01 - Bearers of the Black Staff', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Brooks - Shannara 07 - Legends of Shannara 01 - Bearers of the Black Staff.epub', 'TimeSpentReading': 1353, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2024-08-20 17:33:53+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Kingsbridge 01 - The Evening and the Morning - Ken Follett

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kingsbridge 01 - The Evening and the Morning # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Kingsbridge 01 - The Evening and the Morning # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/14_Chapter_5_Late_July_9.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 13, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-09-21T18:23:31Z', 'Title': 'Kingsbridge 01 - The Evening and the Morning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kingsbridge 01 - The Evening and the Morning # (v5.1).epub', 'TimeSpentReading': 4050, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-09-21 18:23:31+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Perry Mason 02 - The Case of the Sulky Girl - Erle Stanley Gardner

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Perry Mason 02 - The Case of the Sulky Girl # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Perry Mason 02 - The Case of the Sulky Girl # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter01.xhtml#point(/1/3/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Erle Stanley Gardner', 'DateLastRead': '2023-10-12T20:22:18Z', 'Title': 'Perry Mason 02 - The Case of the Sulky Girl', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Perry Mason 02 - The Case of the Sulky Girl # (v5.1).epub', 'TimeSpentReading': 36, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2023-10-12 20:22:18+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Wheel of Time 00 - New Spring - Robert Jordan

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wheel of Time 00 - New Spring # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Wheel of Time 00 - New Spring # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wheel of Time 00 - New Spring', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wheel of Time 00 - New Spring # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wheel of Time 00 - New Spring', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wheel of Time 00 - New Spring # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Cormoran Strike 05 - Troubled Blood - Robert Galbraith

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cormoran Strike 05 - Troubled Blood # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Cormoran Strike 05 - Troubled Blood # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cormoran Strike 05 - Troubled Blood', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cormoran Strike 05 - Troubled Blood # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Cormoran Strike 05 - Troubled Blood', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cormoran Strike 05 - Troubled Blood # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Nor Crystal Tears - Alan Dean Foster

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nor Crystal Tears.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Nor Crystal Tears.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter001.html#point(/1/4/2/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Alan Dean Foster', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Nor Crystal Tears', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nor Crystal Tears.epub', 'TimeSpentReading': 43, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Legends of Shannara 02 - The Measure of the Magic - Terry Brooks

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Terry Brooks - Shannara 08 - Legends of Shannara 02 - The Measure of the Magic.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Terry Brooks - Shannara 08 - Legends of Shannara 02 - The Measure of the Magic.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Brooks', 'DateLastRead': None, 'Title': 'Legends of Shannara 02 - The Measure of the Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Brooks - Shannara 08 - Legends of Shannara 02 - The Measure of the Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Terry Brooks', 'DateLastRead': None, 'Title': 'Legends of Shannara 02 - The Measure of the Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Terry Brooks - Shannara 08 - Legends of Shannara 02 - The Measure of the Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Wheel of Time 01 - The Eye of the World - Robert Jordan

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wheel of Time 01 - The Eye of the World # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Wheel of Time 01 - The Eye of the World # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wheel of Time 01 - The Eye of the World', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wheel of Time 01 - The Eye of the World # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wheel of Time 01 - The Eye of the World', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wheel of Time 01 - The Eye of the World # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: A Drop of Night - Stefan Bachmann

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Drop of Night # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/A Drop of Night # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stefan Bachmann', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Drop of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Drop of Night # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stefan Bachmann', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Drop of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Drop of Night # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Rise and Fall of D.O.D.O. - Neal Stephenson

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Rise and Fall of D.O.D.O. # (v5.0).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Rise and Fall of D.O.D.O. # (v5.0).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/Ch01-002.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Neal Stephenson', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Rise and Fall of D.O.D.O.', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Rise and Fall of D.O.D.O. # (v5.0).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Hercule Poirot 00 - Poirot's Early Cases - Agatha Christie

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Hercule Poirot 00 - Poirot_s Early Cases # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Hercule Poirot 00 - Poirot_s Early Cases # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter10.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 53, 'Attribution': 'Agatha Christie', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Hercule Poirot 00 - Poirot's Early Cases", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Hercule Poirot 00 - Poirot_s Early Cases # (v5.1).epub', 'TimeSpentReading': 734, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Miss Marple 00 - Miss Marple: The Complete Short Stories - Agatha Christie

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Miss Marple 00 - Miss Marple_ The Complete Short Stories.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Miss Marple 00 - Miss Marple_ The Complete Short Stories.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Agatha Christie', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Miss Marple 00 - Miss Marple: The Complete Short Stories', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Miss Marple 00 - Miss Marple_ The Complete Short Stories.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Agatha Christie', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Miss Marple 00 - Miss Marple: The Complete Short Stories', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Miss Marple 00 - Miss Marple_ The Complete Short Stories.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Star Trek: Voy - The Autobiography of Kathryn Janeway - Una McCormack

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ Voy - The Autobiography of Kathryn Janeway # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ Voy - The Autobiography of Kathryn Janeway # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Una McCormack', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: Voy - The Autobiography of Kathryn Janeway', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ Voy - The Autobiography of Kathryn Janeway # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Una McCormack', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: Voy - The Autobiography of Kathryn Janeway', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ Voy - The Autobiography of Kathryn Janeway # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Star Trek: Voy - To Lose the Earth - Kirsten Beyer

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kirsten Beyer - Star Trek_ Voy - To Lose the Earth.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Kirsten Beyer - Star Trek_ Voy - To Lose the Earth.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'e9781501138850/xhtml/ch11.xhtml#point(/1/4/294/1:81)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 53, 'Attribution': 'Kirsten Beyer', 'DateLastRead': '2025-02-28T11:43:21Z', 'Title': 'Star Trek: Voy - To Lose the Earth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kirsten Beyer - Star Trek_ Voy - To Lose the Earth.epub', 'TimeSpentReading': 22970, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2025-02-28 11:43:21+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Friday the Rabbi Slept Late - Harry Kemelman

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Harry Kemelman - Rabbi Small 01 - Friday the Rabbi Slept Late.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Harry Kemelman - Rabbi Small 01 - Friday the Rabbi Slept Late.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Harry Kemelman', 'DateLastRead': None, 'Title': 'Friday the Rabbi Slept Late', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Harry Kemelman - Rabbi Small 01 - Friday the Rabbi Slept Late.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Harry Kemelman', 'DateLastRead': None, 'Title': 'Friday the Rabbi Slept Late', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Harry Kemelman - Rabbi Small 01 - Friday the Rabbi Slept Late.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Perry Mason 03 - The Case of the Lucky Legs - Erle Stanley Gardner

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Perry Mason 03 - The Case of the Lucky Legs # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Perry Mason 03 - The Case of the Lucky Legs # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erle Stanley Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Perry Mason 03 - The Case of the Lucky Legs', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Perry Mason 03 - The Case of the Lucky Legs # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erle Stanley Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Perry Mason 03 - The Case of the Lucky Legs', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Perry Mason 03 - The Case of the Lucky Legs # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Song of Fire & Ice 02 - A Clash of Kings - George R.R. Martin

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Song of Fire & Ice 02 - A Clash of Kings # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Song of Fire & Ice 02 - A Clash of Kings # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Song of Fire & Ice 02 - A Clash of Kings', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 02 - A Clash of Kings # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Song of Fire & Ice 02 - A Clash of Kings', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 02 - A Clash of Kings # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Star Trek: TOS: A Contest of Principles - Greg Cox

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ TOS_ A Contest of Principles # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ TOS_ A Contest of Principles # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Greg Cox', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: TOS: A Contest of Principles', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TOS_ A Contest of Principles # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Greg Cox', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: TOS: A Contest of Principles', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TOS_ A Contest of Principles # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Snow Queen 01 - The Snow Queen - Joan D. Vinge

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Snow Queen 01 - The Snow Queen # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Snow Queen 01 - The Snow Queen # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joan D. Vinge', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Snow Queen 01 - The Snow Queen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Snow Queen 01 - The Snow Queen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joan D. Vinge', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Snow Queen 01 - The Snow Queen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Snow Queen 01 - The Snow Queen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: William Warwick 02 - Hidden in Plain Sight - Jeffrey Archer

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/William Warwick 02 - Hidden in Plain Sight # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/William Warwick 02 - Hidden in Plain Sight # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 02 - Hidden in Plain Sight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 02 - Hidden in Plain Sight # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 02 - Hidden in Plain Sight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 02 - Hidden in Plain Sight # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: McTeague - Frank Norris

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Frank Norris - McTeague.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Frank Norris - McTeague.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Frank Norris', 'DateLastRead': None, 'Title': 'McTeague', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Frank Norris - McTeague.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Frank Norris', 'DateLastRead': None, 'Title': 'McTeague', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Frank Norris - McTeague.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Star Trek - Picard 02 - The Dark Veil - James Swallow

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James Swallow - Star Trek Picard 02 - Star Trek - Picard 02 - The Dark Veil.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/James Swallow - Star Trek Picard 02 - Star Trek - Picard 02 - The Dark Veil.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Swallow', 'DateLastRead': None, 'Title': 'Star Trek - Picard 02 - The Dark Veil', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Swallow - Star Trek Picard 02 - Star Trek - Picard 02 - The Dark Veil.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Shanghaied - David Paul Collins

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David Paul Collins - Shanghaied.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/David Paul Collins - Shanghaied.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Paul Collins', 'DateLastRead': None, 'Title': 'Shanghaied', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Paul Collins - Shanghaied.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Paul Collins', 'DateLastRead': None, 'Title': 'Shanghaied', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Paul Collins - Shanghaied.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: All Souls 02 - Shadow of Night - Deborah Harkness

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/All Souls 02 - Shadow of Night # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/All Souls 02 - Shadow of Night # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Deborah Harkness', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'All Souls 02 - Shadow of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/All Souls 02 - Shadow of Night # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Deborah Harkness', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'All Souls 02 - Shadow of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/All Souls 02 - Shadow of Night # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: All Souls 03 - The Book of Life - Deborah Harkness

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/All Souls 03 - The Book of Life # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/All Souls 03 - The Book of Life # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Deborah Harkness', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'All Souls 03 - The Book of Life', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/All Souls 03 - The Book of Life # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Deborah Harkness', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'All Souls 03 - The Book of Life', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/All Souls 03 - The Book of Life # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Wayne of Gotham - Tracy Hickman

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayne of Gotham # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayne of Gotham # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tracy Hickman', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Wayne of Gotham', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayne of Gotham # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tracy Hickman', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Wayne of Gotham', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayne of Gotham # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: A Promised Land - Barack Obama

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Promised Land # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/A Promised Land # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/Obam_9781524763183_epub3_c006_r1.xhtml#point(/1/4/2/2/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 16, 'Attribution': 'Barack Obama', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'A Promised Land', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Promised Land # (v5.1).epub', 'TimeSpentReading': 13387, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Scot Harvath 02 - Path of the Assassin - Brad Thor

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Scot Harvath 02 - Path of the Assassin # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Scot Harvath 02 - Path of the Assassin # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brad Thor', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Scot Harvath 02 - Path of the Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Scot Harvath 02 - Path of the Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:06+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brad Thor', 'DateLastRead': '2022-04-17T12:16:06Z', 'Title': 'Scot Harvath 02 - Path of the Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Scot Harvath 02 - Path of the Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Lincoln Rhyme 01 - The Bone Collector - Jeffery Deaver

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lincoln Rhyme 01 - The Bone Collector # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Lincoln Rhyme 01 - The Bone Collector # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffery Deaver', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Lincoln Rhyme 01 - The Bone Collector', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lincoln Rhyme 01 - The Bone Collector # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffery Deaver', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Lincoln Rhyme 01 - The Bone Collector', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lincoln Rhyme 01 - The Bone Collector # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Star Trek: Myriad Universes 03: Shattered Light - David R. George III

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David R. George III - Star Trek_ Myriad Universes 03_ Shattered Light.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/David R. George III - Star Trek_ Myriad Universes 03_ Shattered Light.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David R. George III', 'DateLastRead': None, 'Title': 'Star Trek: Myriad Universes 03: Shattered Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David R. George III - Star Trek_ Myriad Universes 03_ Shattered Light.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Paris Library - Janet Skeslien Charles

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Paris Library # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Paris Library # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Janet Skeslien Charles', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Paris Library', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Paris Library # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Janet Skeslien Charles', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Paris Library', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Paris Library # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Outlander 02 - Dragonfly in Amber - Diana Gabaldon

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Outlander 02 - Dragonfly in Amber # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Outlander 02 - Dragonfly in Amber # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Gabaldon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Outlander 02 - Dragonfly in Amber', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Outlander 02 - Dragonfly in Amber # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Gabaldon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Outlander 02 - Dragonfly in Amber', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Outlander 02 - Dragonfly in Amber # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Outlander 03 - Voyager - Diana Gabaldon

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Outlander 03 - Voyager # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Outlander 03 - Voyager # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Gabaldon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Outlander 03 - Voyager', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Outlander 03 - Voyager # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Gabaldon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Outlander 03 - Voyager', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Outlander 03 - Voyager # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Chief Inspector Barnaby 01 - The Killings at Badger's Drift - Caroline Graham

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Barnaby 01 - The Killings at Badger_s Drift # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Barnaby 01 - The Killings at Badger_s Drift # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Caroline Graham', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Chief Inspector Barnaby 01 - The Killings at Badger's Drift", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Barnaby 01 - The Killings at Badger_s Drift # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Caroline Graham', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Chief Inspector Barnaby 01 - The Killings at Badger's Drift", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Barnaby 01 - The Killings at Badger_s Drift # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Gone Girl - Gillian Flynn

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Gone Girl # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Gone Girl # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Gillian Flynn', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Gone Girl', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gone Girl # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Gillian Flynn', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Gone Girl', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gone Girl # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Gentleman Jole and the Red Queen - Lois McMaster Bujold

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Gentleman Jole and the Red Queen # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Gentleman Jole and the Red Queen # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': 'gj_split_005.html#point(/1/4/4/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Gentleman Jole and the Red Queen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gentleman Jole and the Red Queen # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Grishaverse 0.5 - The Language of Thorns - Leigh Bardugo

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Grishaverse 0.5 - The Language of Thorns # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Grishaverse 0.5 - The Language of Thorns # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 0.5 - The Language of Thorns', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 0.5 - The Language of Thorns # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 0.5 - The Language of Thorns', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 0.5 - The Language of Thorns # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: William Warwick 03 - Turn a Blind Eye - Jeffrey Archer

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/William Warwick 03 - Turn a Blind Eye # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/William Warwick 03 - Turn a Blind Eye # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 03 - Turn a Blind Eye', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 03 - Turn a Blind Eye # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 03 - Turn a Blind Eye', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 03 - Turn a Blind Eye # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Song of Fire & Ice 04 - A Feast for Crows - George R.R. Martin

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Song of Fire & Ice 04 - A Feast for Crows # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Song of Fire & Ice 04 - A Feast for Crows # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Song of Fire & Ice 04 - A Feast for Crows', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 04 - A Feast for Crows # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Song of Fire & Ice 04 - A Feast for Crows', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 04 - A Feast for Crows # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Grishaverse 01 - Shadow and Bone - Leigh Bardugo

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Grishaverse 01 - Shadow and Bone # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Grishaverse 01 - Shadow and Bone # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 01 - Shadow and Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 01 - Shadow and Bone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 01 - Shadow and Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 01 - Shadow and Bone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Grishaverse 01.5 - The Tailor - Leigh Bardugo

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Grishaverse 01.5 - The Tailor # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Grishaverse 01.5 - The Tailor # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 01.5 - The Tailor', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 01.5 - The Tailor # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Grishaverse 01.5 - The Tailor', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Grishaverse 01.5 - The Tailor # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: The Time Machine - H. G. Wells

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Time Machine.epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/The Time Machine.epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'H. G. Wells', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Time Machine', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Time Machine.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'H. G. Wells', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Time Machine', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Time Machine.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: Song of Fire & Ice 05 - A Dance with Dragons - George R.R. Martin

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Song of Fire & Ice 05 - A Dance with Dragons # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/Song of Fire & Ice 05 - A Dance with Dragons # (v5.1).epub'

DEBUG:    0.0 _store_bookmarks - device_status='None'

DEBUG:    0.0 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Song of Fire & Ice 05 - A Dance with Dragons', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 05 - A Dance with Dragons # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.0 _store_bookmarks - device_status is None

DEBUG:    0.0 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.0 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.0 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George R.R. Martin', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Song of Fire & Ice 05 - A Dance with Dragons', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Song of Fire & Ice 05 - A Dance with Dragons # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.0 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.0 _store_bookmarks - Current book: WMC 21 - 21st Birthday - James Patterson & Maxine Paetro

DEBUG:    0.0 _store_bookmarks - contentIds='['file:///mnt/onboard/books/WMC 21 - 21st Birthday # (v5.1).epub']'

DEBUG:    0.0 _store_bookmarks - contentId='file:///mnt/onboard/books/WMC 21 - 21st Birthday # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/s006-Chapter-001.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'James Patterson & Maxine Paetro', 'DateLastRead': '2023-06-14T18:35:08Z', 'Title': 'WMC 21 - 21st Birthday', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/WMC 21 - 21st Birthday # (v5.1).epub', 'TimeSpentReading': 54, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-06-14 18:35:08+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Penric's Demon - Lois McMaster Bujold

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Penric_s Demon # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Penric_s Demon # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Penric's Demon", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Penric_s Demon # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Penric's Demon", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Penric_s Demon # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Century 02 - Winter of the World - Ken Follett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Century 02 - Winter of the World # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Century 02 - Winter of the World # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Century 02 - Winter of the World', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 02 - Winter of the World # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Century 02 - Winter of the World', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 02 - Winter of the World # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: DSC 08: Wonderlands - Una McCormack

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ DSC 08_ Wonderlands # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ DSC 08_ Wonderlands # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Una McCormack', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Star Trek: DSC 08: Wonderlands', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ DSC 08_ Wonderlands # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Una McCormack', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Star Trek: DSC 08: Wonderlands', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ DSC 08_ Wonderlands # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lord Foul's Bane - Stephen R. Donaldson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lord Foul_s Bane # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lord Foul_s Bane # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen R. Donaldson', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Lord Foul's Bane", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lord Foul_s Bane # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen R. Donaldson', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': "Lord Foul's Bane", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lord Foul_s Bane # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Dovekeepers: A Novel - Alice Hoffman

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Dovekeepers_ A Novel # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Dovekeepers_ A Novel # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice Hoffman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Dovekeepers: A Novel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dovekeepers_ A Novel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice Hoffman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Dovekeepers: A Novel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dovekeepers_ A Novel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Choose Me - Tess Gerritsen & Gary Braver

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Choose Me # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Choose Me # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter01.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Tess Gerritsen & Gary Braver', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Choose Me', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Choose Me # (v5.1).epub', 'TimeSpentReading': 476, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: TNG: Shadows Have Offended - Cassandra Rose Clarke

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ TNG_ Shadows Have Offended # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ TNG_ Shadows Have Offended # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cassandra Rose Clarke', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Star Trek: TNG: Shadows Have Offended', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TNG_ Shadows Have Offended # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cassandra Rose Clarke', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Star Trek: TNG: Shadows Have Offended', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TNG_ Shadows Have Offended # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Cleopatra Fox 01 - Murder at the Mayfair Hotel - C.J. Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cleopatra Fox 01 - Murder at the Mayfair Hotel # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cleopatra Fox 01 - Murder at the Mayfair Hotel # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C.J. Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Cleopatra Fox 01 - Murder at the Mayfair Hotel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cleopatra Fox 01 - Murder at the Mayfair Hotel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C.J. Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Cleopatra Fox 01 - Murder at the Mayfair Hotel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cleopatra Fox 01 - Murder at the Mayfair Hotel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Billy Summers - Stephen King

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stephen King - Billy Summers.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stephen King - Billy Summers.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'Billy Summers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - Billy Summers.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'Billy Summers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - Billy Summers.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Constance 01 - Constance - Matthew FitzSimmons

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Constance 01 - Constance # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Constance 01 - Constance # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Matthew FitzSimmons', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Constance 01 - Constance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Constance 01 - Constance # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Matthew FitzSimmons', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Constance 01 - Constance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Constance 01 - Constance # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Home Stretch - Graham Norton

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Home Stretch # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Home Stretch # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Graham Norton', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Home Stretch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Home Stretch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Graham Norton', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Home Stretch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Home Stretch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Scorpion - Christian Cantrell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Scorpion # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Scorpion # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christian Cantrell', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Scorpion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Scorpion # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christian Cantrell', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Scorpion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Scorpion # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Flashman Papers 01 - Flashman - George MacDonald Fraser

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Flashman Papers 01 - Flashman.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Flashman Papers 01 - Flashman.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George MacDonald Fraser', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Flashman Papers 01 - Flashman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Flashman Papers 01 - Flashman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'George MacDonald Fraser', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Flashman Papers 01 - Flashman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Flashman Papers 01 - Flashman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Institute - Stephen King

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Institute # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Institute # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Institute', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Institute # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Institute', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Institute # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: In Death 53 - Forgotten in Death - J. D. Robb

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 53.0 - In Death 53 - Forgotten in Death.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 53.0 - In Death 53 - Forgotten in Death.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/epigraph.xhtml#point(/1/4/4/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'J. D. Robb', 'DateLastRead': '2025-02-08T00:58:27Z', 'Title': 'In Death 53 - Forgotten in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 53.0 - In Death 53 - Forgotten in Death.epub', 'TimeSpentReading': 14, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-02-08 00:58:27+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Alexandra Cooper 01 - Final Jeopardy - Linda Fairstein

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alexandra Cooper 01 - Final Jeopardy.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alexandra Cooper 01 - Final Jeopardy.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Linda Fairstein', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Alexandra Cooper 01 - Final Jeopardy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alexandra Cooper 01 - Final Jeopardy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Linda Fairstein', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Alexandra Cooper 01 - Final Jeopardy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alexandra Cooper 01 - Final Jeopardy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Cloud Cuckoo Land - Anthony Doerr

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cloud Cuckoo Land # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cloud Cuckoo Land # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Anthony Doerr', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Cloud Cuckoo Land', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cloud Cuckoo Land # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Anthony Doerr', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Cloud Cuckoo Land', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cloud Cuckoo Land # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: William Warwick 04 - Over My Dead Body - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/William Warwick 04 - Over My Dead Body # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/William Warwick 04 - Over My Dead Body # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 04 - Over My Dead Body', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 04 - Over My Dead Body # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'William Warwick 04 - Over My Dead Body', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 04 - Over My Dead Body # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Matthew Scudder 03 - Time to Murder and Create - Lawrence Block

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Matthew Scudder 03 - Time to Murder and Create # (v5.2).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Matthew Scudder 03 - Time to Murder and Create # (v5.2).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lawrence Block', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Matthew Scudder 03 - Time to Murder and Create', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matthew Scudder 03 - Time to Murder and Create # (v5.2).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lawrence Block', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Matthew Scudder 03 - Time to Murder and Create', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matthew Scudder 03 - Time to Murder and Create # (v5.2).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Star Trek Prometheus 01 - Fire with Fire - Christian Humberg

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek Prometheus 01 - Fire with Fire # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek Prometheus 01 - Fire with Fire # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christian Humberg', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek Prometheus 01 - Fire with Fire', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek Prometheus 01 - Fire with Fire # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christian Humberg', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek Prometheus 01 - Fire with Fire', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek Prometheus 01 - Fire with Fire # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lady Almina and the Real Downton Abbey - The Countess of Carnarvon

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lady Almina and the Real Downton Abbey # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lady Almina and the Real Downton Abbey # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'The Countess of Carnarvon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lady Almina and the Real Downton Abbey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lady Almina and the Real Downton Abbey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'The Countess of Carnarvon', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lady Almina and the Real Downton Abbey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lady Almina and the Real Downton Abbey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: State of Terror - Louise Penny & Hillary Rodham Clinton

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Louise Penny & Hillary Rodham Clinton - State of Terror.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Louise Penny & Hillary Rodham Clinton - State of Terror.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny & Hillary Rodham Clinton', 'DateLastRead': None, 'Title': 'State of Terror', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Louise Penny & Hillary Rodham Clinton - State of Terror.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny & Hillary Rodham Clinton', 'DateLastRead': None, 'Title': 'State of Terror', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Louise Penny & Hillary Rodham Clinton - State of Terror.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Magician - Colm Tóibín

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Magician # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Magician # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Colm Tóibín', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Magician', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Magician # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Colm Tóibín', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'The Magician', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Magician # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: In Death 54 - Abandoned in Death - J. D. Robb

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 54.0 - In Death 54 - Abandoned in Death.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 54.0 - In Death 54 - Abandoned in Death.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 54 - Abandoned in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 54.0 - In Death 54 - Abandoned in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 54 - Abandoned in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 54.0 - In Death 54 - Abandoned in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: A Clubbable Woman - Reginald Hill

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Clubbable Woman # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/A Clubbable Woman # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Reginald Hill', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'A Clubbable Woman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Clubbable Woman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Reginald Hill', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'A Clubbable Woman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Clubbable Woman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Wayward Children 04 - In an Absent Dream - Seanan McGuire

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayward Children 04 - In an Absent Dream # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayward Children 04 - In an Absent Dream # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 04 - In an Absent Dream', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 04 - In an Absent Dream # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 04 - In an Absent Dream', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 04 - In an Absent Dream # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Wayward Children 06 - Across the Green Grass Fields - Seanan McGuire

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayward Children 06 - Across the Green Grass Fields # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayward Children 06 - Across the Green Grass Fields # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 06 - Across the Green Grass Fields', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 06 - Across the Green Grass Fields # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 06 - Across the Green Grass Fields', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 06 - Across the Green Grass Fields # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Wayward Children 05 - Come Tumbling Down - Seanan McGuire

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayward Children 05 - Come Tumbling Down # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayward Children 05 - Come Tumbling Down # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 05 - Come Tumbling Down', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 05 - Come Tumbling Down # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 05 - Come Tumbling Down', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 05 - Come Tumbling Down # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Wayward Children 07 - Where the Drowned Girls Go - Seanan McGuire

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayward Children 07 - Where the Drowned Girls Go # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayward Children 07 - Where the Drowned Girls Go # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 07 - Where the Drowned Girls Go', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 07 - Where the Drowned Girls Go # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Seanan McGuire', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Wayward Children 07 - Where the Drowned Girls Go', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Children 07 - Where the Drowned Girls Go # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Bazil Broketail 01 - Bazil Broketail - Christopher Rowley

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bazil Broketail 01 - Bazil Broketail # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bazil Broketail 01 - Bazil Broketail # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Rowley', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Bazil Broketail 01 - Bazil Broketail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bazil Broketail 01 - Bazil Broketail # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Rowley', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Bazil Broketail 01 - Bazil Broketail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bazil Broketail 01 - Bazil Broketail # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 06 - Bury Your Dead - Louise Penny

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 06 - Bury Your Dead # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 06 - Bury Your Dead # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 06 - Bury Your Dead', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 06 - Bury Your Dead # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 06 - Bury Your Dead', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 06 - Bury Your Dead # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 06.5 - The Hangman - Louise Penny

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 06.5 - The Hangman # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 06.5 - The Hangman # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 06.5 - The Hangman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 06.5 - The Hangman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 06.5 - The Hangman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 06.5 - The Hangman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 07 - A Trick of the Light - Louise Penny

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 07 - A Trick of the Light # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 07 - A Trick of the Light # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 07 - A Trick of the Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 07 - A Trick of the Light # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 07 - A Trick of the Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 07 - A Trick of the Light # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 08 - The Beautiful Mystery - Louise Penny

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 08 - The Beautiful Mystery # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 08 - The Beautiful Mystery # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 08 - The Beautiful Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 08 - The Beautiful Mystery # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 08 - The Beautiful Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 08 - The Beautiful Mystery # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 09 - How the Light Gets In - Louise Penny

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 09 - How the Light Gets In # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 09 - How the Light Gets In # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 09 - How the Light Gets In', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 09 - How the Light Gets In # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 09 - How the Light Gets In', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 09 - How the Light Gets In # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 10 - The Long Way Home - Louise Penny

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 10 - The Long Way Home # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 10 - The Long Way Home # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 10 - The Long Way Home', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 10 - The Long Way Home # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 10 - The Long Way Home', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 10 - The Long Way Home # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 11 - The Nature of the Beast - Louise Penny

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 11 - The Nature of the Beast # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 11 - The Nature of the Beast # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 11 - The Nature of the Beast', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 11 - The Nature of the Beast # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 11 - The Nature of the Beast', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 11 - The Nature of the Beast # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chief Inspector Gamache 12 - A Great Reckoning - Louise Penny

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Chief Inspector Gamache 12 - A Great Reckoning # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Chief Inspector Gamache 12 - A Great Reckoning # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 12 - A Great Reckoning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 12 - A Great Reckoning # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Penny', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'Chief Inspector Gamache 12 - A Great Reckoning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Chief Inspector Gamache 12 - A Great Reckoning # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Alex Deleware 02 - Blood Test - Jonathan Kellerman

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Deleware 02 - Blood Test # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Deleware 02 - Blood Test # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jonathan Kellerman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Alex Deleware 02 - Blood Test', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Deleware 02 - Blood Test # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jonathan Kellerman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Alex Deleware 02 - Blood Test', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Deleware 02 - Blood Test # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Last Chronicles of Thomas Covenant 02 - Fatal Revenant - Stephen R. Donaldson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Last Chronicles of Thomas Covenant 02 - Fatal Revenant # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Last Chronicles of Thomas Covenant 02 - Fatal Revenant # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen R. Donaldson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Last Chronicles of Thomas Covenant 02 - Fatal Revenant', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Chronicles of Thomas Covenant 02 - Fatal Revenant # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen R. Donaldson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Last Chronicles of Thomas Covenant 02 - Fatal Revenant', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Chronicles of Thomas Covenant 02 - Fatal Revenant # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: A Liaden Universe® Constellation: Volume Two - Sharon Lee & Steve Miller

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Liaden Universe(r) Constellation_ Volume Two # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/A Liaden Universe(r) Constellation_ Volume Two # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sharon Lee & Steve Miller', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'A Liaden Universe® Constellation: Volume Two', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Liaden Universe(r) Constellation_ Volume Two # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:03+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sharon Lee & Steve Miller', 'DateLastRead': '2022-04-17T12:16:03Z', 'Title': 'A Liaden Universe® Constellation: Volume Two', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Liaden Universe(r) Constellation_ Volume Two # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Gabriel Wolfe 01 - Trigger Point - Andy Maslen

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Gabriel Wolfe 01 - Trigger Point # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Gabriel Wolfe 01 - Trigger Point # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Maslen', 'DateLastRead': None, 'Title': 'Gabriel Wolfe 01 - Trigger Point', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gabriel Wolfe 01 - Trigger Point # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Maslen', 'DateLastRead': None, 'Title': 'Gabriel Wolfe 01 - Trigger Point', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gabriel Wolfe 01 - Trigger Point # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Lord of the Rings - J. R. R. Tolkien

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Lord of the Rings - J. R. R. Tolkien.kepub.epub', 'file:///mnt/onboard/books/J. R. R. Tolkien - Middle Earth 04 - The Lord of the Rings.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Lord of the Rings - J. R. R. Tolkien.kepub.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'p01b01c02.xhtml#', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'J. R. R. Tolkien', 'DateLastRead': '2022-04-20T11:15:32Z', 'Title': 'The Lord of the Rings', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Lord of the Rings - J. R. R. Tolkien.kepub.epub', 'TimeSpentReading': 142, 'RestOfBookEstimate': 133915}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. R. R. Tolkien - Middle Earth 04 - The Lord of the Rings.epub'

DEBUG:    0.1 _store_bookmarks - device_status='{'ChapterIDBookmarked': 'p01b01c02.xhtml#', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'J. R. R. Tolkien', 'DateLastRead': '2022-04-20T11:15:32Z', 'Title': 'The Lord of the Rings', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Lord of the Rings - J. R. R. Tolkien.kepub.epub', 'TimeSpentReading': 142, 'RestOfBookEstimate': 133915}'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. R. R. Tolkien', 'DateLastRead': None, 'Title': 'The Lord of the Rings', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. R. R. Tolkien - Middle Earth 04 - The Lord of the Rings.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-20 11:15:32+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: 87th Precinct 03 - The Pusher - Ed McBain

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/87th Precinct 03 - The Pusher # (v5.1).kepub.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/87th Precinct 03 - The Pusher # (v5.1).kepub.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ed McBain', 'DateLastRead': None, 'Title': '87th Precinct 03 - The Pusher', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/87th Precinct 03 - The Pusher # (v5.1).kepub.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ed McBain', 'DateLastRead': None, 'Title': '87th Precinct 03 - The Pusher', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/87th Precinct 03 - The Pusher # (v5.1).kepub.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Alex Delaware 03 - Over the Edge - Jonathan Kellerman

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Delaware 03 - Over the Edge # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Delaware 03 - Over the Edge # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jonathan Kellerman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Alex Delaware 03 - Over the Edge', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Delaware 03 - Over the Edge # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jonathan Kellerman', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Alex Delaware 03 - Over the Edge', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Delaware 03 - Over the Edge # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: 87th Precinct 04 - The Con Man - Ed McBain

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ed McBain - The Con Man 4.0 - 87th Precinct 04 - The Con Man.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ed McBain - The Con Man 4.0 - 87th Precinct 04 - The Con Man.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ed McBain', 'DateLastRead': None, 'Title': '87th Precinct 04 - The Con Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ed McBain - The Con Man 4.0 - 87th Precinct 04 - The Con Man.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ed McBain', 'DateLastRead': None, 'Title': '87th Precinct 04 - The Con Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ed McBain - The Con Man 4.0 - 87th Precinct 04 - The Con Man.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vorkosigan 01 - Miles, Mystery & Mayhem - Lois McMaster Bujold

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vorkosigan 01 - Miles, Mystery & Mayhem # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vorkosigan 01 - Miles, Mystery & Mayhem # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vorkosigan 01 - Miles, Mystery & Mayhem', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vorkosigan 01 - Miles, Mystery & Mayhem # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vorkosigan 01 - Miles, Mystery & Mayhem', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vorkosigan 01 - Miles, Mystery & Mayhem # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lucas Davenport 01 - Rules of Prey - John Sandford

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lucas Davenport 01 - Rules of Prey # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lucas Davenport 01 - Rules of Prey # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Sandford', 'DateLastRead': None, 'Title': 'Lucas Davenport 01 - Rules of Prey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lucas Davenport 01 - Rules of Prey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Sandford', 'DateLastRead': None, 'Title': 'Lucas Davenport 01 - Rules of Prey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lucas Davenport 01 - Rules of Prey # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Wars of Light and Shadow 01 - Curse of the Mistwraith - Janny Wurts

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Janny Wurts - Wars of Light and Shadow 01 - Wars of Light and Shadow 01 - Curse of the Mistwraith.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Janny Wurts - Wars of Light and Shadow 01 - Wars of Light and Shadow 01 - Curse of the Mistwraith.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Janny Wurts', 'DateLastRead': None, 'Title': 'Wars of Light and Shadow 01 - Curse of the Mistwraith', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Janny Wurts - Wars of Light and Shadow 01 - Wars of Light and Shadow 01 - Curse of the Mistwraith.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Janny Wurts', 'DateLastRead': None, 'Title': 'Wars of Light and Shadow 01 - Curse of the Mistwraith', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Janny Wurts - Wars of Light and Shadow 01 - Wars of Light and Shadow 01 - Curse of the Mistwraith.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Howl's Castle 02 - Castle in the Air - Diana Wynne Jones

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Howl_s Castle 02 - Castle in the Air # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Howl_s Castle 02 - Castle in the Air # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Wynne Jones', 'DateLastRead': None, 'Title': "Howl's Castle 02 - Castle in the Air", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Howl_s Castle 02 - Castle in the Air # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diana Wynne Jones', 'DateLastRead': None, 'Title': "Howl's Castle 02 - Castle in the Air", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Howl_s Castle 02 - Castle in the Air # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Miles, Mutants and Microbes - Lois McMaster Bujold

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Miles, Mutants and Microbes # (v5.2).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Miles, Mutants and Microbes # (v5.2).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Miles, Mutants and Microbes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Miles, Mutants and Microbes # (v5.2).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Miles, Mutants and Microbes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Miles, Mutants and Microbes # (v5.2).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Cordelia's Honor - Lois McMaster Bujold

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cordelia_s Honor # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cordelia_s Honor # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "Cordelia's Honor", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cordelia_s Honor # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lois McMaster Bujold', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "Cordelia's Honor", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cordelia_s Honor # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 04 - Stranger in Town - Cheryl Bradshaw

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sloane Monroe 04 - Stranger in Town # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sloane Monroe 04 - Stranger in Town # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter01.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': '2023-09-01T11:38:07Z', 'Title': 'Sloane Monroe 04 - Stranger in Town', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 04 - Stranger in Town # (v5.1).epub', 'TimeSpentReading': 115, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-09-01 11:38:07+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Informant - James Grippando

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Informant # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Informant # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Grippando', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Informant', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Informant # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Grippando', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Informant', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Informant # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The President's Daughter - Bill Clinton & James Patterson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The President_s Daughter # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The President_s Daughter # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bill Clinton & James Patterson', 'DateLastRead': None, 'Title': "The President's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The President_s Daughter # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bill Clinton & James Patterson', 'DateLastRead': None, 'Title': "The President's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The President_s Daughter # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Rizzoli & Isles 13 - Listen to Me - Tess Gerritsen

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rizzoli & Isles 13 - Listen to Me # (v5.1).kepub.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rizzoli & Isles 13 - Listen to Me # (v5.1).kepub.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/Gerr_9780593497142_epub3_c001_r1.xhtml#kobo.1.1', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Tess Gerritsen', 'DateLastRead': '2022-07-24T14:11:27Z', 'Title': 'Rizzoli & Isles 13 - Listen to Me', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rizzoli & Isles 13 - Listen to Me # (v5.1).kepub.epub', 'TimeSpentReading': 440, 'RestOfBookEstimate': 21810}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-07-24 14:11:27+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Quicksilver - Dean Koontz

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Quicksilver # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Quicksilver # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dean Koontz', 'DateLastRead': None, 'Title': 'Quicksilver', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Quicksilver # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dean Koontz', 'DateLastRead': None, 'Title': 'Quicksilver', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Quicksilver # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 01 - The Informationist - Taylor Stevens

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 01 - The Informationist # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 01 - The Informationist # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 01 - The Informationist', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 01 - The Informationist # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 01 - The Informationist', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 01 - The Informationist # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 05 - Bed of Bones - Cheryl Bradshaw

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sloane Monroe 05 - Bed of Bones # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sloane Monroe 05 - Bed of Bones # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 05 - Bed of Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 05 - Bed of Bones # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 05 - Bed of Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 05 - Bed of Bones # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 5.5 - Flirting with Danger - Cheryl Bradshaw

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sloane Monroe 5.5 - Flirting with Danger # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sloane Monroe 5.5 - Flirting with Danger # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 5.5 - Flirting with Danger', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 5.5 - Flirting with Danger # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 5.5 - Flirting with Danger', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 5.5 - Flirting with Danger # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 06 - Hush Now Baby - Cheryl Bradshaw

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sloane Monroe 06 - Hush Now Baby # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sloane Monroe 06 - Hush Now Baby # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 06 - Hush Now Baby', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 06 - Hush Now Baby # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 06 - Hush Now Baby', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sloane Monroe 06 - Hush Now Baby # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 07 - Gone Daddy Gone - Cheryl Bradshaw

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 7.0 - Sloane Monroe 07 - Gone Daddy Gone.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 7.0 - Sloane Monroe 07 - Gone Daddy Gone.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 07 - Gone Daddy Gone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 7.0 - Sloane Monroe 07 - Gone Daddy Gone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 07 - Gone Daddy Gone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 7.0 - Sloane Monroe 07 - Gone Daddy Gone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Farseer 03 - Assassin's Quest - Robin Hobb

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Farseer 03 - Assassin_s Quest # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Farseer 03 - Assassin_s Quest # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robin Hobb', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "Farseer 03 - Assassin's Quest", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Farseer 03 - Assassin_s Quest # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robin Hobb', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "Farseer 03 - Assassin's Quest", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Farseer 03 - Assassin_s Quest # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sloane Monroe 06.5 - Dead of Night - Cheryl Bradshaw

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 6.5 - Sloane Monroe 06.5 - Dead of Night.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 6.5 - Sloane Monroe 06.5 - Dead of Night.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 06.5 - Dead of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 6.5 - Sloane Monroe 06.5 - Dead of Night.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cheryl Bradshaw', 'DateLastRead': None, 'Title': 'Sloane Monroe 06.5 - Dead of Night', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cheryl Bradshaw - Sloane Monroe 6.5 - Sloane Monroe 06.5 - Dead of Night.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Recluse 02 - The Towers of the Sunset - L. E. Modesitt, Jr.

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Recluse 02 - The Towers of the Sunset # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Recluse 02 - The Towers of the Sunset # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/xhtml/ch08.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'L. E. Modesitt, Jr.', 'DateLastRead': '2023-10-18T05:52:24Z', 'Title': 'Recluse 02 - The Towers of the Sunset', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Recluse 02 - The Towers of the Sunset # (v5.1).epub', 'TimeSpentReading': 3563, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-10-18 05:52:24+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 02 - The Innocent - Taylor Stevens

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 02 - The Innocent # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 02 - The Innocent # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 02 - The Innocent', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 02 - The Innocent # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 02 - The Innocent', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 02 - The Innocent # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Liveship Traders 01 - Ship of Magic - Robin Hobb

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Liveship Traders 01 - Ship of Magic # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Liveship Traders 01 - Ship of Magic # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robin Hobb', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Liveship Traders 01 - Ship of Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Liveship Traders 01 - Ship of Magic # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robin Hobb', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Liveship Traders 01 - Ship of Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Liveship Traders 01 - Ship of Magic # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Solar Lottery - Philip K. Dick

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Solar Lottery # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Solar Lottery # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip K. Dick', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Solar Lottery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Solar Lottery # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip K. Dick', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Solar Lottery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Solar Lottery # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Planetfall 01 - Planetfall - Emma Newman

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Planetfall 01 - Planetfall # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Planetfall 01 - Planetfall # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/03_9780698404328_EPUB-1.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Emma Newman', 'DateLastRead': '2022-09-02T14:56:29Z', 'Title': 'Planetfall 01 - Planetfall', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Planetfall 01 - Planetfall # (v5.1).epub', 'TimeSpentReading': 211, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-09-02 14:56:29+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Small Change 01 - Farthing - Jo Walton

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jo Walton - Small Change 1.0 - Small Change 01 - Farthing.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jo Walton - Small Change 1.0 - Small Change 01 - Farthing.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jo Walton', 'DateLastRead': None, 'Title': 'Small Change 01 - Farthing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jo Walton - Small Change 1.0 - Small Change 01 - Farthing.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jo Walton', 'DateLastRead': None, 'Title': 'Small Change 01 - Farthing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jo Walton - Small Change 1.0 - Small Change 01 - Farthing.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Things We Do in the Dark - Jennifer Hillier

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jennifer Hillier - Things We Do in the Dark.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jennifer Hillier - Things We Do in the Dark.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Hillier', 'DateLastRead': None, 'Title': 'Things We Do in the Dark', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jennifer Hillier - Things We Do in the Dark.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Hillier', 'DateLastRead': None, 'Title': 'Things We Do in the Dark', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jennifer Hillier - Things We Do in the Dark.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Cormoran Strike 06 - The Ink Black Heart - Robert Galbraith

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.kepub.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.kepub.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': None, 'Title': 'Cormoran Strike 06 - The Ink Black Heart', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.kepub.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Capital Crimes 01 - Murder in the White House - Margaret Truman

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Margaret Truman - Capital Crimes 1.0 - Capital Crimes 01 - Murder in the White House.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Margaret Truman - Capital Crimes 1.0 - Capital Crimes 01 - Murder in the White House.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter1.htm#point(/1/4/164/3:272)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 10, 'Attribution': 'Margaret Truman', 'DateLastRead': '2022-10-23T16:26:43Z', 'Title': 'Capital Crimes 01 - Murder in the White House', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Margaret Truman - Capital Crimes 1.0 - Capital Crimes 01 - Murder in the White House.epub', 'TimeSpentReading': 3406, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-10-23 16:26:43+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Midwife 02 - Shadows of the Workhouse - Jennifer Worth

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Midwife 02 - Shadows of the Workhouse # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Midwife 02 - Shadows of the Workhouse # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Worth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Midwife 02 - Shadows of the Workhouse', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Midwife 02 - Shadows of the Workhouse # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Worth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Midwife 02 - Shadows of the Workhouse', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Midwife 02 - Shadows of the Workhouse # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Wild Cards 01 - Wild Cards I - George R. R. Martin (ed)

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wild Cards 01 - Wild Cards I # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wild Cards 01 - Wild Cards I # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/xhtml/prologue.html#point(/1/4/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'George R. R. Martin (ed)', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Wild Cards 01 - Wild Cards I', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wild Cards 01 - Wild Cards I # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dorothy Must Die 02 - The Wicked Will Rise - Danielle Paige

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Danielle Paige - Dorothy Must Die 2.0 - Dorothy Must Die 02 - The Wicked Will Rise.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Danielle Paige - Dorothy Must Die 2.0 - Dorothy Must Die 02 - The Wicked Will Rise.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/text/9780062280725_Chapter_1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Danielle Paige', 'DateLastRead': '2022-10-17T17:45:07Z', 'Title': 'Dorothy Must Die 02 - The Wicked Will Rise', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Danielle Paige - Dorothy Must Die 2.0 - Dorothy Must Die 02 - The Wicked Will Rise.epub', 'TimeSpentReading': 72, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-10-17 17:45:07+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: In Death 55 - Desperation in Death - J. D. Robb

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 55.0 - In Death 55 - Desperation in Death.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 55.0 - In Death 55 - Desperation in Death.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 55 - Desperation in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 55.0 - In Death 55 - Desperation in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 55 - Desperation in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 55.0 - In Death 55 - Desperation in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Fairy Tale - Stephen King

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stephen King - Fairy Tale.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stephen King - Fairy Tale.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'Fairy Tale', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - Fairy Tale.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'Fairy Tale', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - Fairy Tale.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vera Stanhope 10 - The Rising Tide - Ann Cleeves

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 10.0 - Vera Stanhope 10 - The Rising Tide.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 10.0 - Vera Stanhope 10 - The Rising Tide.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Vera Stanhope 10 - The Rising Tide', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 10.0 - Vera Stanhope 10 - The Rising Tide.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Vera Stanhope 10 - The Rising Tide', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 10.0 - Vera Stanhope 10 - The Rising Tide.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vera Stanhope 09.5 - The Woman on the Island - Ann Cleeves

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 9.5 - Vera Stanhope 09.5 - The Woman on the Island.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 9.5 - Vera Stanhope 09.5 - The Woman on the Island.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Vera Stanhope 09.5 - The Woman on the Island', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 9.5 - Vera Stanhope 09.5 - The Woman on the Island.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Vera Stanhope 09.5 - The Woman on the Island', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Vera Stanhope 9.5 - Vera Stanhope 09.5 - The Woman on the Island.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Cormoran Strike 06 - The Ink Black Heart - Robert Galbraith

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Galbraith', 'DateLastRead': None, 'Title': 'Cormoran Strike 06 - The Ink Black Heart', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Galbraith - Cormoran Strike 06 - Cormoran Strike 06 - The Ink Black Heart.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: World War Z - Max Brooks

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/World War Z # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/World War Z # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Max Brooks', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'World War Z', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/World War Z # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Max Brooks', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'World War Z', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/World War Z # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Karen Pirie 02 - A Darker Domain - Val McDermid

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Val McDermid - Karen Pirie 2.0 - Karen Pirie 02 - A Darker Domain.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Val McDermid - Karen Pirie 2.0 - Karen Pirie 02 - A Darker Domain.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/xhtml/cover.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Val McDermid', 'DateLastRead': '2022-10-02T12:15:40Z', 'Title': 'Karen Pirie 02 - A Darker Domain', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Val McDermid - Karen Pirie 2.0 - Karen Pirie 02 - A Darker Domain.epub', 'TimeSpentReading': 7, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-10-02 12:15:40+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Heart of What Was Lost - Tad Williams

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tad Williams - Last King of Osten Ard 0.5 - The Heart of What Was Lost.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tad Williams - Last King of Osten Ard 0.5 - The Heart of What Was Lost.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': '2022-11-21T13:52:38.060', 'Title': 'The Heart of What Was Lost', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Last King of Osten Ard 0.5 - The Heart of What Was Lost.epub', 'TimeSpentReading': 534, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-11-21 13:52:38+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': '2022-11-21T13:52:38.060', 'Title': 'The Heart of What Was Lost', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Last King of Osten Ard 0.5 - The Heart of What Was Lost.epub', 'TimeSpentReading': 534, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Memory, Sorrow, and Thorn 01 - The Dragonbone Chair - Tad Williams

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 1.0 - Memory, Sorrow, and Thorn 01 - The Dragonbone Chair.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 1.0 - Memory, Sorrow, and Thorn 01 - The Dragonbone Chair.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/9781101160770_EPUB-27.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 18, 'Attribution': 'Tad Williams', 'DateLastRead': '2022-12-08T22:03:17Z', 'Title': 'Memory, Sorrow, and Thorn 01 - The Dragonbone Chair', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 1.0 - Memory, Sorrow, and Thorn 01 - The Dragonbone Chair.epub', 'TimeSpentReading': 24148, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-12-08 22:03:17+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Memory, Sorrow, and Thorn 02 - The Stone of Farewell - Tad Williams

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 2.0 - Memory, Sorrow, and Thorn 02 - The Stone of Farewell.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 2.0 - Memory, Sorrow, and Thorn 02 - The Stone of Farewell.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': None, 'Title': 'Memory, Sorrow, and Thorn 02 - The Stone of Farewell', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 2.0 - Memory, Sorrow, and Thorn 02 - The Stone of Farewell.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': None, 'Title': 'Memory, Sorrow, and Thorn 02 - The Stone of Farewell', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 2.0 - Memory, Sorrow, and Thorn 02 - The Stone of Farewell.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Memory, Sorrow, and Thorn 03 - To Green Angel Tower - Tad Williams

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 3.0 - Memory, Sorrow, and Thorn 03 - To Green Angel Tower.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 3.0 - Memory, Sorrow, and Thorn 03 - To Green Angel Tower.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': None, 'Title': 'Memory, Sorrow, and Thorn 03 - To Green Angel Tower', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 3.0 - Memory, Sorrow, and Thorn 03 - To Green Angel Tower.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tad Williams', 'DateLastRead': None, 'Title': 'Memory, Sorrow, and Thorn 03 - To Green Angel Tower', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tad Williams - Memory, Sorrow, and Thorn 3.0 - Memory, Sorrow, and Thorn 03 - To Green Angel Tower.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Riftwar 02 - Silverthorn - Raymond E. Feist

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Riftwar 02 - Silverthorn # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Riftwar 02 - Silverthorn # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Raymond E. Feist', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Riftwar 02 - Silverthorn', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Riftwar 02 - Silverthorn # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Raymond E. Feist', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Riftwar 02 - Silverthorn', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Riftwar 02 - Silverthorn # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Joe Gunther 01 - Open Season - Archer Mayor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Archer Mayor - Joe Gunther 1.0 - Joe Gunther 01 - Open Season.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Archer Mayor - Joe Gunther 1.0 - Joe Gunther 01 - Open Season.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Archer Mayor', 'DateLastRead': None, 'Title': 'Joe Gunther 01 - Open Season', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Archer Mayor - Joe Gunther 1.0 - Joe Gunther 01 - Open Season.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Archer Mayor', 'DateLastRead': None, 'Title': 'Joe Gunther 01 - Open Season', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Archer Mayor - Joe Gunther 1.0 - Joe Gunther 01 - Open Season.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 03 - The Doll - Taylor Stevens

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 03 - The Doll # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 03 - The Doll # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 03 - The Doll', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 03 - The Doll # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 03 - The Doll', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 03 - The Doll # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Innocence Game - Michael Harvey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Innocence Game # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Innocence Game # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Harvey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Innocence Game', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Innocence Game # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Harvey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Innocence Game', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Innocence Game # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Kate Shugak Novels, Volume 2 - Dana Stabenow

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Kate Shugak Novels, Volume 2 # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Kate Shugak Novels, Volume 2 # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dana Stabenow', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Kate Shugak Novels, Volume 2', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Kate Shugak Novels, Volume 2 # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dana Stabenow', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Kate Shugak Novels, Volume 2', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Kate Shugak Novels, Volume 2 # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Band 01 - Kings of the Wyld - Nicholas Eames

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nicholas Eames - The Band 1.0 - The Band 01 - Kings of the Wyld.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Nicholas Eames - The Band 1.0 - The Band 01 - Kings of the Wyld.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Nicholas Eames', 'DateLastRead': None, 'Title': 'The Band 01 - Kings of the Wyld', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nicholas Eames - The Band 1.0 - The Band 01 - Kings of the Wyld.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Nicholas Eames', 'DateLastRead': None, 'Title': 'The Band 01 - Kings of the Wyld', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nicholas Eames - The Band 1.0 - The Band 01 - Kings of the Wyld.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Mysterious Benedict Society - Trenton Lee Stewart

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Trenton Lee Stewart - Mysterious Benedict Society 1.0 - The Mysterious Benedict Society.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Trenton Lee Stewart - Mysterious Benedict Society 1.0 - The Mysterious Benedict Society.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/titlepage.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Trenton Lee Stewart', 'DateLastRead': '2023-06-06T21:52:16Z', 'Title': 'The Mysterious Benedict Society', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Trenton Lee Stewart - Mysterious Benedict Society 1.0 - The Mysterious Benedict Society.epub', 'TimeSpentReading': 70, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-06-06 21:52:16+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 05 - Echo Burning - Lee Child

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 05 - Jack Reacher 05 - Echo Burning.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 05 - Jack Reacher 05 - Echo Burning.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/echoburning_TOCREF-1.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Lee Child', 'DateLastRead': '2025-01-20T19:06:46Z', 'Title': 'Jack Reacher 05 - Echo Burning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 05 - Jack Reacher 05 - Echo Burning.epub', 'TimeSpentReading': 59, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-01-20 19:06:46+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Midwife 03 - Farewell to the East End - Jennifer Worth

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Midwife 03 - Farewell to the East End # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Midwife 03 - Farewell to the East End # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Worth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Midwife 03 - Farewell to the East End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Midwife 03 - Farewell to the East End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jennifer Worth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Midwife 03 - Farewell to the East End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Midwife 03 - Farewell to the East End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Gabriel Allon 02 - The English Assassin - Daniel Silva

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Gabriel Allon 02 - The English Assassin # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Gabriel Allon 02 - The English Assassin # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Daniel Silva', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Gabriel Allon 02 - The English Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gabriel Allon 02 - The English Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Daniel Silva', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Gabriel Allon 02 - The English Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gabriel Allon 02 - The English Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: William Warwick 05 - Next in Line - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeffrey Archer - William Warwick 5.0 - William Warwick 05 - Next in Line.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeffrey Archer - William Warwick 5.0 - William Warwick 05 - Next in Line.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'William Warwick 05 - Next in Line', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - William Warwick 5.0 - William Warwick 05 - Next in Line.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'William Warwick 05 - Next in Line', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - William Warwick 5.0 - William Warwick 05 - Next in Line.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Broken Earth 01 - The Fifth Season - N. K. Jemisin

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/N. K. Jemisin - Broken Earth 1.0 - Broken Earth 01 - The Fifth Season.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/N. K. Jemisin - Broken Earth 1.0 - Broken Earth 01 - The Fifth Season.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'N. K. Jemisin', 'DateLastRead': None, 'Title': 'Broken Earth 01 - The Fifth Season', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/N. K. Jemisin - Broken Earth 1.0 - Broken Earth 01 - The Fifth Season.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'N. K. Jemisin', 'DateLastRead': None, 'Title': 'Broken Earth 01 - The Fifth Season', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/N. K. Jemisin - Broken Earth 1.0 - Broken Earth 01 - The Fifth Season.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Heart of Bone - Maggie James

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Maggie James - Heart of Bone.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Maggie James - Heart of Bone.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Maggie James', 'DateLastRead': None, 'Title': 'Heart of Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Maggie James - Heart of Bone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Maggie James', 'DateLastRead': None, 'Title': 'Heart of Bone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Maggie James - Heart of Bone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Cities in Flight - James Blish

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James Blish - Cities in Flight.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James Blish - Cities in Flight.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Blish', 'DateLastRead': None, 'Title': 'Cities in Flight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Blish - Cities in Flight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Blish', 'DateLastRead': None, 'Title': 'Cities in Flight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Blish - Cities in Flight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Gray Man 01 - The Gray Man - Mark Greaney

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mark Greaney - Gray Man 1.0 - Gray Man 01 - The Gray Man.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mark Greaney - Gray Man 1.0 - Gray Man 01 - The Gray Man.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mark Greaney', 'DateLastRead': None, 'Title': 'Gray Man 01 - The Gray Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mark Greaney - Gray Man 1.0 - Gray Man 01 - The Gray Man.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mark Greaney', 'DateLastRead': None, 'Title': 'Gray Man 01 - The Gray Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mark Greaney - Gray Man 1.0 - Gray Man 01 - The Gray Man.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Children of Time 01 - Children of Time - Adrian Tchaikovsky

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Adrian Tchaikovsky - Children of Time 1.0 - Children of Time 01 - Children of Time.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Adrian Tchaikovsky - Children of Time 1.0 - Children of Time 01 - Children of Time.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Adrian Tchaikovsky', 'DateLastRead': None, 'Title': 'Children of Time 01 - Children of Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Adrian Tchaikovsky - Children of Time 1.0 - Children of Time 01 - Children of Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Adrian Tchaikovsky', 'DateLastRead': None, 'Title': 'Children of Time 01 - Children of Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Adrian Tchaikovsky - Children of Time 1.0 - Children of Time 01 - Children of Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: In Death 56 - Encore in Death - J. D. Robb

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 56.0 - In Death 56 - Encore in Death.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 56.0 - In Death 56 - Encore in Death.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 56 - Encore in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 56.0 - In Death 56 - Encore in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 56 - Encore in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 56.0 - In Death 56 - Encore in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Crescent City 01 - House of Earth and Blood - Sarah J. Maas

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sarah J. Maas - Crescent City 1.0 - Crescent City 01 - House of Earth and Blood.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sarah J. Maas - Crescent City 1.0 - Crescent City 01 - House of Earth and Blood.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Sarah J. Maas', 'DateLastRead': '2024-02-01T01:03:36Z', 'Title': 'Crescent City 01 - House of Earth and Blood', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah J. Maas - Crescent City 1.0 - Crescent City 01 - House of Earth and Blood.epub', 'TimeSpentReading': 78, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-02-01 01:03:36+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Secret Life of Albert Entwistle - Matt Cain

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Matt Cain - The Secret Life of Albert Entwistle.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Matt Cain - The Secret Life of Albert Entwistle.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Matt Cain', 'DateLastRead': None, 'Title': 'The Secret Life of Albert Entwistle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matt Cain - The Secret Life of Albert Entwistle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Matt Cain', 'DateLastRead': None, 'Title': 'The Secret Life of Albert Entwistle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Matt Cain - The Secret Life of Albert Entwistle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Riftwar 01 - Magician - Raymond E. Feist

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Raymond E. Feist - Riftwar 1.0 - Riftwar 01 - Magician.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Raymond E. Feist - Riftwar 1.0 - Riftwar 01 - Magician.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter003.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 6, 'Attribution': 'Raymond E. Feist', 'DateLastRead': '2024-06-02T08:07:56Z', 'Title': 'Riftwar 01 - Magician', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Raymond E. Feist - Riftwar 1.0 - Riftwar 01 - Magician.epub', 'TimeSpentReading': 5565, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-06-02 08:07:56+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dirk Pitt 02 - The Mediterranean Caper - Clive Cussler

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 2.0 - Dirk Pitt 02 - The Mediterranean Caper.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 2.0 - Dirk Pitt 02 - The Mediterranean Caper.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 02 - The Mediterranean Caper', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 2.0 - Dirk Pitt 02 - The Mediterranean Caper.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 02 - The Mediterranean Caper', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 2.0 - Dirk Pitt 02 - The Mediterranean Caper.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dirk Pitt 04 - Raise the Titanic! - Clive Cussler

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 4.0 - Dirk Pitt 04 - Raise the Titanic_.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 4.0 - Dirk Pitt 04 - Raise the Titanic_.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 04 - Raise the Titanic!', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 4.0 - Dirk Pitt 04 - Raise the Titanic_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 04 - Raise the Titanic!', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 4.0 - Dirk Pitt 04 - Raise the Titanic_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dirk Pitt 01 - Pacific Vortex! - Clive Cussler

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 1.0 - Dirk Pitt 01 - Pacific Vortex_.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 1.0 - Dirk Pitt 01 - Pacific Vortex_.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 01 - Pacific Vortex!', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 1.0 - Dirk Pitt 01 - Pacific Vortex_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 01 - Pacific Vortex!', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 1.0 - Dirk Pitt 01 - Pacific Vortex_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dirk Pitt 03 - Iceberg - Clive Cussler

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 3.0 - Dirk Pitt 03 - Iceberg.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 3.0 - Dirk Pitt 03 - Iceberg.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 03 - Iceberg', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 3.0 - Dirk Pitt 03 - Iceberg.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Clive Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 03 - Iceberg', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clive Cussler - Dirk Pitt 3.0 - Dirk Pitt 03 - Iceberg.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Wayfarers 04 - The Galaxy, and the Ground Within - Becky Chambers

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Becky Chambers - Wayfarers 4.0 - Wayfarers 04 - The Galaxy, and the Ground Within.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Becky Chambers - Wayfarers 4.0 - Wayfarers 04 - The Galaxy, and the Ground Within.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Becky Chambers', 'DateLastRead': None, 'Title': 'Wayfarers 04 - The Galaxy, and the Ground Within', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Becky Chambers - Wayfarers 4.0 - Wayfarers 04 - The Galaxy, and the Ground Within.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Becky Chambers', 'DateLastRead': None, 'Title': 'Wayfarers 04 - The Galaxy, and the Ground Within', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Becky Chambers - Wayfarers 4.0 - Wayfarers 04 - The Galaxy, and the Ground Within.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: His Dark Materials 03 - The Amber Spyglass - Philip Pullman

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Philip Pullman - His Dark Materials 3.0 - His Dark Materials 03 - The Amber Spyglass.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Philip Pullman - His Dark Materials 3.0 - His Dark Materials 03 - The Amber Spyglass.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip Pullman', 'DateLastRead': None, 'Title': 'His Dark Materials 03 - The Amber Spyglass', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Philip Pullman - His Dark Materials 3.0 - His Dark Materials 03 - The Amber Spyglass.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Philip Pullman', 'DateLastRead': None, 'Title': 'His Dark Materials 03 - The Amber Spyglass', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Philip Pullman - His Dark Materials 3.0 - His Dark Materials 03 - The Amber Spyglass.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Legends of Muirwood 01 - The Wretched of Muirwood - Jeff Wheeler

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeff Wheeler - Legends of Muirwood 1.0 - Legends of Muirwood 01 - The Wretched of Muirwood.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeff Wheeler - Legends of Muirwood 1.0 - Legends of Muirwood 01 - The Wretched of Muirwood.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeff Wheeler', 'DateLastRead': None, 'Title': 'Legends of Muirwood 01 - The Wretched of Muirwood', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeff Wheeler - Legends of Muirwood 1.0 - Legends of Muirwood 01 - The Wretched of Muirwood.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeff Wheeler', 'DateLastRead': None, 'Title': 'Legends of Muirwood 01 - The Wretched of Muirwood', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeff Wheeler - Legends of Muirwood 1.0 - Legends of Muirwood 01 - The Wretched of Muirwood.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Green Creek 02 - Ravensong - TJ Klune

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/TJ Klune - Green Creek 2.0 - Green Creek 02 - Ravensong.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/TJ Klune - Green Creek 2.0 - Green Creek 02 - Ravensong.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'TJ Klune', 'DateLastRead': None, 'Title': 'Green Creek 02 - Ravensong', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/TJ Klune - Green Creek 2.0 - Green Creek 02 - Ravensong.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'TJ Klune', 'DateLastRead': None, 'Title': 'Green Creek 02 - Ravensong', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/TJ Klune - Green Creek 2.0 - Green Creek 02 - Ravensong.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Harry Hole 01 - The Bat - Jo Nesbo

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jo Nesbo - Harry Hole 1.0 - Harry Hole 01 - The Bat.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jo Nesbo - Harry Hole 1.0 - Harry Hole 01 - The Bat.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jo Nesbo', 'DateLastRead': None, 'Title': 'Harry Hole 01 - The Bat', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jo Nesbo - Harry Hole 1.0 - Harry Hole 01 - The Bat.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jo Nesbo', 'DateLastRead': None, 'Title': 'Harry Hole 01 - The Bat', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jo Nesbo - Harry Hole 1.0 - Harry Hole 01 - The Bat.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Murderbot Diaries 06 - Fugitive Telemetry - Martha Wells

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 6.0 - Murderbot Diaries 06 - Fugitive Telemetry.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 6.0 - Murderbot Diaries 06 - Fugitive Telemetry.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 06 - Fugitive Telemetry', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 6.0 - Murderbot Diaries 06 - Fugitive Telemetry.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 06 - Fugitive Telemetry', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 6.0 - Murderbot Diaries 06 - Fugitive Telemetry.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Gone 01 - Gone - Michael Grant

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Grant - Gone 1.0 - Gone 01 - Gone.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Grant - Gone 1.0 - Gone 01 - Gone.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Grant', 'DateLastRead': None, 'Title': 'Gone 01 - Gone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Grant - Gone 1.0 - Gone 01 - Gone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Grant', 'DateLastRead': None, 'Title': 'Gone 01 - Gone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Grant - Gone 1.0 - Gone 01 - Gone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: I Have Some Questions for You - Rebecca Makkai

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rebecca Makkai - I Have Some Questions for You.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rebecca Makkai - I Have Some Questions for You.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/001_Cover.xhtml#point(:1)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Rebecca Makkai', 'DateLastRead': '2023-08-09T00:55:29Z', 'Title': 'I Have Some Questions for You', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rebecca Makkai - I Have Some Questions for You.epub', 'TimeSpentReading': 12, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-08-09 00:55:29+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: In the Lives of Puppets - TJ Klune

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/TJ Klune - In the Lives of Puppets.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/TJ Klune - In the Lives of Puppets.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'TJ Klune', 'DateLastRead': None, 'Title': 'In the Lives of Puppets', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/TJ Klune - In the Lives of Puppets.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'TJ Klune', 'DateLastRead': None, 'Title': 'In the Lives of Puppets', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/TJ Klune - In the Lives of Puppets.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: WMC 22 - 22 Seconds - James Patterson & Maxine Paetro

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James Patterson - Women_s Murder Club 22.0 - WMC 22 - 22 Seconds.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James Patterson - Women_s Murder Club 22.0 - WMC 22 - 22 Seconds.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson & Maxine Paetro', 'DateLastRead': None, 'Title': 'WMC 22 - 22 Seconds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Patterson - Women_s Murder Club 22.0 - WMC 22 - 22 Seconds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson & Maxine Paetro', 'DateLastRead': None, 'Title': 'WMC 22 - 22 Seconds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Patterson - Women_s Murder Club 22.0 - WMC 22 - 22 Seconds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Cruise - Catherine Cooper

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Catherine Cooper - The Cruise.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Catherine Cooper - The Cruise.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Catherine Cooper', 'DateLastRead': None, 'Title': 'The Cruise', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Catherine Cooper - The Cruise.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Catherine Cooper', 'DateLastRead': None, 'Title': 'The Cruise', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Catherine Cooper - The Cruise.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Caught - Harlan Coben

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Caught # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Caught # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/cobe_9781101186053_oeb_fm2_r1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Harlan Coben', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Caught', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Caught # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Storyteller - Jodi Picoult

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Picoult - The Storyteller.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Picoult - The Storyteller.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Picoult', 'DateLastRead': None, 'Title': 'The Storyteller', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Picoult - The Storyteller.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Picoult', 'DateLastRead': None, 'Title': 'The Storyteller', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Picoult - The Storyteller.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: You Deserve Each Other - Sarah Hogle

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sarah Hogle - You Deserve Each Other.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sarah Hogle - You Deserve Each Other.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sarah Hogle', 'DateLastRead': None, 'Title': 'You Deserve Each Other', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah Hogle - You Deserve Each Other.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sarah Hogle', 'DateLastRead': None, 'Title': 'You Deserve Each Other', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah Hogle - You Deserve Each Other.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Airport - Arthur Hailey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Arthur Hailey - Airport.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Arthur Hailey - Airport.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Arthur Hailey', 'DateLastRead': None, 'Title': 'Airport', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Arthur Hailey - Airport.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Arthur Hailey', 'DateLastRead': None, 'Title': 'Airport', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Arthur Hailey - Airport.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Will Trent 01 - Triptych - Karin Slaughter

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Karin Slaughter - Will Trent 01 - Triptych.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Karin Slaughter - Will Trent 01 - Triptych.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Slau_9780440336235_epub_c01_r1.htm#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Karin Slaughter', 'DateLastRead': '2024-04-14T23:23:03Z', 'Title': 'Will Trent 01 - Triptych', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Karin Slaughter - Will Trent 01 - Triptych.epub', 'TimeSpentReading': 165, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-04-14 23:23:03+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Probability 01 - Probability Moon - Nancy Kress

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nancy Kress - Probability 1.0 - Probability 01 - Probability Moon.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Nancy Kress - Probability 1.0 - Probability 01 - Probability Moon.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Nancy Kress', 'DateLastRead': None, 'Title': 'Probability 01 - Probability Moon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nancy Kress - Probability 1.0 - Probability 01 - Probability Moon.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Nancy Kress', 'DateLastRead': None, 'Title': 'Probability 01 - Probability Moon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nancy Kress - Probability 1.0 - Probability 01 - Probability Moon.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Beaker's Dozen - Nancy Kress

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nancy Kress - Beaker_s Dozen.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Nancy Kress - Beaker_s Dozen.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter1.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Nancy Kress', 'DateLastRead': '2023-06-06T22:07:37Z', 'Title': "Beaker's Dozen", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nancy Kress - Beaker_s Dozen.epub', 'TimeSpentReading': 1292, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-06-06 22:07:37+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Mage Wars 01 - The Black Gryphon - Mercedes Lackey & Larry Dixon

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mercedes Lackey & Larry Dixon - Valdemar_ Mage Wars 1.0 - Valdemar_ Mage Wars 01 - The Black Gryphon.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mercedes Lackey & Larry Dixon - Valdemar_ Mage Wars 1.0 - Valdemar_ Mage Wars 01 - The Black Gryphon.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/03_lack_9781101127292_oe.xhtml#point(/1/3/2/1/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey & Larry Dixon', 'DateLastRead': '2023-06-12T08:17:00Z', 'Title': 'Mage Wars 01 - The Black Gryphon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey & Larry Dixon - Valdemar_ Mage Wars 1.0 - Valdemar_ Mage Wars 01 - The Black Gryphon.epub', 'TimeSpentReading': 20, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-06-12 08:17:00+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Valdemar Anthologies 12 - Choices - Mercedes Lackey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 12.0 - Valdemar Anthologies 12 - Choices.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 12.0 - Valdemar Anthologies 12 - Choices.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar Anthologies 12 - Choices', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 12.0 - Valdemar Anthologies 12 - Choices.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar Anthologies 12 - Choices', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 12.0 - Valdemar Anthologies 12 - Choices.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar - Mercedes Lackey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 2.0 - Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 2.0 - Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 2.0 - Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar Anthologies 2.0 - Valdemar Anthologies 02 - Sun in Glory and Other Tales of Valdemar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lincoln Lawyer 02 - The Brass Verdict - Michael Connelly

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 2.0 - Lincoln Lawyer 02 - The Brass Verdict.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 2.0 - Lincoln Lawyer 02 - The Brass Verdict.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter002.xhtml#point(/1/4/12/1:215)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Michael Connelly', 'DateLastRead': '2025-01-05T16:39:24Z', 'Title': 'Lincoln Lawyer 02 - The Brass Verdict', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 2.0 - Lincoln Lawyer 02 - The Brass Verdict.epub', 'TimeSpentReading': 322, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-01-05 16:39:24+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lincoln Lawyer 03 - The Reversal - Michael Connelly

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 3.0 - Lincoln Lawyer 03 - The Reversal.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 3.0 - Lincoln Lawyer 03 - The Reversal.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 03 - The Reversal', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 3.0 - Lincoln Lawyer 03 - The Reversal.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 03 - The Reversal', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 3.0 - Lincoln Lawyer 03 - The Reversal.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lincoln Lawyer 05 - The Gods of Guilt - Michael Connelly

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 5.0 - Lincoln Lawyer 05 - The Gods of Guilt.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 5.0 - Lincoln Lawyer 05 - The Gods of Guilt.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 05 - The Gods of Guilt', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 5.0 - Lincoln Lawyer 05 - The Gods of Guilt.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 05 - The Gods of Guilt', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 5.0 - Lincoln Lawyer 05 - The Gods of Guilt.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Goldfinch - Donna Tartt

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Goldfinch # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Goldfinch # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donna Tartt', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Goldfinch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Goldfinch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donna Tartt', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Goldfinch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Goldfinch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lincoln Lawyer 04 - The Fifth Witness - Michael Connelly

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 4.0 - Lincoln Lawyer 04 - The Fifth Witness.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 4.0 - Lincoln Lawyer 04 - The Fifth Witness.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 04 - The Fifth Witness', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 4.0 - Lincoln Lawyer 04 - The Fifth Witness.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 04 - The Fifth Witness', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 4.0 - Lincoln Lawyer 04 - The Fifth Witness.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dresden Codex 01 - Doomsday Match - Jeff Wheeler

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeff Wheeler - Doomsday Mat 1.0 - Dresden Codex 01 - Doomsday Match.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeff Wheeler - Doomsday Mat 1.0 - Dresden Codex 01 - Doomsday Match.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeff Wheeler', 'DateLastRead': None, 'Title': 'Dresden Codex 01 - Doomsday Match', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeff Wheeler - Doomsday Mat 1.0 - Dresden Codex 01 - Doomsday Match.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeff Wheeler', 'DateLastRead': None, 'Title': 'Dresden Codex 01 - Doomsday Match', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeff Wheeler - Doomsday Mat 1.0 - Dresden Codex 01 - Doomsday Match.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Miss Peregrine 02 - Hollow City - Ransom Riggs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Miss Peregrine 02 - Hollow City # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Miss Peregrine 02 - Hollow City # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Rigg_9781594746208_epub_c01_r1.htm#point(/1/4/36/1:414)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'Ransom Riggs', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Miss Peregrine 02 - Hollow City', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Miss Peregrine 02 - Hollow City # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dune 91 - Tales of Dune - Brian Herbert & Kevin J. Anderson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Brian Herbert & Kevin J. Anderson - Dune 1.0 - Dune 91 - Tales of Dune.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Brian Herbert & Kevin J. Anderson - Dune 1.0 - Dune 91 - Tales of Dune.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/ch02.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 24, 'Attribution': 'Brian Herbert & Kevin J. Anderson', 'DateLastRead': '2023-07-06T20:11:18Z', 'Title': 'Dune 91 - Tales of Dune', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brian Herbert & Kevin J. Anderson - Dune 1.0 - Dune 91 - Tales of Dune.epub', 'TimeSpentReading': 7873, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-07-06 20:11:18+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Tomorrow and Tomorrow - Charles Sheffield

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Charles Sheffield - Tomorrow and Tomorrow.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Charles Sheffield - Tomorrow and Tomorrow.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Sheffield', 'DateLastRead': None, 'Title': 'Tomorrow and Tomorrow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Sheffield - Tomorrow and Tomorrow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Sheffield', 'DateLastRead': None, 'Title': 'Tomorrow and Tomorrow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Sheffield - Tomorrow and Tomorrow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Michael Flint 01 - Blood Trails - Diane Capri

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Diane Capri - Micheal Flint 1.0 - Michael Flint 01 - Blood Trails.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Diane Capri - Micheal Flint 1.0 - Michael Flint 01 - Blood Trails.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Capri', 'DateLastRead': None, 'Title': 'Michael Flint 01 - Blood Trails', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Diane Capri - Micheal Flint 1.0 - Michael Flint 01 - Blood Trails.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Capri', 'DateLastRead': None, 'Title': 'Michael Flint 01 - Blood Trails', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Diane Capri - Micheal Flint 1.0 - Michael Flint 01 - Blood Trails.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Book Eaters - Sunyi Dean

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sunyi Dean - The Book Eaters.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sunyi Dean - The Book Eaters.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter2.xhtml#point(/1/4/20/1:67)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 4, 'Attribution': 'Sunyi Dean', 'DateLastRead': '2023-08-23T17:05:40Z', 'Title': 'The Book Eaters', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sunyi Dean - The Book Eaters.epub', 'TimeSpentReading': 1211, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-08-23 17:05:40+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: On the Run: Book 1 in the Ryan Kaine series - Kerry J Donovan

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kerry J Donovan - Ryan Kaine 1.0 - On the Run_ Book 1 in the Ryan Kaine series.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kerry J Donovan - Ryan Kaine 1.0 - On the Run_ Book 1 in the Ryan Kaine series.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kerry J Donovan', 'DateLastRead': None, 'Title': 'On the Run: Book 1 in the Ryan Kaine series', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kerry J Donovan - Ryan Kaine 1.0 - On the Run_ Book 1 in the Ryan Kaine series.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kerry J Donovan', 'DateLastRead': None, 'Title': 'On the Run: Book 1 in the Ryan Kaine series', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kerry J Donovan - Ryan Kaine 1.0 - On the Run_ Book 1 in the Ryan Kaine series.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 02 - Sharpe's Triumph - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 02 - Sharpe 02 - Sharpe_s Triumph.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 02 - Sharpe 02 - Sharpe_s Triumph.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 02 - Sharpe's Triumph", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 02 - Sharpe 02 - Sharpe_s Triumph.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 03 - Sharpe's Fortress - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 03 - Sharpe 03 - Sharpe_s Fortress.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 03 - Sharpe 03 - Sharpe_s Fortress.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 03 - Sharpe's Fortress", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 03 - Sharpe 03 - Sharpe_s Fortress.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 03 - Sharpe's Fortress", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 03 - Sharpe 03 - Sharpe_s Fortress.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Void 01 - The Dreaming Void - Peter F. Hamilton

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Peter F. Hamilton - Commonwealth Saga 03 - Void 01 - The Dreaming Void.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Peter F. Hamilton - Commonwealth Saga 03 - Void 01 - The Dreaming Void.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter F. Hamilton', 'DateLastRead': None, 'Title': 'Void 01 - The Dreaming Void', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Peter F. Hamilton - Commonwealth Saga 03 - Void 01 - The Dreaming Void.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter F. Hamilton', 'DateLastRead': None, 'Title': 'Void 01 - The Dreaming Void', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Peter F. Hamilton - Commonwealth Saga 03 - Void 01 - The Dreaming Void.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 03 - Deadly Decisions - Kathy Reichs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 3.0 - Temperance Brennan 03 - Deadly Decisions.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 3.0 - Temperance Brennan 03 - Deadly Decisions.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'ops/xhtml/ch01.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Kathy Reichs', 'DateLastRead': '2023-10-04T07:49:27Z', 'Title': 'Temperance Brennan 03 - Deadly Decisions', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 3.0 - Temperance Brennan 03 - Deadly Decisions.epub', 'TimeSpentReading': 546, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-10-04 07:49:27+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 04 - Fatal Voyage - Kathy Reichs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 4.0 - Temperance Brennan 04 - Fatal Voyage.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 4.0 - Temperance Brennan 04 - Fatal Voyage.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 04 - Fatal Voyage', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 4.0 - Temperance Brennan 04 - Fatal Voyage.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 04 - Fatal Voyage', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 4.0 - Temperance Brennan 04 - Fatal Voyage.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 10 - Bones to Ashes - Kathy Reichs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 10.0 - Temperance Brennan 10 - Bones to Ashes.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 10.0 - Temperance Brennan 10 - Bones to Ashes.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 10 - Bones to Ashes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 10.0 - Temperance Brennan 10 - Bones to Ashes.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 10 - Bones to Ashes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 10.0 - Temperance Brennan 10 - Bones to Ashes.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 07 - Monday Mourning - Kathy Reichs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 7.0 - Temperance Brennan 07 - Monday Mourning.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 7.0 - Temperance Brennan 07 - Monday Mourning.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 07 - Monday Mourning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 7.0 - Temperance Brennan 07 - Monday Mourning.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 07 - Monday Mourning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 7.0 - Temperance Brennan 07 - Monday Mourning.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 09 - Break No Bones - Kathy Reichs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 9.0 - Temperance Brennan 09 - Break No Bones.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 9.0 - Temperance Brennan 09 - Break No Bones.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 09 - Break No Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 9.0 - Temperance Brennan 09 - Break No Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 09 - Break No Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 9.0 - Temperance Brennan 09 - Break No Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Far Reaches 01 - How It Unfolds - James S. A. Corey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Corey, James S. A. - Far Reaches 1.0 - Far Reaches 01 - How It Unfolds.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Corey, James S. A. - Far Reaches 1.0 - Far Reaches 01 - How It Unfolds.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': 'Far Reaches 01 - How It Unfolds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Corey, James S. A. - Far Reaches 1.0 - Far Reaches 01 - How It Unfolds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': 'Far Reaches 01 - How It Unfolds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Corey, James S. A. - Far Reaches 1.0 - Far Reaches 01 - How It Unfolds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 05 - Grave Secrets - Kathy Reichs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 5.0 - Temperance Brennan 05 - Grave Secrets.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 5.0 - Temperance Brennan 05 - Grave Secrets.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 05 - Grave Secrets', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 5.0 - Temperance Brennan 05 - Grave Secrets.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 05 - Grave Secrets', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 5.0 - Temperance Brennan 05 - Grave Secrets.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 06 - Bare Bones - Kathy Reichs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 6.0 - Temperance Brennan 06 - Bare Bones.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 6.0 - Temperance Brennan 06 - Bare Bones.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 06 - Bare Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 6.0 - Temperance Brennan 06 - Bare Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 06 - Bare Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 6.0 - Temperance Brennan 06 - Bare Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Caffery 01 - Birdman - Mo Hayder

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mo Hayder - Jack Caffery 1.0 - Jack Caffery 01 - Birdman.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mo Hayder - Jack Caffery 1.0 - Jack Caffery 01 - Birdman.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 01 - Birdman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 1.0 - Jack Caffery 01 - Birdman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 01 - Birdman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 1.0 - Jack Caffery 01 - Birdman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: WMC 23 - The 23rd Midnight - James Patterson & Maxine Paetro

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James Patterson & Maxine Paetro - Women_s Murder Club 23.0 - WMC 23 - The 23rd Midnight.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James Patterson & Maxine Paetro - Women_s Murder Club 23.0 - WMC 23 - The 23rd Midnight.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson & Maxine Paetro', 'DateLastRead': None, 'Title': 'WMC 23 - The 23rd Midnight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Patterson & Maxine Paetro - Women_s Murder Club 23.0 - WMC 23 - The 23rd Midnight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson & Maxine Paetro', 'DateLastRead': None, 'Title': 'WMC 23 - The 23rd Midnight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Patterson & Maxine Paetro - Women_s Murder Club 23.0 - WMC 23 - The 23rd Midnight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Murderbot Diaries 05 - Network Effect - Martha Wells

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 5.0 - Murderbot Diaries 05 - Network Effect.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 5.0 - Murderbot Diaries 05 - Network Effect.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 05 - Network Effect', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 5.0 - Murderbot Diaries 05 - Network Effect.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 05 - Network Effect', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 5.0 - Murderbot Diaries 05 - Network Effect.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Temperance Brennan 08 - Cross Bones - Kathy Reichs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 8.0 - Temperance Brennan 08 - Cross Bones.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 8.0 - Temperance Brennan 08 - Cross Bones.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 08 - Cross Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 8.0 - Temperance Brennan 08 - Cross Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kathy Reichs', 'DateLastRead': None, 'Title': 'Temperance Brennan 08 - Cross Bones', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kathy Reichs - Temperance Brennan 8.0 - Temperance Brennan 08 - Cross Bones.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Caffery 02 - The Treatment - Mo Hayder

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mo Hayder - Jack Caffery 2.0 - Jack Caffery 02 - The Treatment.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mo Hayder - Jack Caffery 2.0 - Jack Caffery 02 - The Treatment.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 02 - The Treatment', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 2.0 - Jack Caffery 02 - The Treatment.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 02 - The Treatment', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 2.0 - Jack Caffery 02 - The Treatment.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Caffery 03 - Ritual - Mo Hayder

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mo Hayder - Jack Caffery 3.0 - Jack Caffery 03 - Ritual.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mo Hayder - Jack Caffery 3.0 - Jack Caffery 03 - Ritual.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 03 - Ritual', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 3.0 - Jack Caffery 03 - Ritual.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffery 03 - Ritual', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 3.0 - Jack Caffery 03 - Ritual.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lincoln Lawyer 06 - The Law of Innocence - Michael Connelly

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 6.0 - Lincoln Lawyer 06 - The Law of Innocence.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 6.0 - Lincoln Lawyer 06 - The Law of Innocence.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 06 - The Law of Innocence', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 6.0 - Lincoln Lawyer 06 - The Law of Innocence.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Connelly', 'DateLastRead': None, 'Title': 'Lincoln Lawyer 06 - The Law of Innocence', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Michael Connelly - Lincoln Lawyer 6.0 - Lincoln Lawyer 06 - The Law of Innocence.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Caffrey 04 - Skin - Mo Hayder

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mo Hayder - Jack Caffery 4.0 - Jack Caffrey 04 - Skin.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mo Hayder - Jack Caffery 4.0 - Jack Caffrey 04 - Skin.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffrey 04 - Skin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 4.0 - Jack Caffrey 04 - Skin.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mo Hayder', 'DateLastRead': None, 'Title': 'Jack Caffrey 04 - Skin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mo Hayder - Jack Caffery 4.0 - Jack Caffrey 04 - Skin.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Atlee Pine 04 - Mercy - David Baldacci

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David Baldacci - Atlee Pine 4.0 - Atlee Pine 04 - Mercy.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/David Baldacci - Atlee Pine 4.0 - Atlee Pine 04 - Mercy.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 04 - Mercy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 4.0 - Atlee Pine 04 - Mercy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 04 - Mercy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 4.0 - Atlee Pine 04 - Mercy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Atlee Pine 01 - Long Road to Mercy - David Baldacci

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David Baldacci - Atlee Pine 1.0 - Atlee Pine 01 - Long Road to Mercy.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/David Baldacci - Atlee Pine 1.0 - Atlee Pine 01 - Long Road to Mercy.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 01 - Long Road to Mercy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 1.0 - Atlee Pine 01 - Long Road to Mercy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 01 - Long Road to Mercy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 1.0 - Atlee Pine 01 - Long Road to Mercy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Atlee Pine 02 - A Minute to Midnight - David Baldacci

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David Baldacci - Atlee Pine 2.0 - Atlee Pine 02 - A Minute to Midnight.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/David Baldacci - Atlee Pine 2.0 - Atlee Pine 02 - A Minute to Midnight.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 02 - A Minute to Midnight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 2.0 - Atlee Pine 02 - A Minute to Midnight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 02 - A Minute to Midnight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 2.0 - Atlee Pine 02 - A Minute to Midnight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Inheritance Cycle 01 - Eragon - Christopher Paolini

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Christopher Paolini - Inheritance Cycle 1.0 - Inheritance Cycle 01 - Eragon.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Christopher Paolini - Inheritance Cycle 1.0 - Inheritance Cycle 01 - Eragon.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Paolini', 'DateLastRead': None, 'Title': 'Inheritance Cycle 01 - Eragon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Christopher Paolini - Inheritance Cycle 1.0 - Inheritance Cycle 01 - Eragon.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher Paolini', 'DateLastRead': None, 'Title': 'Inheritance Cycle 01 - Eragon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Christopher Paolini - Inheritance Cycle 1.0 - Inheritance Cycle 01 - Eragon.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: In Death 57 - Payback in Death - J. D. Robb

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 57.0 - In Death 57 - Payback in Death.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 57.0 - In Death 57 - Payback in Death.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 57 - Payback in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 57.0 - In Death 57 - Payback in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 57 - Payback in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 57.0 - In Death 57 - Payback in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Malazan Book of the Fallan 01 - Gardens of the Moon - Steven Erikson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Steven Erikson - Malazan Book of the Fallen 01 - Malazan Book of the Fallan 01 - Gardens of the Moon.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Steven Erikson - Malazan Book of the Fallen 01 - Malazan Book of the Fallan 01 - Gardens of the Moon.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/frontmatter004.html#point(/1/4/2/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Steven Erikson', 'DateLastRead': '2024-09-24T17:52:50Z', 'Title': 'Malazan Book of the Fallan 01 - Gardens of the Moon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Steven Erikson - Malazan Book of the Fallen 01 - Malazan Book of the Fallan 01 - Gardens of the Moon.epub', 'TimeSpentReading': 299, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-09-24 17:52:50+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Shining 01 - The Shining - Stephen King

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stephen King - Shining 1.0 - Shining 01 - The Shining.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stephen King - Shining 1.0 - Shining 01 - The Shining.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/King_9780385528863_epub_c01_r1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Stephen King', 'DateLastRead': '2024-07-08T22:13:48Z', 'Title': 'Shining 01 - The Shining', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - Shining 1.0 - Shining 01 - The Shining.epub', 'TimeSpentReading': 296, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-07-08 22:13:48+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Atlee Pine 03 - Daylight - David Baldacci

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/David Baldacci - Atlee Pine 3.0 - Atlee Pine 03 - Daylight.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/David Baldacci - Atlee Pine 3.0 - Atlee Pine 03 - Daylight.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 03 - Daylight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 3.0 - Atlee Pine 03 - Daylight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Baldacci', 'DateLastRead': None, 'Title': 'Atlee Pine 03 - Daylight', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/David Baldacci - Atlee Pine 3.0 - Atlee Pine 03 - Daylight.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Recluse 03 - The Magic Engineer - L.E. Modesitt, Jr.

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/L.E. Modesitt, Jr. - The Magic Engineer 3.0 - Recluse 03 - The Magic Engineer.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/L.E. Modesitt, Jr. - The Magic Engineer 3.0 - Recluse 03 - The Magic Engineer.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'L.E. Modesitt, Jr.', 'DateLastRead': None, 'Title': 'Recluse 03 - The Magic Engineer', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/L.E. Modesitt, Jr. - The Magic Engineer 3.0 - Recluse 03 - The Magic Engineer.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'L.E. Modesitt, Jr.', 'DateLastRead': None, 'Title': 'Recluse 03 - The Magic Engineer', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/L.E. Modesitt, Jr. - The Magic Engineer 3.0 - Recluse 03 - The Magic Engineer.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Kingsbridge 05 - The Armor of Light - Ken Follett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ken Follett - The Armor of L 5.0 - Kingsbridge 05 - The Armor of Light.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ken Follett - The Armor of L 5.0 - Kingsbridge 05 - The Armor of Light.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': None, 'Title': 'Kingsbridge 05 - The Armor of Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ken Follett - The Armor of L 5.0 - Kingsbridge 05 - The Armor of Light.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': None, 'Title': 'Kingsbridge 05 - The Armor of Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ken Follett - The Armor of L 5.0 - Kingsbridge 05 - The Armor of Light.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 04 - Sharpe's Trafalgar - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 04 - Sharpe 04 - Sharpe_s Trafalgar.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 04 - Sharpe 04 - Sharpe_s Trafalgar.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 04 - Sharpe's Trafalgar", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 04 - Sharpe 04 - Sharpe_s Trafalgar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 04 - Sharpe's Trafalgar", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 04 - Sharpe 04 - Sharpe_s Trafalgar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 28 - The Secret - Lee Child & Andrew Child

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child & Andrew Child - Jack Reacher 28 - Jack Reacher 28 - The Secret.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child & Andrew Child - Jack Reacher 28 - Jack Reacher 28 - The Secret.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child & Andrew Child', 'DateLastRead': None, 'Title': 'Jack Reacher 28 - The Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child & Andrew Child - Jack Reacher 28 - Jack Reacher 28 - The Secret.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child & Andrew Child', 'DateLastRead': None, 'Title': 'Jack Reacher 28 - The Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child & Andrew Child - Jack Reacher 28 - Jack Reacher 28 - The Secret.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Murderbot Diaries 07 - System Collapse - Martha Wells

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 7.0 - Murderbot Diaries 07 - System Collapse.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 7.0 - Murderbot Diaries 07 - System Collapse.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 07 - System Collapse', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 7.0 - Murderbot Diaries 07 - System Collapse.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Murderbot Diaries 07 - System Collapse', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Murderbot Diaries 7.0 - Murderbot Diaries 07 - System Collapse.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Courtney 02 - The Sound of Thunder - Wilbur Smith

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wilbur Smith - Courtney 02 - Courtney 02 - The Sound of Thunder.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wilbur Smith - Courtney 02 - Courtney 02 - The Sound of Thunder.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 02 - The Sound of Thunder', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 02 - Courtney 02 - The Sound of Thunder.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 02 - The Sound of Thunder', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 02 - Courtney 02 - The Sound of Thunder.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Shetland 01 - Raven Black - Ann Cleeves

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ann Cleeves - Shetland 01 - Shetland 01 - Raven Black.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ann Cleeves - Shetland 01 - Shetland 01 - Raven Black.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Shetland 01 - Raven Black', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Shetland 01 - Shetland 01 - Raven Black.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Shetland 01 - Raven Black', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Shetland 01 - Shetland 01 - Raven Black.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Shetland 02 - White Nights - Ann Cleeves

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ann Cleeves - Shetland 02 - Shetland 02 - White Nights.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ann Cleeves - Shetland 02 - Shetland 02 - White Nights.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Shetland 02 - White Nights', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Shetland 02 - Shetland 02 - White Nights.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Shetland 02 - White Nights', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Shetland 02 - Shetland 02 - White Nights.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 05 - Sharpe's Prey - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 05 - Sharpe 05 - Sharpe_s Prey.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 05 - Sharpe 05 - Sharpe_s Prey.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 05 - Sharpe's Prey", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 05 - Sharpe 05 - Sharpe_s Prey.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 05 - Sharpe's Prey", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 05 - Sharpe 05 - Sharpe_s Prey.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Motherland - Maria Hummel

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Maria Hummel - Motherland.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Maria Hummel - Motherland.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Maria Hummel', 'DateLastRead': None, 'Title': 'Motherland', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Maria Hummel - Motherland.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Maria Hummel', 'DateLastRead': None, 'Title': 'Motherland', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Maria Hummel - Motherland.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Books of the Raksura 04 - Stories of the Raksura Vol 1. - Martha Wells

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Martha Wells - Books of the Raksura 04 - Books of the Raksura 04 - Stories of the Raksura Vol 1_.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Martha Wells - Books of the Raksura 04 - Books of the Raksura 04 - Stories of the Raksura Vol 1_.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Books of the Raksura 04 - Stories of the Raksura Vol 1.', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Books of the Raksura 04 - Books of the Raksura 04 - Stories of the Raksura Vol 1_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Martha Wells', 'DateLastRead': None, 'Title': 'Books of the Raksura 04 - Stories of the Raksura Vol 1.', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Martha Wells - Books of the Raksura 04 - Books of the Raksura 04 - Stories of the Raksura Vol 1_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lost Fleet 02 - Fearless - Jack Campbell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lost Fleet 02 - Fearless # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lost Fleet 02 - Fearless # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack Campbell', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lost Fleet 02 - Fearless', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lost Fleet 02 - Fearless # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack Campbell', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lost Fleet 02 - Fearless', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lost Fleet 02 - Fearless # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Slough House 01 - Slow Horses (Deluxe Edition) - Mick Herron

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mick Herron - Slough House 01 - Slough House 01 - Slow Horses (Deluxe Edition).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mick Herron - Slough House 01 - Slough House 01 - Slow Horses (Deluxe Edition).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Slow_Horses_Deluxe-6.xhtml#point(/1/4/54/1:521)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 4, 'Attribution': 'Mick Herron', 'DateLastRead': '2024-02-10T12:43:01Z', 'Title': 'Slough House 01 - Slow Horses (Deluxe Edition)', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mick Herron - Slough House 01 - Slough House 01 - Slow Horses (Deluxe Edition).epub', 'TimeSpentReading': 1579, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-02-10 12:43:01+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Realm of False Gods 0.5 - Live and Die by Magic - Steve Higgs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Steve Higgs - Realm of False Gods 0.5 - Realm of False Gods 0.5 - Live and Die by Magic.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Steve Higgs - Realm of False Gods 0.5 - Realm of False Gods 0.5 - Live and Die by Magic.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steve Higgs', 'DateLastRead': None, 'Title': 'Realm of False Gods 0.5 - Live and Die by Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Steve Higgs - Realm of False Gods 0.5 - Realm of False Gods 0.5 - Live and Die by Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steve Higgs', 'DateLastRead': None, 'Title': 'Realm of False Gods 0.5 - Live and Die by Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Steve Higgs - Realm of False Gods 0.5 - Realm of False Gods 0.5 - Live and Die by Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Realm of False Gods 01 - Untethered Magic - Higgs, Steve

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Higgs, Steve - Realm of False Gods 01 - Realm of False Gods 01 - Untethered Magic.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Higgs, Steve - Realm of False Gods 01 - Realm of False Gods 01 - Untethered Magic.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Higgs, Steve', 'DateLastRead': None, 'Title': 'Realm of False Gods 01 - Untethered Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Higgs, Steve - Realm of False Gods 01 - Realm of False Gods 01 - Untethered Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Higgs, Steve', 'DateLastRead': None, 'Title': 'Realm of False Gods 01 - Untethered Magic', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Higgs, Steve - Realm of False Gods 01 - Realm of False Gods 01 - Untethered Magic.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lost Fleet 03 - Courageous - Jack Campbell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lost Fleet 03 - Courageous # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lost Fleet 03 - Courageous # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack Campbell', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lost Fleet 03 - Courageous', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lost Fleet 03 - Courageous # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jack Campbell', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Lost Fleet 03 - Courageous', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lost Fleet 03 - Courageous # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Courtney 01 - When the Lion Feeds - Wilbur Smith

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wilbur Smith - Courtney 01 - Courtney 01 - When the Lion Feeds.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wilbur Smith - Courtney 01 - Courtney 01 - When the Lion Feeds.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 01 - When the Lion Feeds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 01 - Courtney 01 - When the Lion Feeds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 01 - When the Lion Feeds', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 01 - Courtney 01 - When the Lion Feeds.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Inspector Banks 03 - A Necessary End - Peter Robinson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Inspector Banks 03 - A Necessary End # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Inspector Banks 03 - A Necessary End # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter Robinson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Inspector Banks 03 - A Necessary End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Inspector Banks 03 - A Necessary End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter Robinson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Inspector Banks 03 - A Necessary End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Inspector Banks 03 - A Necessary End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Courtney 03 - A Sparrow Falls - Wilbur Smith

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wilbur Smith - Courtney 03 - Courtney 03 - A Sparrow Falls.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wilbur Smith - Courtney 03 - Courtney 03 - A Sparrow Falls.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 03 - A Sparrow Falls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 03 - Courtney 03 - A Sparrow Falls.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Wilbur Smith', 'DateLastRead': None, 'Title': 'Courtney 03 - A Sparrow Falls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wilbur Smith - Courtney 03 - Courtney 03 - A Sparrow Falls.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Detective Kat Ballantyne 01 - The Seventh Girl - Andy Maslen

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Andy Maslen - Detective Kat Ballantyne 01 - Detective Kat Ballantyne 01 - The Seventh Girl.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Andy Maslen - Detective Kat Ballantyne 01 - Detective Kat Ballantyne 01 - The Seventh Girl.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Maslen', 'DateLastRead': None, 'Title': 'Detective Kat Ballantyne 01 - The Seventh Girl', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Andy Maslen - Detective Kat Ballantyne 01 - Detective Kat Ballantyne 01 - The Seventh Girl.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Maslen', 'DateLastRead': None, 'Title': 'Detective Kat Ballantyne 01 - The Seventh Girl', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Andy Maslen - Detective Kat Ballantyne 01 - Detective Kat Ballantyne 01 - The Seventh Girl.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Valdemar 01 - Arrows of the Queen - Mercedes Lackey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mercedes Lackey - Valdemar 01 - Valdemar 01 - Arrows of the Queen.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mercedes Lackey - Valdemar 01 - Valdemar 01 - Arrows of the Queen.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar 01 - Arrows of the Queen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar 01 - Valdemar 01 - Arrows of the Queen.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mercedes Lackey', 'DateLastRead': None, 'Title': 'Valdemar 01 - Arrows of the Queen', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercedes Lackey - Valdemar 01 - Valdemar 01 - Arrows of the Queen.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 06 - Sharpe's Rifles - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 06 - Sharpe 06 - Sharpe_s Rifles.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 06 - Sharpe 06 - Sharpe_s Rifles.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 06 - Sharpe's Rifles", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 06 - Sharpe 06 - Sharpe_s Rifles.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 06 - Sharpe's Rifles", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 06 - Sharpe 06 - Sharpe_s Rifles.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 07 - Sharpe's Havoc - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 07 - Sharpe 07 - Sharpe_s Havoc.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 07 - Sharpe 07 - Sharpe_s Havoc.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 07 - Sharpe's Havoc", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 07 - Sharpe 07 - Sharpe_s Havoc.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 07 - Sharpe's Havoc", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 07 - Sharpe 07 - Sharpe_s Havoc.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 01 - Old Man's War - John Scalzi

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 01 - Old Man_s War 01 - Old Man_s War.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 01 - Old Man_s War 01 - Old Man_s War.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 01 - Old Man's War", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 01 - Old Man_s War 01 - Old Man_s War.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 01 - Old Man's War", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 01 - Old Man_s War 01 - Old Man_s War.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Martini Club 01 - The Spy Coast - Tess Gerritsen

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tess Gerritsen - Martini Club 01 - Martini Club 01 - The Spy Coast.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tess Gerritsen - Martini Club 01 - Martini Club 01 - The Spy Coast.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tess Gerritsen', 'DateLastRead': None, 'Title': 'Martini Club 01 - The Spy Coast', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tess Gerritsen - Martini Club 01 - Martini Club 01 - The Spy Coast.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tess Gerritsen', 'DateLastRead': None, 'Title': 'Martini Club 01 - The Spy Coast', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tess Gerritsen - Martini Club 01 - Martini Club 01 - The Spy Coast.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 01.5 - Questions for a Soldier - John Scalzi

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 1.5 - Old Man_s War 01.5 - Questions for a Soldier.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 1.5 - Old Man_s War 01.5 - Questions for a Soldier.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 01.5 - Questions for a Soldier", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 1.5 - Old Man_s War 01.5 - Questions for a Soldier.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 01.5 - Questions for a Soldier", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 1.5 - Old Man_s War 01.5 - Questions for a Soldier.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 08 - Sharpe's Eagle - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 08 - Sharpe 08 - Sharpe_s Eagle.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 08 - Sharpe 08 - Sharpe_s Eagle.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 08 - Sharpe's Eagle", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 08 - Sharpe 08 - Sharpe_s Eagle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 08 - Sharpe's Eagle", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 08 - Sharpe 08 - Sharpe_s Eagle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: In Death 58 - Random in Death - J. D. Robb

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 58 - In Death 58 - Random in Death.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 58 - In Death 58 - Random in Death.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 58 - Random in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 58 - In Death 58 - Random in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 58 - Random in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 58 - In Death 58 - Random in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Cuckoo's Child - Margaret Thompson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Cuckoo_s Child # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Cuckoo_s Child # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Margaret Thompson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "The Cuckoo's Child", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Cuckoo_s Child # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Margaret Thompson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "The Cuckoo's Child", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Cuckoo_s Child # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Once We Were Brothers - Ronald H. Balson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Once We Were Brothers # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Once We Were Brothers # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ronald H. Balson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Once We Were Brothers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Once We Were Brothers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ronald H. Balson', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Once We Were Brothers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Once We Were Brothers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 09 - Sharpe's Gold - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 09 - Sharpe 09 - Sharpe_s Gold.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 09 - Sharpe 09 - Sharpe_s Gold.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 09 - Sharpe's Gold", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 09 - Sharpe 09 - Sharpe_s Gold.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 09 - Sharpe's Gold", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 09 - Sharpe 09 - Sharpe_s Gold.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 10 - Sharpe's Escape - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 10 - Sharpe 10 - Sharpe_s Escape.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 10 - Sharpe 10 - Sharpe_s Escape.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 10 - Sharpe's Escape", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 10 - Sharpe 10 - Sharpe_s Escape.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 10 - Sharpe's Escape", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 10 - Sharpe 10 - Sharpe_s Escape.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 11 - Sharpe's Fury - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 11 - Sharpe 11 - Sharpe_s Fury.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 11 - Sharpe 11 - Sharpe_s Fury.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 11 - Sharpe's Fury", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 11 - Sharpe 11 - Sharpe_s Fury.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 11 - Sharpe's Fury", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 11 - Sharpe 11 - Sharpe_s Fury.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Thursday Next 02 - Lost in a Good Book - Jasper Fforde

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jasper Fforde - Thursday Next 02 - Thursday Next 02 - Lost in a Good Book.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jasper Fforde - Thursday Next 02 - Thursday Next 02 - Lost in a Good Book.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jasper Fforde', 'DateLastRead': None, 'Title': 'Thursday Next 02 - Lost in a Good Book', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jasper Fforde - Thursday Next 02 - Thursday Next 02 - Lost in a Good Book.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jasper Fforde', 'DateLastRead': None, 'Title': 'Thursday Next 02 - Lost in a Good Book', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jasper Fforde - Thursday Next 02 - Thursday Next 02 - Lost in a Good Book.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 04 - Zoe's Tale - John Scalzi

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 04 - Old Man_s War 04 - Zoe_s Tale.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 04 - Old Man_s War 04 - Zoe_s Tale.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 04 - Zoe's Tale", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 04 - Old Man_s War 04 - Zoe_s Tale.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 04 - Zoe's Tale", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 04 - Old Man_s War 04 - Zoe_s Tale.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 02.5 - The Sagan Diary - John Scalzi

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 2.5 - Old Man_s War 02.5 - The Sagan Diary.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 2.5 - Old Man_s War 02.5 - The Sagan Diary.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 02.5 - The Sagan Diary", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 2.5 - Old Man_s War 02.5 - The Sagan Diary.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 02.5 - The Sagan Diary", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 2.5 - Old Man_s War 02.5 - The Sagan Diary.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 03 - The Last Colony - John Scalzi

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 03 - Old Man_s War 03 - The Last Colony.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 03 - Old Man_s War 03 - The Last Colony.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 03 - The Last Colony", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 03 - Old Man_s War 03 - The Last Colony.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 03 - The Last Colony", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 03 - Old Man_s War 03 - The Last Colony.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 05 - The Human Division - John Scalzi

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 05 - Old Man_s War 05 - The Human Division.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 05 - Old Man_s War 05 - The Human Division.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 05 - The Human Division", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 05 - Old Man_s War 05 - The Human Division.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 05 - The Human Division", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 05 - Old Man_s War 05 - The Human Division.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Old Man's War 06 - The End of All Things - John Scalzi

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Scalzi - Old Man_s War 06 - Old Man_s War 06 - The End of All Things.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Scalzi - Old Man_s War 06 - Old Man_s War 06 - The End of All Things.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 06 - The End of All Things", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 06 - Old Man_s War 06 - The End of All Things.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Scalzi', 'DateLastRead': None, 'Title': "Old Man's War 06 - The End of All Things", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Scalzi - Old Man_s War 06 - Old Man_s War 06 - The End of All Things.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 14 - The Good, The Bad and The History - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14 - Chronicles of St Mary_s 14 - The Good, The Bad and The History.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14 - Chronicles of St Mary_s 14 - The Good, The Bad and The History.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 14 - The Good, The Bad and The History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14 - Chronicles of St Mary_s 14 - The Good, The Bad and The History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 14 - The Good, The Bad and The History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14 - Chronicles of St Mary_s 14 - The Good, The Bad and The History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Time Police 03 - Saving Time - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 03 - Time Police 03 - Saving Time.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 03 - Time Police 03 - Saving Time.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 03 - Saving Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 03 - Time Police 03 - Saving Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 03 - Saving Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 03 - Time Police 03 - Saving Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 12 - Another Time, Another Place - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12 - Chronicles of St Mary_s 12 - Another Time, Another Place.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12 - Chronicles of St Mary_s 12 - Another Time, Another Place.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 12 - Another Time, Another Place", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12 - Chronicles of St Mary_s 12 - Another Time, Another Place.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 12 - Another Time, Another Place", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12 - Chronicles of St Mary_s 12 - Another Time, Another Place.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 07 - Lies, Damned Lies, and History - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 07 - Chronicles of St Mary_s 07 - Lies, Damned Lies, and History.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 07 - Chronicles of St Mary_s 07 - Lies, Damned Lies, and History.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07 - Lies, Damned Lies, and History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 07 - Chronicles of St Mary_s 07 - Lies, Damned Lies, and History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07 - Lies, Damned Lies, and History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 07 - Chronicles of St Mary_s 07 - Lies, Damned Lies, and History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 07.6 - My Name is Markham - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.6 - Chronicles of St Mary_s 07.6 - My Name is Markham.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.6 - Chronicles of St Mary_s 07.6 - My Name is Markham.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.6 - My Name is Markham", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.6 - Chronicles of St Mary_s 07.6 - My Name is Markham.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.6 - My Name is Markham", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.6 - Chronicles of St Mary_s 07.6 - My Name is Markham.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 08 - And the Rest Is History - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 08 - Chronicles of St Mary_s 08 - And the Rest Is History.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 08 - Chronicles of St Mary_s 08 - And the Rest Is History.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08 - And the Rest Is History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 08 - Chronicles of St Mary_s 08 - And the Rest Is History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08 - And the Rest Is History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 08 - Chronicles of St Mary_s 08 - And the Rest Is History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 08.6 - A Perfect Storm - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.6 - Chronicles of St Mary_s 08.6 - A Perfect Storm.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.6 - Chronicles of St Mary_s 08.6 - A Perfect Storm.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.6 - A Perfect Storm", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.6 - Chronicles of St Mary_s 08.6 - A Perfect Storm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.6 - A Perfect Storm", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.6 - Chronicles of St Mary_s 08.6 - A Perfect Storm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 08.7 - Christmas Past - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.7 - Chronicles of St Mary_s 08.7 - Christmas Past.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.7 - Chronicles of St Mary_s 08.7 - Christmas Past.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.7 - Christmas Past", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.7 - Chronicles of St Mary_s 08.7 - Christmas Past.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.7 - Christmas Past", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.7 - Chronicles of St Mary_s 08.7 - Christmas Past.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 09 - An Argumentation of Historians - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 09 - Chronicles of St Mary_s 09 - An Argumentation of Historians.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 09 - Chronicles of St Mary_s 09 - An Argumentation of Historians.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09 - An Argumentation of Historians", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 09 - Chronicles of St Mary_s 09 - An Argumentation of Historians.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09 - An Argumentation of Historians", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 09 - Chronicles of St Mary_s 09 - An Argumentation of Historians.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 09.5 - The Battersea Barricades - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.5 - Chronicles of St Mary_s 09.5 - The Battersea Barricades.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.5 - Chronicles of St Mary_s 09.5 - The Battersea Barricades.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.5 - The Battersea Barricades", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.5 - Chronicles of St Mary_s 09.5 - The Battersea Barricades.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.5 - The Battersea Barricades", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.5 - Chronicles of St Mary_s 09.5 - The Battersea Barricades.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 09.6 - The Steam Pump Jump - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.6 - Chronicles of St Mary_s 09.6 - The Steam Pump Jump.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.6 - Chronicles of St Mary_s 09.6 - The Steam Pump Jump.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.6 - The Steam Pump Jump", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.6 - Chronicles of St Mary_s 09.6 - The Steam Pump Jump.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.6 - The Steam Pump Jump", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.6 - Chronicles of St Mary_s 09.6 - The Steam Pump Jump.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 10.5 - When Did You Last See Your Father? - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.5 - Chronicles of St Mary_s 10.5 - When Did You Last See Your Father_.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.5 - Chronicles of St Mary_s 10.5 - When Did You Last See Your Father_.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10.5 - When Did You Last See Your Father?", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.5 - Chronicles of St Mary_s 10.5 - When Did You Last See Your Father_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10.5 - When Did You Last See Your Father?", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.5 - Chronicles of St Mary_s 10.5 - When Did You Last See Your Father_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 11 - Plan for the Worst - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11 - Chronicles of St Mary_s 11 - Plan for the Worst.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11 - Chronicles of St Mary_s 11 - Plan for the Worst.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11 - Plan for the Worst", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11 - Chronicles of St Mary_s 11 - Plan for the Worst.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11 - Plan for the Worst", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11 - Chronicles of St Mary_s 11 - Plan for the Worst.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 11.5 - The Ordeal of the Haunted Room - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.5 - Chronicles of St Mary_s 11.5 - The Ordeal of the Haunted Room.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.5 - Chronicles of St Mary_s 11.5 - The Ordeal of the Haunted Room.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11.5 - The Ordeal of the Haunted Room", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.5 - Chronicles of St Mary_s 11.5 - The Ordeal of the Haunted Room.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11.5 - The Ordeal of the Haunted Room", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.5 - Chronicles of St Mary_s 11.5 - The Ordeal of the Haunted Room.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 12.5 - The Toast of Time - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12.5 - Chronicles of St Mary_s 12.5 - The Toast of Time.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12.5 - Chronicles of St Mary_s 12.5 - The Toast of Time.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 12.5 - The Toast of Time", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12.5 - Chronicles of St Mary_s 12.5 - The Toast of Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 12.5 - The Toast of Time", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 12.5 - Chronicles of St Mary_s 12.5 - The Toast of Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 13 - A Catalogue of Catastrophe - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 13 - Chronicles of St Mary_s 13 - A Catalogue of Catastrophe.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 13 - Chronicles of St Mary_s 13 - A Catalogue of Catastrophe.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 13 - A Catalogue of Catastrophe", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 13 - Chronicles of St Mary_s 13 - A Catalogue of Catastrophe.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 13 - A Catalogue of Catastrophe", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 13 - Chronicles of St Mary_s 13 - A Catalogue of Catastrophe.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 10 - Hope for the Best - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10 - Chronicles of St Mary_s 10 - Hope for the Best.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10 - Chronicles of St Mary_s 10 - Hope for the Best.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10 - Hope for the Best", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10 - Chronicles of St Mary_s 10 - Hope for the Best.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10 - Hope for the Best", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10 - Chronicles of St Mary_s 10 - Hope for the Best.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Shōgun - James Clavell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James Clavell - Asian Saga 01 - Shogun.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James Clavell - Asian Saga 01 - Shogun.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Clavell', 'DateLastRead': None, 'Title': 'Shōgun', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Clavell - Asian Saga 01 - Shogun.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Clavell', 'DateLastRead': None, 'Title': 'Shōgun', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James Clavell - Asian Saga 01 - Shogun.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Empyrean 01 - Fourth Wing - Rebecca Yarros

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rebecca Yarros - Empyrean 01 - Empyrean 01 - Fourth Wing.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rebecca Yarros - Empyrean 01 - Empyrean 01 - Fourth Wing.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter04.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 11, 'Attribution': 'Rebecca Yarros', 'DateLastRead': '2025-02-13T17:11:34Z', 'Title': 'Empyrean 01 - Fourth Wing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rebecca Yarros - Empyrean 01 - Empyrean 01 - Fourth Wing.epub', 'TimeSpentReading': 1398, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-02-13 17:11:34+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 03.5 - The Vessel - Taylor Stevens

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 03.5 - The Vessel # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 03.5 - The Vessel # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 03.5 - The Vessel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 03.5 - The Vessel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 03.5 - The Vessel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 03.5 - The Vessel # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 07.5 - The Great St Mary's Day Out - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.5 - Chronicles of St Mary_s 07.5 - The Great St Mary_s Day Out.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.5 - Chronicles of St Mary_s 07.5 - The Great St Mary_s Day Out.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.5 - The Great St Mary's Day Out", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.5 - Chronicles of St Mary_s 07.5 - The Great St Mary_s Day Out.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.5 - The Great St Mary's Day Out", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.5 - Chronicles of St Mary_s 07.5 - The Great St Mary_s Day Out.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 07.7 - Dessicated Water - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.7 - Chronicles of St Mary_s 07.7 - Dessicated Water.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.7 - Chronicles of St Mary_s 07.7 - Dessicated Water.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.7 - Dessicated Water", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.7 - Chronicles of St Mary_s 07.7 - Dessicated Water.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 07.7 - Dessicated Water", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 7.7 - Chronicles of St Mary_s 07.7 - Dessicated Water.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 12 - Sharpe's Battle - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 12 - Sharpe 12 - Sharpe_s Battle.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 12 - Sharpe 12 - Sharpe_s Battle.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 12 - Sharpe's Battle", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 12 - Sharpe 12 - Sharpe_s Battle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 12 - Sharpe's Battle", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 12 - Sharpe 12 - Sharpe_s Battle.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 08.5 - Markham and the Anal Probing - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.5 - Chronicles of St Mary_s 08.5 - Markham and the Anal Probing.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.5 - Chronicles of St Mary_s 08.5 - Markham and the Anal Probing.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.5 - Markham and the Anal Probing", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.5 - Chronicles of St Mary_s 08.5 - Markham and the Anal Probing.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 08.5 - Markham and the Anal Probing", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 8.5 - Chronicles of St Mary_s 08.5 - Markham and the Anal Probing.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 09.7 - And Now For Something Completely Different - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.7 - Chronicles of St Mary_s 09.7 - And Now For Something Completely Different.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.7 - Chronicles of St Mary_s 09.7 - And Now For Something Completely Different.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.7 - And Now For Something Completely Different", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.7 - Chronicles of St Mary_s 09.7 - And Now For Something Completely Different.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 09.7 - And Now For Something Completely Different", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 9.7 - Chronicles of St Mary_s 09.7 - And Now For Something Completely Different.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Remembrance of Earth's Past 01 - The Three-Body Problem - Cixin Liu

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cixin Liu - Remembrance of Earth_s Past 01 - Remembrance of Earth_s Past 01 - The Three-Body Problem.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cixin Liu - Remembrance of Earth_s Past 01 - Remembrance of Earth_s Past 01 - The Three-Body Problem.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter2.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'Cixin Liu', 'DateLastRead': '2024-04-21T22:05:36Z', 'Title': "Remembrance of Earth's Past 01 - The Three-Body Problem", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cixin Liu - Remembrance of Earth_s Past 01 - Remembrance of Earth_s Past 01 - The Three-Body Problem.epub', 'TimeSpentReading': 3054, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-04-21 22:05:36+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Two Rivers 01 - The Long Call - Ann Cleeves

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ann Cleeves - Two Rivers 01 - Two Rivers 01 - The Long Call.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ann Cleeves - Two Rivers 01 - Two Rivers 01 - The Long Call.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Two Rivers 01 - The Long Call', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Two Rivers 01 - Two Rivers 01 - The Long Call.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': None, 'Title': 'Two Rivers 01 - The Long Call', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ann Cleeves - Two Rivers 01 - Two Rivers 01 - The Long Call.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Time Police 01 - Doing Time - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 01 - Time Police 01 - Doing Time.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 01 - Time Police 01 - Doing Time.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 01 - Doing Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 01 - Time Police 01 - Doing Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 01 - Doing Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 01 - Time Police 01 - Doing Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Time Police 02 - Hard Time - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 02 - Time Police 02 - Hard Time.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 02 - Time Police 02 - Hard Time.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 02 - Hard Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 02 - Time Police 02 - Hard Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 02 - Hard Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 02 - Time Police 02 - Hard Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 13 - Sharpe's Company - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 13 - Sharpe 13 - Sharpe_s Company.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 13 - Sharpe 13 - Sharpe_s Company.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 13 - Sharpe's Company", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 13 - Sharpe 13 - Sharpe_s Company.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 13 - Sharpe's Company", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 13 - Sharpe 13 - Sharpe_s Company.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 10.6 - Why is Nothing Ever Simple? - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.6 - Chronicles of St Mary_s 10.6 - Why is Nothing Ever Simple_.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.6 - Chronicles of St Mary_s 10.6 - Why is Nothing Ever Simple_.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10.6 - Why is Nothing Ever Simple?", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.6 - Chronicles of St Mary_s 10.6 - Why is Nothing Ever Simple_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 10.6 - Why is Nothing Ever Simple?", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 10.6 - Chronicles of St Mary_s 10.6 - Why is Nothing Ever Simple_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Ellery Queen 01 - Roman Hat Mystery - Ellery Queen

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ellery Queen - Ellery Queen 01 - Ellery Queen 01 - Roman Hat Mystery.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ellery Queen - Ellery Queen 01 - Ellery Queen 01 - Roman Hat Mystery.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ellery Queen', 'DateLastRead': None, 'Title': 'Ellery Queen 01 - Roman Hat Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ellery Queen - Ellery Queen 01 - Ellery Queen 01 - Roman Hat Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ellery Queen', 'DateLastRead': None, 'Title': 'Ellery Queen 01 - Roman Hat Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ellery Queen - Ellery Queen 01 - Ellery Queen 01 - Roman Hat Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Familiar - Leigh Bardugo

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Leigh Bardugo - The Familiar.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Leigh Bardugo - The Familiar.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': None, 'Title': 'The Familiar', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Leigh Bardugo - The Familiar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Leigh Bardugo', 'DateLastRead': None, 'Title': 'The Familiar', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Leigh Bardugo - The Familiar.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Tattooist of Auschwitz - Heather Morris

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Heather Morris - The Tattooist of Auschwitz.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Heather Morris - The Tattooist of Auschwitz.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Heather Morris', 'DateLastRead': None, 'Title': 'The Tattooist of Auschwitz', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Heather Morris - The Tattooist of Auschwitz.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Heather Morris', 'DateLastRead': None, 'Title': 'The Tattooist of Auschwitz', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Heather Morris - The Tattooist of Auschwitz.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Hyperion Cantos 02 - The Fall of Hyperion - Dan Simmons

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 02 - Hyperion Cantos 02 - The Fall of Hyperion.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 02 - Hyperion Cantos 02 - The Fall of Hyperion.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 02 - The Fall of Hyperion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 02 - Hyperion Cantos 02 - The Fall of Hyperion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 02 - The Fall of Hyperion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 02 - Hyperion Cantos 02 - The Fall of Hyperion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 04 - The Catch - Taylor Stevens

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 04 - The Catch # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 04 - The Catch # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 04 - The Catch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 04 - The Catch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 04 - The Catch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 04 - The Catch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 11.6 - The Muse of History - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.6 - Chronicles of St Mary_s 11.6 - The Muse of History.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.6 - Chronicles of St Mary_s 11.6 - The Muse of History.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11.6 - The Muse of History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.6 - Chronicles of St Mary_s 11.6 - The Muse of History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 11.6 - The Muse of History", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 11.6 - Chronicles of St Mary_s 11.6 - The Muse of History.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Century 03 - Edge of Eternity - Ken Follett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Century 03 - Edge of Eternity # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Century 03 - Edge of Eternity # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Century 03 - Edge of Eternity', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 03 - Edge of Eternity # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Century 03 - Edge of Eternity', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Century 03 - Edge of Eternity # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 14.5 - Christmas Pie - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14.5 - Chronicles of St Mary_s 14.5 - Christmas Pie.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14.5 - Chronicles of St Mary_s 14.5 - Christmas Pie.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 14.5 - Christmas Pie", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14.5 - Chronicles of St Mary_s 14.5 - Christmas Pie.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 14.5 - Christmas Pie", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 14.5 - Chronicles of St Mary_s 14.5 - Christmas Pie.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Time Police 04.5 - Santa Grint - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 4.5 - Time Police 04.5 - Santa Grint.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 4.5 - Time Police 04.5 - Santa Grint.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 04.5 - Santa Grint', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 4.5 - Time Police 04.5 - Santa Grint.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 04.5 - Santa Grint', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 4.5 - Time Police 04.5 - Santa Grint.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Time Police 04 - About Time - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 04 - Time Police 04 - About Time.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 04 - Time Police 04 - About Time.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 04 - About Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 04 - Time Police 04 - About Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 04 - About Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 04 - Time Police 04 - About Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Liaden 01 - Dragon Tide - Sharon Lee & Steve Miller

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Liaden 01 - Dragon Tide # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Liaden 01 - Dragon Tide # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sharon Lee & Steve Miller', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Liaden 01 - Dragon Tide', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Liaden 01 - Dragon Tide # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sharon Lee & Steve Miller', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Liaden 01 - Dragon Tide', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Liaden 01 - Dragon Tide # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Hyperion Cantos 01 - Hyperion - Dan Simmons

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 01 - Hyperion Cantos 01 - Hyperion.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 01 - Hyperion Cantos 01 - Hyperion.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 01 - Hyperion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 01 - Hyperion Cantos 01 - Hyperion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Simmons', 'DateLastRead': None, 'Title': 'Hyperion Cantos 01 - Hyperion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dan Simmons - Hyperion Cantos 01 - Hyperion Cantos 01 - Hyperion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: John Rebus 02 - Hide and Seek - Ian Rankin

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ian Rankin - John Rebus 02 - John Rebus 02 - Hide and Seek.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ian Rankin - John Rebus 02 - John Rebus 02 - Hide and Seek.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 02 - Hide and Seek', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 02 - John Rebus 02 - Hide and Seek.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 02 - Hide and Seek', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 02 - John Rebus 02 - Hide and Seek.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: John Rebus 01 - Knots and Crosses - Ian Rankin

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ian Rankin - John Rebus 01 - John Rebus 01 - Knots and Crosses.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ian Rankin - John Rebus 01 - John Rebus 01 - Knots and Crosses.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/Chapter07.xhtml#point(/1/4/158/1:173)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 25, 'Attribution': 'Ian Rankin', 'DateLastRead': '2024-10-15T22:15:29Z', 'Title': 'John Rebus 01 - Knots and Crosses', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 01 - John Rebus 01 - Knots and Crosses.epub', 'TimeSpentReading': 5296, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-10-15 22:15:29+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: John Rebus 03 - Tooth and Nail - Ian Rankin

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ian Rankin - John Rebus 03 - John Rebus 03 - Tooth and Nail.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ian Rankin - John Rebus 03 - John Rebus 03 - Tooth and Nail.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 03 - Tooth and Nail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 03 - John Rebus 03 - Tooth and Nail.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 03 - Tooth and Nail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 03 - John Rebus 03 - Tooth and Nail.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: John Rebus 04 - Strip Jack - Ian Rankin

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ian Rankin - John Rebus 04 - John Rebus 04 - Strip Jack.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ian Rankin - John Rebus 04 - John Rebus 04 - Strip Jack.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 04 - Strip Jack', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 04 - John Rebus 04 - Strip Jack.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ian Rankin', 'DateLastRead': None, 'Title': 'John Rebus 04 - Strip Jack', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ian Rankin - John Rebus 04 - John Rebus 04 - Strip Jack.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Time Police 05 - Killing Time - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Time Police 05 - Time Police 05 - Killing Time.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Time Police 05 - Time Police 05 - Killing Time.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 05 - Killing Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 05 - Time Police 05 - Killing Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': 'Time Police 05 - Killing Time', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Time Police 05 - Time Police 05 - Killing Time.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Stone Barrington 01 - New York Dead - Stuart Woods

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stuart Woods - Stone Barrington 01 - Stone Barrington 01 - New York Dead.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stuart Woods - Stone Barrington 01 - Stone Barrington 01 - New York Dead.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stuart Woods', 'DateLastRead': None, 'Title': 'Stone Barrington 01 - New York Dead', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stuart Woods - Stone Barrington 01 - Stone Barrington 01 - New York Dead.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stuart Woods', 'DateLastRead': None, 'Title': 'Stone Barrington 01 - New York Dead', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stuart Woods - Stone Barrington 01 - Stone Barrington 01 - New York Dead.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Dead Zone - Stephen King

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stephen King - The Dead Zone.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stephen King - The Dead Zone.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'The Dead Zone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - The Dead Zone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': None, 'Title': 'The Dead Zone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stephen King - The Dead Zone.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: 5th Wave 01 - The 5th Wave - Rick Yancey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/5th Wave 01 - The 5th Wave # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/5th Wave 01 - The 5th Wave # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/xhtml/intrusion.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Rick Yancey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': '5th Wave 01 - The 5th Wave', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/5th Wave 01 - The 5th Wave # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Roger the Chapman 05 - Eve of Saint Hyacinth - Kate Sedley

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 05 - Roger the Chapman 05 - Eve of Saint Hyacinth.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 05 - Roger the Chapman 05 - Eve of Saint Hyacinth.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Sedley', 'DateLastRead': None, 'Title': 'Roger the Chapman 05 - Eve of Saint Hyacinth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 05 - Roger the Chapman 05 - Eve of Saint Hyacinth.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Sedley', 'DateLastRead': None, 'Title': 'Roger the Chapman 05 - Eve of Saint Hyacinth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 05 - Roger the Chapman 05 - Eve of Saint Hyacinth.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Roger the Chapman 01 - Death and the Chapman - Kate Sedley

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 01 - Roger the Chapman 01 - Death and the Chapman.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 01 - Roger the Chapman 01 - Death and the Chapman.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Sedley', 'DateLastRead': None, 'Title': 'Roger the Chapman 01 - Death and the Chapman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 01 - Roger the Chapman 01 - Death and the Chapman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Sedley', 'DateLastRead': None, 'Title': 'Roger the Chapman 01 - Death and the Chapman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kate Sedley - Roger the Chapman 01 - Roger the Chapman 01 - Death and the Chapman.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 09 - One Shot - Lee Child

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 09 - Jack Reacher 09 - One Shot.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 09 - Jack Reacher 09 - One Shot.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 09 - One Shot', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 09 - Jack Reacher 09 - One Shot.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 09 - One Shot', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 09 - Jack Reacher 09 - One Shot.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Firm 02 - The Exchange: After the Firm - John Grisham

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Grisham - Firm 02 - Firm 02 - The Exchange_ After the Firm.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Grisham - Firm 02 - Firm 02 - The Exchange_ After the Firm.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': None, 'Title': 'Firm 02 - The Exchange: After the Firm', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Grisham - Firm 02 - Firm 02 - The Exchange_ After the Firm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': None, 'Title': 'Firm 02 - The Exchange: After the Firm', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Grisham - Firm 02 - Firm 02 - The Exchange_ After the Firm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Firm 01 - The Firm - John Grisham

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/John Grisham - Firm 01 - Firm 01 - The Firm.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/John Grisham - Firm 01 - Firm 01 - The Firm.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': None, 'Title': 'Firm 01 - The Firm', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Grisham - Firm 01 - Firm 01 - The Firm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'John Grisham', 'DateLastRead': None, 'Title': 'Firm 01 - The Firm', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/John Grisham - Firm 01 - Firm 01 - The Firm.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 10 - The Hard Way - Lee Child

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 10 - Jack Reacher 10 - The Hard Way.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 10 - Jack Reacher 10 - The Hard Way.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 10 - The Hard Way', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 10 - Jack Reacher 10 - The Hard Way.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 10 - The Hard Way', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 10 - Jack Reacher 10 - The Hard Way.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lucy Kincaid 0.5 - Love Is Murder - Allison Brennan

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Allison Brennan - Lucy Kincaid 0.5 - Lucy Kincaid 0.5 - Love Is Murder.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Allison Brennan - Lucy Kincaid 0.5 - Lucy Kincaid 0.5 - Love Is Murder.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Bren_9780345527998_epub_c01_r1.htm#point(/1/4/46/1:475)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 8, 'Attribution': 'Allison Brennan', 'DateLastRead': '2024-08-06T11:28:02Z', 'Title': 'Lucy Kincaid 0.5 - Love Is Murder', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - Lucy Kincaid 0.5 - Lucy Kincaid 0.5 - Love Is Murder.epub', 'TimeSpentReading': 2486, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-08-06 11:28:02+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Predator 02 - The Hunt - Allison Brennan

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Allison Brennan - Predator 02 - Predator 02 - The Hunt.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Allison Brennan - Predator 02 - Predator 02 - The Hunt.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Allison Brennan', 'DateLastRead': None, 'Title': 'Predator 02 - The Hunt', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - Predator 02 - Predator 02 - The Hunt.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Allison Brennan', 'DateLastRead': None, 'Title': 'Predator 02 - The Hunt', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - Predator 02 - Predator 02 - The Hunt.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Predator 03 - The Kill - Allison Brennan

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Allison Brennan - Predator 03 - Predator 03 - The Kill.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Allison Brennan - Predator 03 - Predator 03 - The Kill.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Allison Brennan', 'DateLastRead': None, 'Title': 'Predator 03 - The Kill', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - Predator 03 - Predator 03 - The Kill.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Allison Brennan', 'DateLastRead': None, 'Title': 'Predator 03 - The Kill', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - Predator 03 - Predator 03 - The Kill.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Predator 01 - The Prey - Allison Brennan

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Allison Brennan - The Prey 01 - Predator 01 - The Prey.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Allison Brennan - The Prey 01 - Predator 01 - The Prey.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/Bren_9780345490766_epub_prl_r1.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Allison Brennan', 'DateLastRead': '2024-08-08T10:59:14Z', 'Title': 'Predator 01 - The Prey', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Allison Brennan - The Prey 01 - Predator 01 - The Prey.epub', 'TimeSpentReading': 187, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-08-08 10:59:14+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Court of Thorns and Roses 01 - A Court of Thorns and Roses - Sarah J. Maas

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sarah J. Maas - Court of Thorns and Roses 01 - Court of Thorns and Roses 01 - A Court of Thorns and Roses.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sarah J. Maas - Court of Thorns and Roses 01 - Court of Thorns and Roses 01 - A Court of Thorns and Roses.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'ops/xhtml/ch7.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 15, 'Attribution': 'Sarah J. Maas', 'DateLastRead': '2024-08-28T19:14:23Z', 'Title': 'Court of Thorns and Roses 01 - A Court of Thorns and Roses', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah J. Maas - Court of Thorns and Roses 01 - Court of Thorns and Roses 01 - A Court of Thorns and Roses.epub', 'TimeSpentReading': 7851, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-08-28 19:14:23+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Bern Saga 02 - Molly Fyde and the Land of Light - Hugh Howey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bern Saga 02 - Molly Fyde and the Land of Light # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bern Saga 02 - Molly Fyde and the Land of Light # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Hugh Howey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Bern Saga 02 - Molly Fyde and the Land of Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bern Saga 02 - Molly Fyde and the Land of Light # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Hugh Howey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Bern Saga 02 - Molly Fyde and the Land of Light', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bern Saga 02 - Molly Fyde and the Land of Light # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 12 - Nothing to Lose - Lee Child

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 12 - Jack Reacher 12 - Nothing to Lose.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 12 - Jack Reacher 12 - Nothing to Lose.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 12 - Nothing to Lose', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 12 - Jack Reacher 12 - Nothing to Lose.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 12 - Nothing to Lose', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 12 - Jack Reacher 12 - Nothing to Lose.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 11 - Bad Luck and Trouble - Lee Child

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 11 - Jack Reacher 11 - Bad Luck and Trouble.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 11 - Jack Reacher 11 - Bad Luck and Trouble.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 11 - Bad Luck and Trouble', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 11 - Jack Reacher 11 - Bad Luck and Trouble.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 11 - Bad Luck and Trouble', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 11 - Jack Reacher 11 - Bad Luck and Trouble.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 13 - Gone Tomorrow - Lee Child

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 13 - Jack Reacher 13 - Gone Tomorrow.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 13 - Jack Reacher 13 - Gone Tomorrow.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 13 - Gone Tomorrow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 13 - Jack Reacher 13 - Gone Tomorrow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 13 - Gone Tomorrow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 13 - Jack Reacher 13 - Gone Tomorrow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 14 - 61 Hours - Lee Child

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 14 - Jack Reacher 14 - 61 Hours.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 14 - Jack Reacher 14 - 61 Hours.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 14 - 61 Hours', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 14 - Jack Reacher 14 - 61 Hours.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 14 - 61 Hours', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 14 - Jack Reacher 14 - 61 Hours.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 15 - Worth Dying For - Lee Child

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 15 - Jack Reacher 15 - Worth Dying For.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 15 - Jack Reacher 15 - Worth Dying For.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 15 - Worth Dying For', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 15 - Jack Reacher 15 - Worth Dying For.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 15 - Worth Dying For', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 15 - Jack Reacher 15 - Worth Dying For.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Oldest Starfighter 01 - The Oldest Starfighter - Jamie McFarlane

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jamie McFarlane - Oldest tarfighter 01 - Oldest Starfighter 01 - The Oldest Starfighter.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jamie McFarlane - Oldest tarfighter 01 - Oldest Starfighter 01 - The Oldest Starfighter.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jamie McFarlane', 'DateLastRead': None, 'Title': 'Oldest Starfighter 01 - The Oldest Starfighter', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jamie McFarlane - Oldest tarfighter 01 - Oldest Starfighter 01 - The Oldest Starfighter.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jamie McFarlane', 'DateLastRead': None, 'Title': 'Oldest Starfighter 01 - The Oldest Starfighter', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jamie McFarlane - Oldest tarfighter 01 - Oldest Starfighter 01 - The Oldest Starfighter.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: In Death 59 - Passions in Death - J. D. Robb

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 59 - In Death 59 - Passions in Death.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 59 - In Death 59 - Passions in Death.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 59 - Passions in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 59 - In Death 59 - Passions in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 59 - Passions in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 59 - In Death 59 - Passions in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sanchez & Heron 01 - Fatal Intrusion - Jeffrey Deaver & Isabella Maldonado

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeffrey Deaver & Isabella Maldonado - Sanchez & Heron 01 - Sanchez & Heron 01 - Fatal Intrusion.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeffrey Deaver & Isabella Maldonado - Sanchez & Heron 01 - Sanchez & Heron 01 - Fatal Intrusion.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Deaver & Isabella Maldonado', 'DateLastRead': None, 'Title': 'Sanchez & Heron 01 - Fatal Intrusion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Deaver & Isabella Maldonado - Sanchez & Heron 01 - Sanchez & Heron 01 - Fatal Intrusion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Deaver & Isabella Maldonado', 'DateLastRead': None, 'Title': 'Sanchez & Heron 01 - Fatal Intrusion', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Deaver & Isabella Maldonado - Sanchez & Heron 01 - Sanchez & Heron 01 - Fatal Intrusion.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 15 - Sharpe's Sword - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15 - Sharpe 15 - Sharpe_s Sword.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15 - Sharpe 15 - Sharpe_s Sword.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 15 - Sharpe's Sword", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15 - Sharpe 15 - Sharpe_s Sword.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 15 - Sharpe's Sword", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15 - Sharpe 15 - Sharpe_s Sword.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 16 - Sharpe's Enemy - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 16 - Sharpe 16 - Sharpe_s Enemy.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 16 - Sharpe 16 - Sharpe_s Enemy.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 16 - Sharpe's Enemy", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 16 - Sharpe 16 - Sharpe_s Enemy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 16 - Sharpe's Enemy", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 16 - Sharpe 16 - Sharpe_s Enemy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 17 - Sharpe's Honor - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 17 - Sharpe 17 - Sharpe_s Honor.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 17 - Sharpe 17 - Sharpe_s Honor.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 17 - Sharpe's Honor", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 17 - Sharpe 17 - Sharpe_s Honor.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 17 - Sharpe's Honor", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 17 - Sharpe 17 - Sharpe_s Honor.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 18 - Sharpe's Regiment - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18 - Sharpe 18 - Sharpe_s Regiment.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18 - Sharpe 18 - Sharpe_s Regiment.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 18 - Sharpe's Regiment", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18 - Sharpe 18 - Sharpe_s Regiment.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 18 - Sharpe's Regiment", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18 - Sharpe 18 - Sharpe_s Regiment.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 18.5 - Sharpe's Christmas - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18.5 - Sharpe 18.5 - Sharpe_s Christmas.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18.5 - Sharpe 18.5 - Sharpe_s Christmas.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 18.5 - Sharpe's Christmas", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18.5 - Sharpe 18.5 - Sharpe_s Christmas.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 18.5 - Sharpe's Christmas", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 18.5 - Sharpe 18.5 - Sharpe_s Christmas.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 19 - Sharpe's Siege - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 19 - Sharpe 19 - Sharpe_s Siege.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 19 - Sharpe 19 - Sharpe_s Siege.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 19 - Sharpe's Siege", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 19 - Sharpe 19 - Sharpe_s Siege.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 19 - Sharpe's Siege", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 19 - Sharpe 19 - Sharpe_s Siege.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 15.5 - Sharpe's Skirmish - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15.5 - Sharpe 15.5 - Sharpe_s Skirmish.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15.5 - Sharpe 15.5 - Sharpe_s Skirmish.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 15.5 - Sharpe's Skirmish", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15.5 - Sharpe 15.5 - Sharpe_s Skirmish.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 15.5 - Sharpe's Skirmish", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 15.5 - Sharpe 15.5 - Sharpe_s Skirmish.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 14 - Sharpe's Command - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 14 - Sharpe 14 - Sharpe_s Command.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 14 - Sharpe 14 - Sharpe_s Command.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 14 - Sharpe's Command", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 14 - Sharpe 14 - Sharpe_s Command.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 14 - Sharpe's Command", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 14 - Sharpe 14 - Sharpe_s Command.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 20 - Sharpe's Revenge - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 20 - Sharpe 20 - Sharpe_s Revenge.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 20 - Sharpe 20 - Sharpe_s Revenge.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 20 - Sharpe's Revenge", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 20 - Sharpe 20 - Sharpe_s Revenge.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 20 - Sharpe's Revenge", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 20 - Sharpe 20 - Sharpe_s Revenge.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 21 - Sharpe's Waterloo - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 21 - Sharpe 21 - Sharpe_s Waterloo.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 21 - Sharpe 21 - Sharpe_s Waterloo.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 21 - Sharpe's Waterloo", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 21 - Sharpe 21 - Sharpe_s Waterloo.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 21 - Sharpe's Waterloo", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 21 - Sharpe 21 - Sharpe_s Waterloo.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 15 - The Ballad of Smallhope and Pennyroyal - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15 - Chronicles of St Mary_s 15 - The Ballad of Smallhope and Pennyroyal.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15 - Chronicles of St Mary_s 15 - The Ballad of Smallhope and Pennyroyal.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/cover.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': '2024-09-21T15:36:53Z', 'Title': "Chronicles of St Mary's 15 - The Ballad of Smallhope and Pennyroyal", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15 - Chronicles of St Mary_s 15 - The Ballad of Smallhope and Pennyroyal.epub', 'TimeSpentReading': 6, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-09-21 15:36:53+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 22 - Sharpe's Assassin - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 22 - Sharpe 22 - Sharpe_s Assassin.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 22 - Sharpe 22 - Sharpe_s Assassin.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 22 - Sharpe's Assassin", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 22 - Sharpe 22 - Sharpe_s Assassin.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 22 - Sharpe's Assassin", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 22 - Sharpe 22 - Sharpe_s Assassin.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: 20,000 Leagues Under the Sea - Jules Verne

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/20,000 Leagues Under the Sea # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/20,000 Leagues Under the Sea # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jules Verne', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': '20,000 Leagues Under the Sea', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/20,000 Leagues Under the Sea # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jules Verne', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': '20,000 Leagues Under the Sea', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/20,000 Leagues Under the Sea # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Sharpe 23 - Sharpe's Devil - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Bernard Cornwell - Sharpe 23 - Sharpe 23 - Sharpe_s Devil.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Bernard Cornwell - Sharpe 23 - Sharpe 23 - Sharpe_s Devil.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 23 - Sharpe's Devil", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 23 - Sharpe 23 - Sharpe_s Devil.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': None, 'Title': "Sharpe 23 - Sharpe's Devil", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Bernard Cornwell - Sharpe 23 - Sharpe 23 - Sharpe_s Devil.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: We Solve Murders 01 - We Solve Murders - Richard Osman

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Richard Osman - We Solve Murders 01 - We Solve Murders 01 - We Solve Murders.kepub.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Richard Osman - We Solve Murders 01 - We Solve Murders 01 - We Solve Murders.kepub.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/009_Chapter_1.xhtml#kobo.1.1', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Richard Osman', 'DateLastRead': '2024-09-24T17:52:37Z', 'Title': 'We Solve Murders 01 - We Solve Murders', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Richard Osman - We Solve Murders 01 - We Solve Murders 01 - We Solve Murders.kepub.epub', 'TimeSpentReading': 661, 'RestOfBookEstimate': 25644}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-09-24 17:52:37+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: William Warwick 06 - An Eye for an Eye - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeffrey Archer - William Warwick 06 - William Warwick 06 - An Eye for an Eye.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeffrey Archer - William Warwick 06 - William Warwick 06 - An Eye for an Eye.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'William Warwick 06 - An Eye for an Eye', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - William Warwick 06 - William Warwick 06 - An Eye for an Eye.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'William Warwick 06 - An Eye for an Eye', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - William Warwick 06 - William Warwick 06 - An Eye for an Eye.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Mighty Red - Louise Erdrich

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Louise Erdrich - The Mighty Red.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Louise Erdrich - The Mighty Red.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Erdrich', 'DateLastRead': None, 'Title': 'The Mighty Red', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Louise Erdrich - The Mighty Red.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Louise Erdrich', 'DateLastRead': None, 'Title': 'The Mighty Red', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Louise Erdrich - The Mighty Red.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Clifton Chronicles 05 - Mightier Than the Sword - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clifton Chronicles 05 - Mightier Than the Sword # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clifton Chronicles 05 - Mightier Than the Sword # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Clifton Chronicles 05 - Mightier Than the Sword', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 05 - Mightier Than the Sword # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Clifton Chronicles 05 - Mightier Than the Sword', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 05 - Mightier Than the Sword # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: State Of 01 - State of Emergency - Richard Drysdale

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Richard Drysdale - State 01 - State 01 - _State of Emergency_.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Richard Drysdale - State 01 - State 01 - _State of Emergency_.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter01.xhtml#point(/1/4/20/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 4, 'Attribution': 'Richard Drysdale', 'DateLastRead': '2025-02-25T18:20:47Z', 'Title': 'State Of 01 - State of Emergency', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Richard Drysdale - State 01 - State 01 - _State of Emergency_.epub', 'TimeSpentReading': 1229, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-02-25 18:20:47+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Inspector Morse 01 - Last Bus to Woodstock - Colin Dexter

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Colin Dexter - Inspector Morse 01 - Inspector Morse 01 - Last Bus to Woodstock.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Colin Dexter - Inspector Morse 01 - Inspector Morse 01 - Last Bus to Woodstock.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Colin Dexter', 'DateLastRead': None, 'Title': 'Inspector Morse 01 - Last Bus to Woodstock', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Colin Dexter - Inspector Morse 01 - Inspector Morse 01 - Last Bus to Woodstock.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Colin Dexter', 'DateLastRead': None, 'Title': 'Inspector Morse 01 - Last Bus to Woodstock', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Colin Dexter - Inspector Morse 01 - Inspector Morse 01 - Last Bus to Woodstock.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Dark Tower 01 - The Gunslinger - Stephen King

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Dark Tower 01 - The Gunslinger # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Dark Tower 01 - The Gunslinger # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Dark Tower 01 - The Gunslinger', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dark Tower 01 - The Gunslinger # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Stephen King', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'The Dark Tower 01 - The Gunslinger', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Dark Tower 01 - The Gunslinger # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Stormlight Archive 01 - The Way of Kings - Brandon Sanderson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 01 - Stormlight Archive 01 - The Way of Kings.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 01 - Stormlight Archive 01 - The Way of Kings.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/pre.xhtml#point(/1/4/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Brandon Sanderson', 'DateLastRead': '2024-11-28T16:29:56Z', 'Title': 'Stormlight Archive 01 - The Way of Kings', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 01 - Stormlight Archive 01 - The Way of Kings.epub', 'TimeSpentReading': 1256, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-11-28 16:29:56+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Mistborn 01 - Mistborn - Brandon Sanderson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Brandon Sanderson - Mistborn 01 - Mistborn 01 - Mistborn.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Brandon Sanderson - Mistborn 01 - Mistborn 01 - Mistborn.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter2.xhtml#point(/1/4/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 6, 'Attribution': 'Brandon Sanderson', 'DateLastRead': '2025-02-14T17:51:12Z', 'Title': 'Mistborn 01 - Mistborn', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Mistborn 01 - Mistborn 01 - Mistborn.epub', 'TimeSpentReading': 3725, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-02-14 17:51:12+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Weather - Jenny Offill

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jenny Offill - Weather.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jenny Offill - Weather.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/Offi_9780385351119_epub3_p004-sup_r1.xhtml#point(/1/3/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 65, 'Attribution': 'Jenny Offill', 'DateLastRead': '2025-02-28T15:36:06Z', 'Title': 'Weather', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jenny Offill - Weather.epub', 'TimeSpentReading': 18529, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-02-28 15:36:06+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Nero Wolfe 01 - Fer-de-Lance - Rex Stout

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rex Stout - Nero Wolfe 01 - Nero Wolfe 01 - Fer-de-Lance.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rex Stout - Nero Wolfe 01 - Nero Wolfe 01 - Fer-de-Lance.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rex Stout', 'DateLastRead': None, 'Title': 'Nero Wolfe 01 - Fer-de-Lance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rex Stout - Nero Wolfe 01 - Nero Wolfe 01 - Fer-de-Lance.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rex Stout', 'DateLastRead': None, 'Title': 'Nero Wolfe 01 - Fer-de-Lance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rex Stout - Nero Wolfe 01 - Nero Wolfe 01 - Fer-de-Lance.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Shadow of the Leviathan 01 - The Tainted Cup - Robert Jackson Bennett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Robert Jackson Bennett - Shadow of the Leviathan 01 - Shadow of the Leviathan 01 - The Tainted Cup.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Robert Jackson Bennett - Shadow of the Leviathan 01 - Shadow of the Leviathan 01 - The Tainted Cup.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jackson Bennett', 'DateLastRead': None, 'Title': 'Shadow of the Leviathan 01 - The Tainted Cup', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Jackson Bennett - Shadow of the Leviathan 01 - Shadow of the Leviathan 01 - The Tainted Cup.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert Jackson Bennett', 'DateLastRead': None, 'Title': 'Shadow of the Leviathan 01 - The Tainted Cup', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Jackson Bennett - Shadow of the Leviathan 01 - Shadow of the Leviathan 01 - The Tainted Cup.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Stormlight Archive 05 - Wind and Truth - Brandon Sanderson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 05 - Stormlight Archive 05 - Wind and Truth.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 05 - Stormlight Archive 05 - Wind and Truth.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brandon Sanderson', 'DateLastRead': None, 'Title': 'Stormlight Archive 05 - Wind and Truth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 05 - Stormlight Archive 05 - Wind and Truth.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brandon Sanderson', 'DateLastRead': None, 'Title': 'Stormlight Archive 05 - Wind and Truth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Stormlight Archive 05 - Stormlight Archive 05 - Wind and Truth.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: As the Crow Flies - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/As the Crow Flies # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/As the Crow Flies # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'As the Crow Flies', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/As the Crow Flies # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'As the Crow Flies', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/As the Crow Flies # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Goldy Shultz 01 - Catering to Nobody - Diane Mott Davidson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Diane Mott Davidson - Goldy Scultz 01 - Goldy Shultz 01 - Catering to Nobody.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Diane Mott Davidson - Goldy Scultz 01 - Goldy Shultz 01 - Catering to Nobody.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Mott Davidson', 'DateLastRead': None, 'Title': 'Goldy Shultz 01 - Catering to Nobody', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Diane Mott Davidson - Goldy Scultz 01 - Goldy Shultz 01 - Catering to Nobody.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Mott Davidson', 'DateLastRead': None, 'Title': 'Goldy Shultz 01 - Catering to Nobody', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Diane Mott Davidson - Goldy Scultz 01 - Goldy Shultz 01 - Catering to Nobody.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vanessa Michael Munroe 05 - The Mask - Taylor Stevens

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vanessa Michael Munroe 05 - The Mask # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vanessa Michael Munroe 05 - The Mask # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 05 - The Mask', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 05 - The Mask # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Taylor Stevens', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vanessa Michael Munroe 05 - The Mask', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vanessa Michael Munroe 05 - The Mask # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dhalgren - Samuel R. Delany

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dhalgren # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dhalgren # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Samuel R. Delany', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Dhalgren', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dhalgren # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Samuel R. Delany', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Dhalgren', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dhalgren # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Queen of the Tearling 01 - The Queen of the Tearling - Erika Johansen

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Queen of the Tearling 01 - The Queen of the Tearling # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Queen of the Tearling 01 - The Queen of the Tearling # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erika Johansen', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Queen of the Tearling 01 - The Queen of the Tearling', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Queen of the Tearling 01 - The Queen of the Tearling # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erika Johansen', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Queen of the Tearling 01 - The Queen of the Tearling', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Queen of the Tearling 01 - The Queen of the Tearling # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Mistborn 02 - The Well of Ascension - Brandon Sanderson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Brandon Sanderson - Mistborn 02 - Mistborn 02 - The Well of Ascension.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Brandon Sanderson - Mistborn 02 - Mistborn 02 - The Well of Ascension.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brandon Sanderson', 'DateLastRead': None, 'Title': 'Mistborn 02 - The Well of Ascension', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Mistborn 02 - Mistborn 02 - The Well of Ascension.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brandon Sanderson', 'DateLastRead': None, 'Title': 'Mistborn 02 - The Well of Ascension', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Brandon Sanderson - Mistborn 02 - Mistborn 02 - The Well of Ascension.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Superintendent Battle 02 - The Seven Dials Mystery - Agatha Christie

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Agatha Christie - Superintendent Battle 02 - Superintendent Battle 02 - The Seven Dials Mystery.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Agatha Christie - Superintendent Battle 02 - Superintendent Battle 02 - The Seven Dials Mystery.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Agatha Christie', 'DateLastRead': None, 'Title': 'Superintendent Battle 02 - The Seven Dials Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Agatha Christie - Superintendent Battle 02 - Superintendent Battle 02 - The Seven Dials Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Agatha Christie', 'DateLastRead': None, 'Title': 'Superintendent Battle 02 - The Seven Dials Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Agatha Christie - Superintendent Battle 02 - Superintendent Battle 02 - The Seven Dials Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Book of Lost Tales, Part One - J.R.R. Tolkien

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J.R.R. Tolkien - The Book of Lost Tales, Part One.kepub.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J.R.R. Tolkien - The Book of Lost Tales, Part One.kepub.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/004-forewordpage.html#kobo.50.4', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'J.R.R. Tolkien', 'DateLastRead': '2025-01-11T19:02:35Z', 'Title': 'The Book of Lost Tales, Part One', 'MimeType': 'application/x-kobo-epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J.R.R. Tolkien - The Book of Lost Tales, Part One.kepub.epub', 'TimeSpentReading': 720, 'RestOfBookEstimate': 29583}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-01-11 19:02:35+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Ruth Galloway 01 - The Crossing Places - Elly Griffiths

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Elly Griffiths - Ruth Galloway 01 - Ruth Galloway 01 - The Crossing Places.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Elly Griffiths - Ruth Galloway 01 - Ruth Galloway 01 - The Crossing Places.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Elly Griffiths', 'DateLastRead': None, 'Title': 'Ruth Galloway 01 - The Crossing Places', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Elly Griffiths - Ruth Galloway 01 - Ruth Galloway 01 - The Crossing Places.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Elly Griffiths', 'DateLastRead': None, 'Title': 'Ruth Galloway 01 - The Crossing Places', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Elly Griffiths - Ruth Galloway 01 - Ruth Galloway 01 - The Crossing Places.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Expanse 0.1 - Drive - James S. A. Corey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James S. A. Corey - Expanse 0.1 - Expanse 0.1 - Drive.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James S. A. Corey - Expanse 0.1 - Expanse 0.1 - Drive.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': 'Expanse 0.1 - Drive', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James S. A. Corey - Expanse 0.1 - Expanse 0.1 - Drive.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': 'Expanse 0.1 - Drive', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James S. A. Corey - Expanse 0.1 - Expanse 0.1 - Drive.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Glass and Steele 01 - The Watchmaker's Daughter - C.J. Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/C.J. Archer - Glass and Steele 01 - Glass and Steele 01 - The Watchmaker_s Daughter.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/C.J. Archer - Glass and Steele 01 - Glass and Steele 01 - The Watchmaker_s Daughter.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C.J. Archer', 'DateLastRead': None, 'Title': "Glass and Steele 01 - The Watchmaker's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/C.J. Archer - Glass and Steele 01 - Glass and Steele 01 - The Watchmaker_s Daughter.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C.J. Archer', 'DateLastRead': None, 'Title': "Glass and Steele 01 - The Watchmaker's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/C.J. Archer - Glass and Steele 01 - Glass and Steele 01 - The Watchmaker_s Daughter.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Expanse 99 - Memory's Legion - James S. A. Corey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James S. A. Corey - Expanse 99 - Expanse 99 - Memory_s Legion.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James S. A. Corey - Expanse 99 - Expanse 99 - Memory_s Legion.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter001.xhtml#point(/1/4/36/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'James S. A. Corey', 'DateLastRead': '2025-01-27T20:54:26Z', 'Title': "Expanse 99 - Memory's Legion", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James S. A. Corey - Expanse 99 - Expanse 99 - Memory_s Legion.epub', 'TimeSpentReading': 2396, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2025-01-27 20:54:26+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Chronicles of St Mary's 15.5 - Lights! Camera! Mayhem! - Jodi Taylor

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15.5 - Chronicles of St Mary_s 15.5 - Lights_ Camera_ Mayhem_.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15.5 - Chronicles of St Mary_s 15.5 - Lights_ Camera_ Mayhem_.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 15.5 - Lights! Camera! Mayhem!", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15.5 - Chronicles of St Mary_s 15.5 - Lights_ Camera_ Mayhem_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jodi Taylor', 'DateLastRead': None, 'Title': "Chronicles of St Mary's 15.5 - Lights! Camera! Mayhem!", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jodi Taylor - Chronicles of St Mary_s 15.5 - Chronicles of St Mary_s 15.5 - Lights_ Camera_ Mayhem_.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Cities of The Weft 01 - Mordew - Alex Pheby

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Pheby - Cities Of The Weft 01 - Cities Of The Weft 01 - Mordew.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Pheby - Cities Of The Weft 01 - Cities Of The Weft 01 - Mordew.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alex Pheby', 'DateLastRead': None, 'Title': 'Cities of The Weft 01 - Mordew', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Pheby - Cities Of The Weft 01 - Cities Of The Weft 01 - Mordew.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alex Pheby', 'DateLastRead': None, 'Title': 'Cities of The Weft 01 - Mordew', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Pheby - Cities Of The Weft 01 - Cities Of The Weft 01 - Mordew.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Mitch Rapp 01 - American Assassin - Vince Flynn

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mitch Rapp 01 - American Assassin # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mitch Rapp 01 - American Assassin # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Vince Flynn', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Mitch Rapp 01 - American Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mitch Rapp 01 - American Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Vince Flynn', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Mitch Rapp 01 - American Assassin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mitch Rapp 01 - American Assassin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Foreigner 01 - Foreigner - C. J. Cherryh

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/C. J. Cherryh - Foreigner 01 - Foreigner 01 - Foreigner.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/C. J. Cherryh - Foreigner 01 - Foreigner 01 - Foreigner.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C. J. Cherryh', 'DateLastRead': None, 'Title': 'Foreigner 01 - Foreigner', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/C. J. Cherryh - Foreigner 01 - Foreigner 01 - Foreigner.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'C. J. Cherryh', 'DateLastRead': None, 'Title': 'Foreigner 01 - Foreigner', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/C. J. Cherryh - Foreigner 01 - Foreigner 01 - Foreigner.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Expanse 03 - Abaddon's Gate - James S. A. Corey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/James S. A. Corey - Expanse 03 - Expanse 03 - Abaddon_s Gate.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/James S. A. Corey - Expanse 03 - Expanse 03 - Abaddon_s Gate.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': "Expanse 03 - Abaddon's Gate", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James S. A. Corey - Expanse 03 - Expanse 03 - Abaddon_s Gate.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James S. A. Corey', 'DateLastRead': None, 'Title': "Expanse 03 - Abaddon's Gate", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/James S. A. Corey - Expanse 03 - Expanse 03 - Abaddon_s Gate.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Go Set a Watchman - Harper Lee

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Go Set a Watchman # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Go Set a Watchman # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Harper Lee', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Go Set a Watchman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Go Set a Watchman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Harper Lee', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Go Set a Watchman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Go Set a Watchman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Laundry Files 03 - The Fuller Memorandum - Charles Stross

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Charles Stross - Laundry Files 03 - Laundry Files 03 - The Fuller Memorandum.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Charles Stross - Laundry Files 03 - Laundry Files 03 - The Fuller Memorandum.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': None, 'Title': 'Laundry Files 03 - The Fuller Memorandum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Stross - Laundry Files 03 - Laundry Files 03 - The Fuller Memorandum.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': None, 'Title': 'Laundry Files 03 - The Fuller Memorandum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Stross - Laundry Files 03 - Laundry Files 03 - The Fuller Memorandum.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Laundry Files 04.5 - A Conventional Boy - Charles Stross

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Charles Stross - Laundry Files 4.5 - Laundry Files 04.5 - A Conventional Boy.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Charles Stross - Laundry Files 4.5 - Laundry Files 04.5 - A Conventional Boy.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': None, 'Title': 'Laundry Files 04.5 - A Conventional Boy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Stross - Laundry Files 4.5 - Laundry Files 04.5 - A Conventional Boy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': None, 'Title': 'Laundry Files 04.5 - A Conventional Boy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charles Stross - Laundry Files 4.5 - Laundry Files 04.5 - A Conventional Boy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Old Kingdom 01 - Sabriel - Garth Nix

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Garth Nix - Old Kingdom 01 - Old Kingdom 01 - Sabriel.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Garth Nix - Old Kingdom 01 - Old Kingdom 01 - Sabriel.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Garth Nix', 'DateLastRead': None, 'Title': 'Old Kingdom 01 - Sabriel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Garth Nix - Old Kingdom 01 - Old Kingdom 01 - Sabriel.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Garth Nix', 'DateLastRead': None, 'Title': 'Old Kingdom 01 - Sabriel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Garth Nix - Old Kingdom 01 - Old Kingdom 01 - Sabriel.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: In Death 60 - Bonded in Death - J. D. Robb

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/J. D. Robb - In Death 60 - In Death 60 - Bonded in Death.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/J. D. Robb - In Death 60 - In Death 60 - Bonded in Death.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 60 - Bonded in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 60 - In Death 60 - Bonded in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. D. Robb', 'DateLastRead': None, 'Title': 'In Death 60 - Bonded in Death', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/J. D. Robb - In Death 60 - In Death 60 - Bonded in Death.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Warbler - Sarah Beth Durst

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Sarah Beth Durst - The Warbler.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Sarah Beth Durst - The Warbler.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sarah Beth Durst', 'DateLastRead': None, 'Title': 'The Warbler', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah Beth Durst - The Warbler.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Sarah Beth Durst', 'DateLastRead': None, 'Title': 'The Warbler', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Sarah Beth Durst - The Warbler.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dirk Pitt 27 - The Corsican Shadow - Dirk Cussler

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dirk Cussler - Dirk Pitt 27 - Dirk Pitt 27 - The Corsican Shadow.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dirk Cussler - Dirk Pitt 27 - Dirk Pitt 27 - The Corsican Shadow.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dirk Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 27 - The Corsican Shadow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dirk Cussler - Dirk Pitt 27 - Dirk Pitt 27 - The Corsican Shadow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dirk Cussler', 'DateLastRead': None, 'Title': 'Dirk Pitt 27 - The Corsican Shadow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dirk Cussler - Dirk Pitt 27 - Dirk Pitt 27 - The Corsican Shadow.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Lamplighter’s Bookshop - Austin, Sophie

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Austin, Sophie - The Lamplighter_s Bookshop.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Austin, Sophie - The Lamplighter_s Bookshop.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Austin, Sophie', 'DateLastRead': None, 'Title': 'The Lamplighter’s Bookshop', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Austin, Sophie - The Lamplighter_s Bookshop.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Austin, Sophie', 'DateLastRead': None, 'Title': 'The Lamplighter’s Bookshop', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Austin, Sophie - The Lamplighter_s Bookshop.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: NF 19: The Returned, Part II - Peter David

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part II # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part II # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part II', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part II # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part II', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part II # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Ellery Queen 02 - French Powder Mystery - Ellery Queen

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ellery Queen - Ellery Queen 02 - Ellery Queen 02 - French Powder Mystery.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ellery Queen - Ellery Queen 02 - Ellery Queen 02 - French Powder Mystery.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ellery Queen', 'DateLastRead': None, 'Title': 'Ellery Queen 02 - French Powder Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ellery Queen - Ellery Queen 02 - Ellery Queen 02 - French Powder Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ellery Queen', 'DateLastRead': None, 'Title': 'Ellery Queen 02 - French Powder Mystery', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ellery Queen - Ellery Queen 02 - Ellery Queen 02 - French Powder Mystery.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: First Law World 01 - Best Served Cold - Joe Abercrombie

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/First Law World 01 - Best Served Cold # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/First Law World 01 - Best Served Cold # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joe Abercrombie', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'First Law World 01 - Best Served Cold', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/First Law World 01 - Best Served Cold # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joe Abercrombie', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'First Law World 01 - Best Served Cold', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/First Law World 01 - Best Served Cold # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Empyrean 02 - Iron Flame - Rebecca Yarros

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rebecca Yarros - Empyrean 02 - Empyrean 02 - Iron Flame.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rebecca Yarros - Empyrean 02 - Empyrean 02 - Iron Flame.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rebecca Yarros', 'DateLastRead': None, 'Title': 'Empyrean 02 - Iron Flame', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rebecca Yarros - Empyrean 02 - Empyrean 02 - Iron Flame.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rebecca Yarros', 'DateLastRead': None, 'Title': 'Empyrean 02 - Iron Flame', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rebecca Yarros - Empyrean 02 - Empyrean 02 - Iron Flame.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: NF 19: The Returned, Part I - Peter David

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part I # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part I # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part I', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part I # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part I', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part I # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: First Law 01 - The Blade Itself - Joe Abercrombie

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/First Law 01 - The Blade Itself # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/First Law 01 - The Blade Itself # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/cover.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joe Abercrombie', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'First Law 01 - The Blade Itself', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/First Law 01 - The Blade Itself # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= True

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= 0

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': 'OEBPS/cover.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joe Abercrombie', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'First Law 01 - The Blade Itself', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/First Law 01 - The Blade Itself # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Harry Bosch 02 - The Black Ice - Michael Connelly

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Harry Bosch 02 - The Black Ice # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Harry Bosch 02 - The Black Ice # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter001.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Michael Connelly', 'DateLastRead': '2023-10-20T10:14:52Z', 'Title': 'Harry Bosch 02 - The Black Ice', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Harry Bosch 02 - The Black Ice # (v5.1).epub', 'TimeSpentReading': 78, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-10-20 10:14:52+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Queen of the Tearling 02 - The Invasion of the Tearling - Erika Johansen

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Queen of the Tearling 02 - The Invasion of the Tearling # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Queen of the Tearling 02 - The Invasion of the Tearling # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erika Johansen', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Queen of the Tearling 02 - The Invasion of the Tearling', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Queen of the Tearling 02 - The Invasion of the Tearling # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Erika Johansen', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Queen of the Tearling 02 - The Invasion of the Tearling', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Queen of the Tearling 02 - The Invasion of the Tearling # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: NF 19: The Returned, Part III - Peter David

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part III # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part III # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part III', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part III # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Peter David', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Star Trek: NF 19: The Returned, Part III', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ NF 19_ The Returned, Part III # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Faebound 01 - Faebound - Saara El-Arifi

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Saara El-Arifi - Faebound 01 - Faebound 01 - Faebound.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Saara El-Arifi - Faebound 01 - Faebound 01 - Faebound.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Saara El-Arifi', 'DateLastRead': None, 'Title': 'Faebound 01 - Faebound', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Saara El-Arifi - Faebound 01 - Faebound 01 - Faebound.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Saara El-Arifi', 'DateLastRead': None, 'Title': 'Faebound 01 - Faebound', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Saara El-Arifi - Faebound 01 - Faebound 01 - Faebound.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Cormoran Strike 03 - Career of Evil - Robert Galbraith

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Cormoran Strike 03 - Career of Evil # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Cormoran Strike 03 - Career of Evil # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter001.xhtml#point(/1/4/18/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Robert Galbraith', 'DateLastRead': '2023-10-20T10:20:47Z', 'Title': 'Cormoran Strike 03 - Career of Evil', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Cormoran Strike 03 - Career of Evil # (v5.1).epub', 'TimeSpentReading': 241, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-10-20 10:20:47+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Nightingales 01 - The Nightingale Girls - Donna Douglas

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nightingales 01 - The Nightingale Girls # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Nightingales 01 - The Nightingale Girls # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donna Douglas', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Nightingales 01 - The Nightingale Girls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nightingales 01 - The Nightingale Girls # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Donna Douglas', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Nightingales 01 - The Nightingale Girls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nightingales 01 - The Nightingale Girls # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vlad Taltos 01 - The Book of Jhereg - Steven Brust

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vlad Taltos 01 - The Book of Jhereg # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vlad Taltos 01 - The Book of Jhereg # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steven Brust', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vlad Taltos 01 - The Book of Jhereg', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vlad Taltos 01 - The Book of Jhereg # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steven Brust', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Vlad Taltos 01 - The Book of Jhereg', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vlad Taltos 01 - The Book of Jhereg # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Khaavren Romances 01 - The Phoenix Guards - Steven Brust

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Khaavren Romances 01 - The Phoenix Guards # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Khaavren Romances 01 - The Phoenix Guards # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steven Brust', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Khaavren Romances 01 - The Phoenix Guards', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Khaavren Romances 01 - The Phoenix Guards # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Steven Brust', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Khaavren Romances 01 - The Phoenix Guards', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Khaavren Romances 01 - The Phoenix Guards # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Last Hundred Years 02 - Early Warning - Jane Smiley

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Last Hundred Years 02 - Early Warning # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Last Hundred Years 02 - Early Warning # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jane Smiley', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Last Hundred Years 02 - Early Warning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Hundred Years 02 - Early Warning # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jane Smiley', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Last Hundred Years 02 - Early Warning', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Hundred Years 02 - Early Warning # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Last Hundred Years 01 - Some Luck - Jane Smiley

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Last Hundred Years 01 - Some Luck # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Last Hundred Years 01 - Some Luck # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Smil_9780385350396_epub_cvi_r1.htm#point(:1)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Jane Smiley', 'DateLastRead': '2022-12-14T00:09:51Z', 'Title': 'Last Hundred Years 01 - Some Luck', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Hundred Years 01 - Some Luck # (v5.1).epub', 'TimeSpentReading': 43, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-12-14 00:09:51+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Expanse 02 - Caliban's War - James S.A. Corey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Expanse 02 - Caliban_s War # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Expanse 02 - Caliban_s War # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/chapter002.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'James S.A. Corey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': "Expanse 02 - Caliban's War", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Expanse 02 - Caliban_s War # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Clifton Chronicles 06 - Cometh the Hour - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clifton Chronicles 06 - Cometh the Hour # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clifton Chronicles 06 - Cometh the Hour # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Clifton Chronicles 06 - Cometh the Hour', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 06 - Cometh the Hour # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Clifton Chronicles 06 - Cometh the Hour', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 06 - Cometh the Hour # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Divergent 00.1 - The Transfer - Veronica Roth

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Divergent 00.1 - The Transfer # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Divergent 00.1 - The Transfer # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/text/9780062285638_Chapter_1.xhtml#point(/1/4/52/1:300)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 15, 'Attribution': 'Veronica Roth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Divergent 00.1 - The Transfer', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Divergent 00.1 - The Transfer # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Divergent 00.2 - The Initiate - Veronica Roth

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Divergent 00.2 - The Initiate # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Divergent 00.2 - The Initiate # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Veronica Roth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Divergent 00.2 - The Initiate', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Divergent 00.2 - The Initiate # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Veronica Roth', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': 'Divergent 00.2 - The Initiate', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Divergent 00.2 - The Initiate # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: 5th Wave 02 - The Infinite Sea - Rick Yancey

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/5th Wave 02 - The Infinite Sea # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/5th Wave 02 - The Infinite Sea # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rick Yancey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': '5th Wave 02 - The Infinite Sea', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/5th Wave 02 - The Infinite Sea # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:05+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rick Yancey', 'DateLastRead': '2022-04-17T12:16:05Z', 'Title': '5th Wave 02 - The Infinite Sea', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/5th Wave 02 - The Infinite Sea # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Girls - Emma Cline

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Girls # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Girls # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Emma Cline', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Girls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Girls # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Emma Cline', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Girls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Girls # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Barkskins - Annie Proulx

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Barkskins # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Barkskins # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Annie Proulx', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Barkskins', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Barkskins # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Annie Proulx', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Barkskins', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Barkskins # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Gabriel Allon 03 - The Confessor - Daniel Silva

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Gabriel Allon 03 - The Confessor # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Gabriel Allon 03 - The Confessor # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/theconfessor-body_5.html#point(/1/3/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Daniel Silva', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Gabriel Allon 03 - The Confessor', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Gabriel Allon 03 - The Confessor # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Laundry Files 02 - The Jennifer Morgue - Charles Stross

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Laundry Files 02 - The Jennifer Morgue # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Laundry Files 02 - The Jennifer Morgue # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Laundry Files 02 - The Jennifer Morgue', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Laundry Files 02 - The Jennifer Morgue # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Laundry Files 02 - The Jennifer Morgue', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Laundry Files 02 - The Jennifer Morgue # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Star Trek:TNG: Slings & Arrows 02: The Oppressor's Wrong - Phaedra M. Weldon

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_TNG_ Slings & Arrows 02_ The Oppressor_s Wrong # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_TNG_ Slings & Arrows 02_ The Oppressor_s Wrong # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Phaedra M. Weldon', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Star Trek:TNG: Slings & Arrows 02: The Oppressor's Wrong", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_TNG_ Slings & Arrows 02_ The Oppressor_s Wrong # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Phaedra M. Weldon', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Star Trek:TNG: Slings & Arrows 02: The Oppressor's Wrong", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_TNG_ Slings & Arrows 02_ The Oppressor_s Wrong # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: TNG: Slings Arrows 01: A Sea of Troubles - J. Steven York Christina F. York

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ TNG_ Slings Arrows 01_ A Sea of Troubles # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ TNG_ Slings Arrows 01_ A Sea of Troubles # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. Steven York Christina F. York', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: TNG: Slings Arrows 01: A Sea of Troubles', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TNG_ Slings Arrows 01_ A Sea of Troubles # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'J. Steven York Christina F. York', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Star Trek: TNG: Slings Arrows 01: A Sea of Troubles', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ TNG_ Slings Arrows 01_ A Sea of Troubles # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Young Wizards 01 - So You Want to Be a Wizard (Millennium) - Diane Duane

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Young Wizards 01 - So You Want to Be a Wizard (Millennium) # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Young Wizards 01 - So You Want to Be a Wizard (Millennium) # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Duane', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Young Wizards 01 - So You Want to Be a Wizard (Millennium)', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Young Wizards 01 - So You Want to Be a Wizard (Millennium) # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Diane Duane', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Young Wizards 01 - So You Want to Be a Wizard (Millennium)', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Young Wizards 01 - So You Want to Be a Wizard (Millennium) # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dresden Files SSC01 - Side Jobs - Jim Butcher

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dresden Files SSC01 - Side Jobs # (v5.4).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dresden Files SSC01 - Side Jobs # (v5.4).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/butc_9781101464533_oeb_c11_r1.xhtml#point(/1/4/4/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 80, 'Attribution': 'Jim Butcher', 'DateLastRead': '2023-11-26T20:12:32Z', 'Title': 'Dresden Files SSC01 - Side Jobs', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dresden Files SSC01 - Side Jobs # (v5.4).epub', 'TimeSpentReading': 19, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-11-26 20:12:32+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Mercy Thompson 99 - Shifting Shadows - Patricia Briggs

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mercy Thompson 99 - Shifting Shadows # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mercy Thompson 99 - Shifting Shadows # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/9781101609507_EPUB-8.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'Patricia Briggs', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Mercy Thompson 99 - Shifting Shadows', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mercy Thompson 99 - Shifting Shadows # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Glittering Edge 01 - Edge of Dark - Brenda Cooper

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Glittering Edge 01 - Edge of Dark # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Glittering Edge 01 - Edge of Dark # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chap02.xhtml#point(/1/4/108/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 2, 'Attribution': 'Brenda Cooper', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Glittering Edge 01 - Edge of Dark', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Glittering Edge 01 - Edge of Dark # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Kane and Abel - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kane and Abel.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kane and Abel.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kane and Abel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kane and Abel.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kane and Abel', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kane and Abel.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Robert Langdon 03 - The Lost Symbol - Dan Brown

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Robert Langdon 03 - The Lost Symbol # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Robert Langdon 03 - The Lost Symbol # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Brown', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Robert Langdon 03 - The Lost Symbol', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Langdon 03 - The Lost Symbol # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Dan Brown', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Robert Langdon 03 - The Lost Symbol', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert Langdon 03 - The Lost Symbol # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Steve Jobs - Walter Isaacson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Walter Isaacson - Steve Jobs.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Walter Isaacson - Steve Jobs.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Walter Isaacson', 'DateLastRead': None, 'Title': 'Steve Jobs', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Walter Isaacson - Steve Jobs.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Walter Isaacson', 'DateLastRead': None, 'Title': 'Steve Jobs', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Walter Isaacson - Steve Jobs.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Clifton Chronicles 07 - This Was a Man - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Clifton Chronicles 07 - This Was a Man # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Clifton Chronicles 07 - This Was a Man # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Clifton Chronicles 07 - This Was a Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 07 - This Was a Man # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Clifton Chronicles 07 - This Was a Man', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Clifton Chronicles 07 - This Was a Man # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Infomocracy - Malka Older

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Infomocracy # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Infomocracy # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter1.xhtml#point(/1/4/136/1:73)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'Malka Older', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Infomocracy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Infomocracy # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Small Magics - Ilona Andrews

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Small Magics # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Small Magics # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ilona Andrews', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Small Magics', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Small Magics # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ilona Andrews', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Small Magics', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Small Magics # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: Strange New Worlds 2016 - Various

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Star Trek_ Strange New Worlds 2016 # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Star Trek_ Strange New Worlds 2016 # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/ch06.xhtml#point(/1/4/136/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 50, 'Attribution': 'Various', 'DateLastRead': '2023-10-23T02:31:44Z', 'Title': 'Star Trek: Strange New Worlds 2016', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Star Trek_ Strange New Worlds 2016 # (v5.1).epub', 'TimeSpentReading': 888, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2023-10-23 02:31:44+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Ruby's Song 02 - The Diamond Deep - Brenda Cooper

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ruby_s Song 02 - The Diamond Deep # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ruby_s Song 02 - The Diamond Deep # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brenda Cooper', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Ruby's Song 02 - The Diamond Deep", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ruby_s Song 02 - The Diamond Deep # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Brenda Cooper', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Ruby's Song 02 - The Diamond Deep", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ruby_s Song 02 - The Diamond Deep # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Ryan 22 - True Faith and Allegiance - Mark Greaney

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jack Ryan 22 - True Faith and Allegiance # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jack Ryan 22 - True Faith and Allegiance # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mark Greaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Jack Ryan 22 - True Faith and Allegiance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jack Ryan 22 - True Faith and Allegiance # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mark Greaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Jack Ryan 22 - True Faith and Allegiance', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jack Ryan 22 - True Faith and Allegiance # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Wayward Pines 01 - Pines - Blake Crouch

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Wayward Pines 01 - Pines # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Wayward Pines 01 - Pines # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Blake Crouch', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wayward Pines 01 - Pines', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Pines 01 - Pines # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Blake Crouch', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Wayward Pines 01 - Pines', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Wayward Pines 01 - Pines # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Demigod Diaries - Rick Riordan

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Demigod Diaries # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Demigod Diaries # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rick Riordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Demigod Diaries', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Demigod Diaries # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Rick Riordan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Demigod Diaries', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Demigod Diaries # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Katherine 'Kitty' Katt 01 - Touched by an Alien - Gini Koch

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Katherine _Kitty_ Katt 01 - Touched by an Alien # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Katherine _Kitty_ Katt 01 - Touched by an Alien # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/koch_9781101186329_oeb_c04_r1.xhtml#point(/1/4/66/1:140)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 7, 'Attribution': 'Gini Koch', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Katherine 'Kitty' Katt 01 - Touched by an Alien", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Katherine _Kitty_ Katt 01 - Touched by an Alien # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Glass Thorns 01 - Touchstone - Melanie Rawn

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Glass Thorns 01 - Touchstone # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Glass Thorns 01 - Touchstone # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Melanie Rawn', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Glass Thorns 01 - Touchstone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Glass Thorns 01 - Touchstone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Melanie Rawn', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Glass Thorns 01 - Touchstone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Glass Thorns 01 - Touchstone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Last Apprentice 01 - Revenge of the Witch - Joseph Delaney

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Last Apprentice 01 - Revenge of the Witch # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Last Apprentice 01 - Revenge of the Witch # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joseph Delaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Apprentice 01 - Revenge of the Witch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Apprentice 01 - Revenge of the Witch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joseph Delaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Apprentice 01 - Revenge of the Witch', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Apprentice 01 - Revenge of the Witch # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Last Apprentice 02 - Curse of the Bane - Joseph Delaney

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Last Apprentice 02 - Curse of the Bane # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Last Apprentice 02 - Curse of the Bane # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joseph Delaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Apprentice 02 - Curse of the Bane', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Apprentice 02 - Curse of the Bane # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Joseph Delaney', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Apprentice 02 - Curse of the Bane', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Apprentice 02 - Curse of the Bane # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Clifton Chronicles 04 - Be Careful What You Wish For - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 4.0 - Clifton Chronicles 04 - Be Careful What You Wish For.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 4.0 - Clifton Chronicles 04 - Be Careful What You Wish For.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'Clifton Chronicles 04 - Be Careful What You Wish For', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 4.0 - Clifton Chronicles 04 - Be Careful What You Wish For.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'Clifton Chronicles 04 - Be Careful What You Wish For', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 4.0 - Clifton Chronicles 04 - Be Careful What You Wish For.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Clifton Chronicles 03 - Best Kept Secret - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 08 - Clifton Chronicles 03 - Best Kept Secret.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 08 - Clifton Chronicles 03 - Best Kept Secret.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'Clifton Chronicles 03 - Best Kept Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 08 - Clifton Chronicles 03 - Best Kept Secret.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': None, 'Title': 'Clifton Chronicles 03 - Best Kept Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Jeffrey Archer - Clifton Chronicles 08 - Clifton Chronicles 03 - Best Kept Secret.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Laundry Files 08 - The Delirium Brief - Charles Stross

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Laundry Files 08 - The Delirium Brief # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Laundry Files 08 - The Delirium Brief # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Laundry Files 08 - The Delirium Brief', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Laundry Files 08 - The Delirium Brief # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Charles Stross', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Laundry Files 08 - The Delirium Brief', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Laundry Files 08 - The Delirium Brief # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Stillhouse Lake 01 - Stillhouse Lake - Rachel Caine

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Stillhouse Lake 01 - Stillhouse Lake # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Stillhouse Lake 01 - Stillhouse Lake # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/dedication.xhtml#point(:1)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Rachel Caine', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Stillhouse Lake 01 - Stillhouse Lake', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Stillhouse Lake 01 - Stillhouse Lake # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Spenser 20 - Paper Doll - Robert B. Parker

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Spenser 20 - Paper Doll # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Spenser 20 - Paper Doll # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert B. Parker', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Spenser 20 - Paper Doll', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Spenser 20 - Paper Doll # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert B. Parker', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Spenser 20 - Paper Doll', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Spenser 20 - Paper Doll # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Spenser 19 - Double Deuce - Robert B. Parker

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Robert B. Parker - Spencer 19 - Spenser 19 - Double Deuce.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Robert B. Parker - Spencer 19 - Spenser 19 - Double Deuce.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Robert B. Parker', 'DateLastRead': None, 'Title': 'Spenser 19 - Double Deuce', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Robert B. Parker - Spencer 19 - Spenser 19 - Double Deuce.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Lilac Girls - Martha Hall Kelly

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lilac Girls # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lilac Girls # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Kell_9781101883068_epub3_c001_r1.xhtml#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 1, 'Attribution': 'Martha Hall Kelly', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Lilac Girls', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lilac Girls # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Mortal Instruments 02 - City of Ashes - Cassandra Clare

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Mortal Instruments 02 - City of Ashes # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Mortal Instruments 02 - City of Ashes # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cassandra Clare', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Mortal Instruments 02 - City of Ashes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mortal Instruments 02 - City of Ashes # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Cassandra Clare', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Mortal Instruments 02 - City of Ashes', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Mortal Instruments 02 - City of Ashes # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Tessa Leoni 02 - Touch & Go - Lisa Gardner

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tessa Leoni 02 - Touch & Go # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tessa Leoni 02 - Touch & Go # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lisa Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tessa Leoni 02 - Touch & Go', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tessa Leoni 02 - Touch & Go # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lisa Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tessa Leoni 02 - Touch & Go', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tessa Leoni 02 - Touch & Go # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: D.D. Warren 01 - Alone - Lisa Gardner

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/D.D. Warren 01 - Alone # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/D.D. Warren 01 - Alone # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OPS/Gard_9780553901139_epub_cvi_r1.htm#point(/1/3/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lisa Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'D.D. Warren 01 - Alone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/D.D. Warren 01 - Alone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= True

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= 0

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': 'OPS/Gard_9780553901139_epub_cvi_r1.htm#point(/1/3/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lisa Gardner', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'D.D. Warren 01 - Alone', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/D.D. Warren 01 - Alone # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Ed Noon 02 - The Spitting Image - Michael Avallone

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ed Noon 02 - The Spitting Image # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ed Noon 02 - The Spitting Image # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Avallone', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Ed Noon 02 - The Spitting Image', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ed Noon 02 - The Spitting Image # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Michael Avallone', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Ed Noon 02 - The Spitting Image', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ed Noon 02 - The Spitting Image # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Paper Money - Ken Follett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Paper Money # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Paper Money # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Paper Money', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Paper Money # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Paper Money', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Paper Money # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Green Rider 01 - Green Rider - Kristen Britain

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Kristen Britain - Green Rider 01 - Green Rider 01 - Green Rider.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Kristen Britain - Green Rider 01 - Green Rider 01 - Green Rider.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kristen Britain', 'DateLastRead': None, 'Title': 'Green Rider 01 - Green Rider', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kristen Britain - Green Rider 01 - Green Rider 01 - Green Rider.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kristen Britain', 'DateLastRead': None, 'Title': 'Green Rider 01 - Green Rider', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Kristen Britain - Green Rider 01 - Green Rider 01 - Green Rider.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Last Kingdom 01 - The Last Kingdom - Bernard Cornwell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Last Kingdom 01 - The Last Kingdom # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Last Kingdom 01 - The Last Kingdom # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Last Kingdom 01 - The Last Kingdom', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Kingdom 01 - The Last Kingdom # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Bernard Cornwell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Last Kingdom 01 - The Last Kingdom', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Last Kingdom 01 - The Last Kingdom # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Rizzoli & Isles 12 - I Know a Secret - Tess Gerritsen

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rizzoli & Isles 12 - I Know a Secret # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rizzoli & Isles 12 - I Know a Secret # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tess Gerritsen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Rizzoli & Isles 12 - I Know a Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rizzoli & Isles 12 - I Know a Secret # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Tess Gerritsen', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Rizzoli & Isles 12 - I Know a Secret', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rizzoli & Isles 12 - I Know a Secret # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The England, Their England - A. G. Macdonell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The England, Their England # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The England, Their England # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'A. G. Macdonell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The England, Their England', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The England, Their England # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'A. G. Macdonell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The England, Their England', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The England, Their England # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Kingsbridge 04 - A Column of Fire - Ken Follett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Column of Fire # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/A Column of Fire # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 04 - A Column of Fire', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Column of Fire # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 04 - A Column of Fire', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Column of Fire # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Kingsbridge 02 - The Pillars of the Earth - Ken Follett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Pillars of the Earth # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Pillars of the Earth # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 02 - The Pillars of the Earth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Pillars of the Earth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 02 - The Pillars of the Earth', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Pillars of the Earth # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Kingsbridge 03 - World Without End - Ken Follett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/World Without End # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/World Without End # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 03 - World Without End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/World Without End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Kingsbridge 03 - World Without End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/World Without End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Warcross 01 - Warcross - Marie Lu

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Warcross 01 - Warcross # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Warcross 01 - Warcross # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Marie Lu', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Warcross 01 - Warcross', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Warcross 01 - Warcross # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Marie Lu', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Warcross 01 - Warcross', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Warcross 01 - Warcross # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: One Nation After Trump - E.J. Dionne, Jr.

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/One Nation After Trump # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/One Nation After Trump # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'E.J. Dionne, Jr.', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'One Nation After Trump', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/One Nation After Trump # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'E.J. Dionne, Jr.', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'One Nation After Trump', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/One Nation After Trump # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Last Castle - Denise Kiernan

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Last Castle # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Last Castle # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'ops/xhtml/cover.html#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Denise Kiernan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Castle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Castle # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= True

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= 0

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': 'ops/xhtml/cover.html#point(/1/4/2/2:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Denise Kiernan', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Last Castle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Last Castle # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Jack Reacher 06 - Without Fail - Lee Child

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lee Child - Jack Reacher 06 - Jack Reacher 06 - Without Fail.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lee Child - Jack Reacher 06 - Jack Reacher 06 - Without Fail.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 06 - Without Fail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 06 - Jack Reacher 06 - Without Fail.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lee Child', 'DateLastRead': None, 'Title': 'Jack Reacher 06 - Without Fail', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lee Child - Jack Reacher 06 - Jack Reacher 06 - Without Fail.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Tell Tale - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tell Tale # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tell Tale # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tell Tale', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tell Tale # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tell Tale', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tell Tale # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Millennium 04 - The Girl in the Spider's Web - David Lagercrantz

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Millennium 04 - The Girl in the Spider_s Web # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Millennium 04 - The Girl in the Spider_s Web # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Lagercrantz', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Millennium 04 - The Girl in the Spider's Web", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Millennium 04 - The Girl in the Spider_s Web # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Lagercrantz', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "Millennium 04 - The Girl in the Spider's Web", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Millennium 04 - The Girl in the Spider_s Web # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Artemis - Andy Weir

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Artemis # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Artemis # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Weir', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Artemis', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Artemis # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Andy Weir', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Artemis', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Artemis # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Xanth 01 - A Spell for Chameleon - Piers Anthony

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Xanth 01 - A Spell for Chameleon # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Xanth 01 - A Spell for Chameleon # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Piers Anthony', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Xanth 01 - A Spell for Chameleon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Xanth 01 - A Spell for Chameleon # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Piers Anthony', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Xanth 01 - A Spell for Chameleon', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Xanth 01 - A Spell for Chameleon # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Night Over Water - Ken Follett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Night Over Water # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Night Over Water # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Night Over Water', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Night Over Water # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Night Over Water', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Night Over Water # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Third Twin - Ken Follett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Third Twin # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Third Twin # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Third Twin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Third Twin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Third Twin', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Third Twin # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Dark Run - Mike Brooks

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Dark Run # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Dark Run # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mike Brooks', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Dark Run', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dark Run # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mike Brooks', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Dark Run', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Dark Run # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Rainbows End - Vernor Vinge

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Rainbows End # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Rainbows End # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/9781429991896_ch03.html#point(/1/4/86/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 8, 'Attribution': 'Vernor Vinge', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Rainbows End', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Rainbows End # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Fire and Fury - Michael Wolff

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Fire and Fury # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Fire and Fury # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter13.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 56, 'Attribution': 'Michael Wolff', 'DateLastRead': '2022-12-14T00:08:42Z', 'Title': 'Fire and Fury', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Fire and Fury # (v5.1).epub', 'TimeSpentReading': 1798, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-12-14 00:08:42+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Father Brown Omnibus - G.K. Chesterton

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Father Brown Omnibus # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Father Brown Omnibus # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'bluecross.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'G.K. Chesterton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Father Brown Omnibus', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Father Brown Omnibus # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= True

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= 0

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': 'bluecross.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'G.K. Chesterton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Father Brown Omnibus', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Father Brown Omnibus # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Eye of the Needle - Ken Follett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Eye of the Needle # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Eye of the Needle # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter01.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'Ken Follett', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Eye of the Needle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Eye of the Needle # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Detective Barnes 01 - Punishment - Scott J. Holliday

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Detective Barnes 01 - Punishment # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Detective Barnes 01 - Punishment # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Scott J. Holliday', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Detective Barnes 01 - Punishment', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Detective Barnes 01 - Punishment # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Scott J. Holliday', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Detective Barnes 01 - Punishment', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Detective Barnes 01 - Punishment # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Frankenstein, or the Modern Prometheus (1818) - Mary Shelly

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Frankenstein, or the Modern Prometheus (1818) # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Frankenstein, or the Modern Prometheus (1818) # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/Text/chapter1a.html#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 11, 'Attribution': 'Mary Shelly', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Frankenstein, or the Modern Prometheus (1818)', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Frankenstein, or the Modern Prometheus (1818) # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vera Stanhope 01 - The Crow Trap - Ann Cleeves

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 01 - The Crow Trap # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 01 - The Crow Trap # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 01 - The Crow Trap', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 01 - The Crow Trap # (v5.1).epub', 'TimeSpentReading': 3, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 01 - The Crow Trap', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 01 - The Crow Trap # (v5.1).epub', 'TimeSpentReading': 3, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Replay - Ken Grimwood

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Ken Grimwood - Replay.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Ken Grimwood - Replay.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Grimwood', 'DateLastRead': None, 'Title': 'Replay', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ken Grimwood - Replay.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ken Grimwood', 'DateLastRead': None, 'Title': 'Replay', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Ken Grimwood - Replay.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: White Chrysanthemum - Mary Lynn Bracht

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/White Chrysanthemum # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/White Chrysanthemum # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mary Lynn Bracht', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'White Chrysanthemum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/White Chrysanthemum # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Mary Lynn Bracht', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'White Chrysanthemum', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/White Chrysanthemum # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: A Series of Unfortunate Events 05 - The Austere Academy - Lemony Snicket

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 05 - A Series of Unfortunate Events 05 - The Austere Academy.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 05 - A Series of Unfortunate Events 05 - The Austere Academy.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 05 - The Austere Academy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 05 - A Series of Unfortunate Events 05 - The Austere Academy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 05 - The Austere Academy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 05 - A Series of Unfortunate Events 05 - The Austere Academy.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: A Series of Unfortunate Events 06 - The Ersatz Elevator - Lemony Snicket

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 06 - A Series of Unfortunate Events 06 - The Ersatz Elevator.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 06 - A Series of Unfortunate Events 06 - The Ersatz Elevator.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 06 - The Ersatz Elevator', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 06 - A Series of Unfortunate Events 06 - The Ersatz Elevator.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 06 - The Ersatz Elevator', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 06 - A Series of Unfortunate Events 06 - The Ersatz Elevator.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: A Series of Unfortunate Events 04 - The Miserable Mill - Lemony Snicket

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 04 - A Series of Unfortunate Events 04 - The Miserable Mill.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 04 - A Series of Unfortunate Events 04 - The Miserable Mill.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 04 - The Miserable Mill', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 04 - A Series of Unfortunate Events 04 - The Miserable Mill.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Lemony Snicket', 'DateLastRead': None, 'Title': 'A Series of Unfortunate Events 04 - The Miserable Mill', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Lemony Snicket - A Series of Unfortunate Events 04 - A Series of Unfortunate Events 04 - The Miserable Mill.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: King's Musketeers 01 - The Three Musketeers - Alexandre Dumas

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/King_s Musketeers 01 - The Three Musketeers # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/King_s Musketeers 01 - The Three Musketeers # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/ch3.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 6, 'Attribution': 'Alexandre Dumas', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "King's Musketeers 01 - The Three Musketeers", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/King_s Musketeers 01 - The Three Musketeers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Tony Hill & Carol Jordan 01 - The Mermaids Singing - Val McDermid

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Tony Hill & Carol Jordan 01 - The Mermaids Singing # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Tony Hill & Carol Jordan 01 - The Mermaids Singing # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Val McDermid', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tony Hill & Carol Jordan 01 - The Mermaids Singing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tony Hill & Carol Jordan 01 - The Mermaids Singing # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Val McDermid', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Tony Hill & Carol Jordan 01 - The Mermaids Singing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Tony Hill & Carol Jordan 01 - The Mermaids Singing # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Heads You Win - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Heads You Win # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Heads You Win # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Heads You Win', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Heads You Win # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Heads You Win', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Heads You Win # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Clockmaker's Daughter - Kate Morton

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Clockmaker_s Daughter # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Clockmaker_s Daughter # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Morton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "The Clockmaker's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Clockmaker_s Daughter # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Kate Morton', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': "The Clockmaker's Daughter", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Clockmaker_s Daughter # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Vera Stanhope 02 - Telling Tales - Ann Cleeves

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Vera Stanhope 02 - Telling Tales # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Vera Stanhope 02 - Telling Tales # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 02 - Telling Tales', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 02 - Telling Tales # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Ann Cleeves', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Vera Stanhope 02 - Telling Tales', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Vera Stanhope 02 - Telling Tales # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Nine Perfect Strangers - Liane Moriarty

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Nine Perfect Strangers # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Nine Perfect Strangers # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/chapter3.xhtml#point(/1/4/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'Liane Moriarty', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Nine Perfect Strangers', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Nine Perfect Strangers # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Ninth Hour - Alice McDermott

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alice McDermott - The Ninth Hour.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alice McDermott - The Ninth Hour.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice McDermott', 'DateLastRead': None, 'Title': 'The Ninth Hour', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alice McDermott - The Ninth Hour.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Alice McDermott', 'DateLastRead': None, 'Title': 'The Ninth Hour', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alice McDermott - The Ninth Hour.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Alex Cross 10 - London Bridges - James Patterson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Cross 10 - London Bridges # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Cross 10 - London Bridges # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Alex Cross 10 - London Bridges', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Cross 10 - London Bridges # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'James Patterson', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Alex Cross 10 - London Bridges', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Cross 10 - London Bridges # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Alex Cross 09 - The Big Bad Wolf - James Patterson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Alex Cross 09 - The Big Bad Wolf # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Alex Cross 09 - The Big Bad Wolf # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/BigBadWolf_chap_4.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 5, 'Attribution': 'James Patterson', 'DateLastRead': '2024-11-21T08:19:00Z', 'Title': 'Alex Cross 09 - The Big Bad Wolf', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Alex Cross 09 - The Big Bad Wolf # (v5.1).epub', 'TimeSpentReading': 2474, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2024-11-21 08:19:00+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Belgariad 01 - Pawn of Prophecy - David Eddings

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Belgariad 01 - Pawn of Prophecy # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Belgariad 01 - Pawn of Prophecy # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Eddings', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Belgariad 01 - Pawn of Prophecy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Belgariad 01 - Pawn of Prophecy # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Eddings', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Belgariad 01 - Pawn of Prophecy', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Belgariad 01 - Pawn of Prophecy # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: George Smiley 01 - Call for the Dead - John le Carré

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/George Smiley 01 - Call for the Dead # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/George Smiley 01 - Call for the Dead # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/xhtml/08_introduction.xhtml#point(/1/4/2/1/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 3, 'Attribution': 'John le Carré', 'DateLastRead': '2022-09-04T10:34:03Z', 'Title': 'George Smiley 01 - Call for the Dead', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/George Smiley 01 - Call for the Dead # (v5.1).epub', 'TimeSpentReading': 521, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-09-04 10:34:03+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Star Trek: TOS: The Captain's Oath - Christopher L. Bennett

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Christopher L. Bennett - Star Trek_ TOS_ The Captain_s Oath.epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Christopher L. Bennett - Star Trek_ TOS_ The Captain_s Oath.epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher L. Bennett', 'DateLastRead': None, 'Title': "Star Trek: TOS: The Captain's Oath", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Christopher L. Bennett - Star Trek_ TOS_ The Captain_s Oath.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= None

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Christopher L. Bennett', 'DateLastRead': None, 'Title': "Star Trek: TOS: The Captain's Oath", 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Christopher L. Bennett - Star Trek_ TOS_ The Captain_s Oath.epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Orphan X - Gregg Hurwitz

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Orphan X # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Orphan X # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Gregg Hurwitz', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Orphan X', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Orphan X # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Gregg Hurwitz', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Orphan X', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Orphan X # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The President Is Missing - Bill Clinton & James Patterson

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The President Is Missing # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The President Is Missing # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/s013-Chapter-007.xhtml', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 10, 'Attribution': 'Bill Clinton & James Patterson', 'DateLastRead': '2022-09-03T16:48:04Z', 'Title': 'The President Is Missing', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The President Is Missing # (v5.1).epub', 'TimeSpentReading': 8642, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-09-03 16:48:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Charlotte and Thomas Pitt 01 - The Cater Street Hangman - Anne Perry

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Charlotte and Thomas Pitt 01 - The Cater Street Hangman # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Charlotte and Thomas Pitt 01 - The Cater Street Hangman # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/5-chap2.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 9, 'Attribution': 'Anne Perry', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Charlotte and Thomas Pitt 01 - The Cater Street Hangman', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charlotte and Thomas Pitt 01 - The Cater Street Hangman # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: A Gentleman in Moscow - Amor Towles

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/A Gentleman in Moscow # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/A Gentleman in Moscow # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Amor Towles', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Gentleman in Moscow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Gentleman in Moscow # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Amor Towles', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'A Gentleman in Moscow', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/A Gentleman in Moscow # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Waylander - David Gemmell

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Waylander # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Waylander # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Gemmell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Waylander', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Waylander # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'David Gemmell', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Waylander', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Waylander # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: William Warwick 01 - Nothing Ventured - Jeffrey Archer

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/William Warwick 01 - Nothing Ventured # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/William Warwick 01 - Nothing Ventured # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'William Warwick 01 - Nothing Ventured', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 01 - Nothing Ventured # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jeffrey Archer', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'William Warwick 01 - Nothing Ventured', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/William Warwick 01 - Nothing Ventured # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: Charlotte and Thomas Pitt 02 - Callander Square - Anne Perry

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/Charlotte and Thomas Pitt 02 - Callander Square # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/Charlotte and Thomas Pitt 02 - Callander Square # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': 'OEBPS/1-cover.xhtml#point(/1/4/2/1:0)', 'adobe_location': None, 'ReadStatus': 1, '___PercentRead': 0, 'Attribution': 'Anne Perry', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'Charlotte and Thomas Pitt 02 - Callander Square', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/Charlotte and Thomas Pitt 02 - Callander Square # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_bookmarks - store_if_more_recent - current_last_read < new_last_read= False

DEBUG:    0.1 ----------- _store_bookmarks - top of loop -----------

DEBUG:    0.1 _store_bookmarks - Current book: The Women in the Castle - Jessica Shattuck

DEBUG:    0.1 _store_bookmarks - contentIds='['file:///mnt/onboard/books/The Women in the Castle # (v5.1).epub']'

DEBUG:    0.1 _store_bookmarks - contentId='file:///mnt/onboard/books/The Women in the Castle # (v5.1).epub'

DEBUG:    0.1 _store_bookmarks - device_status='None'

DEBUG:    0.1 _store_bookmarks - result='{'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jessica Shattuck', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Women in the Castle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Women in the Castle # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}'

DEBUG:    0.1 _store_bookmarks - device_status is None

DEBUG:    0.1 _store_bookmarks - setting mi.last_read= 2022-04-17 12:16:04+00:00

DEBUG:    0.1 _store_current_bookmark - do_not_store_if_reopened - current_percentRead= None

DEBUG:    0.1 _store_bookmarks - finished reading database for book - device_status= {'ChapterIDBookmarked': None, 'adobe_location': None, 'ReadStatus': 0, '___PercentRead': 0, 'Attribution': 'Jessica Shattuck', 'DateLastRead': '2022-04-17T12:16:04Z', 'Title': 'The Women in the Castle', 'MimeType': 'application/epub+zip', 'Rating': None, 'ContentID': 'file:///mnt/onboard/books/The Women in the Castle # (v5.1).epub', 'TimeSpentReading': 0, 'RestOfBookEstimate': 0}

DEBUG:    0.1 _store_bookmarks - finished book loop

DEBUG:    0.1 _store_bookmarks - finished


DEBUG:    1.5 do_store_locations - finished
DeviceJob: 5 Storing reading positions for 553 books done, calling callback
DeviceJob: 5 Storing reading positions for 553 books callback returned
DEBUG:   33.2 KoboUtilitiesAction::_store_completed - options {'storeBookmarks': True, 'readingStatus': False, 'setDateToNow': False, 'rating': False, 'clearIfUnread': False, 'backgroundJob': True, 'promptToStore': True, 'storeIfMoreRecent': True, 'doNotStoreIfReopened': True, 'currentReadingLocationColumn': '#current', 'percentReadColumn': '#percent', 'ratingColumn': None, 'lastReadColumn': '#last', 'timeSpentReadingColumn': None, 'restOfBookEstimateColumn': None, 'device_database_path': 'F:\\.kobo\\KoboReader.sqlite', 'job_function': 'store_current_bookmark', 'supports_ratings': True, 'epub_location_like_kepub': True, 'fetch_queries': {'epub': 'SELECT c1.ChapterIDBookmarked, c1.adobe_location, c1.ReadStatus, c1.___PercentRead, c1.Attribution, c1.DateLastRead, c1.Title, c1.MimeType, r.rating, c1.contentId, c1.TimeSpentReading, c1.RestOfBookEstimate FROM content c1 LEFT OUTER JOIN ratings r ON c1.ContentID = r.ContentID WHERE c1.ContentID = ?', 'kepub': 'SELECT c1.ChapterIDBookmarked, c1.adobe_location, c1.ReadStatus, c1.___PercentRead, c1.Attribution, c1.DateLastRead, c1.Title, c1.MimeType, r.rating, c1.contentId, c1.TimeSpentReading, c1.RestOfBookEstimate FROM content c1 LEFT OUTER JOIN ratings r ON c1.ContentID = r.ContentID WHERE c1.ContentID = ?'}, 'allOnDevice': True}
Job: 5 Storing reading positions for 553 books finished
No details available.
Job: 7 Upload one book to the device: The Dark Forest started
Device using plugboard epub KOBOTOUCH None
Setting metadata in: The Dark Forest at: C:\Users\jswol\AppData\Local\Temp\calibre_gul2618l\ixu42y2dcaltmpfmt.epub
DEBUG:   43.8 KoboTouch:upload_books - 1 books
DEBUG:   43.8 KoboTouch:upload_books - files= ['C:\\Users\\jswol\\AppData\\Local\\Temp\\calibre_gul2618l\\ixu42y2dcaltmpfmt.epub']
DEBUG:   43.8 kepubify_template_result for The Dark Forest: 1
DEBUG:   43.8 KoboTouch:upload_books: Processing book: The Dark Forest by Cixin Liu
DEBUG:   43.8 KoboTouch:upload_books: file=C:\Users\jswol\AppData\Local\Temp\calibre_gul2618l\ixu42y2dcaltmpfmt.epub, name=The Dark Forest - Cixin Liu_3331.epub
DEBUG:   43.8 KoboTouch:_modify_epub:Processing Liu, Cixin - The Dark Forest
DEBUG:   43.8 KoboTouch:_modify_epub: no CSS file
DEBUG:   43.8 USBMS: uploading 1 books
DEBUG:   44.5 KoboTouch:upload_cover - path='F:\books' filename='Cixin Liu - Remembrance of Earth_s Past 02 - The Dark Forest' 
DEBUG:   44.5         filepath='F:\books\Cixin Liu - Remembrance of Earth_s Past 02 - The Dark Forest.epub' 
DEBUG:   44.5 KoboTouch:_upload_cover - filename='Cixin Liu - Remembrance of Earth_s Past 02 - The Dark Forest' upload_grayscale='True' dithered_covers='True' 
DEBUG:   44.5 KoboTouch:get_content_type_from_extension - start
DEBUG:   44.5 KoboTouch:_upload_cover - No rows exist in the database - generated ImageID='file____mnt_onboard_books_Cixin_Liu_-_Remembrance_of_Earth_s_Past_02_-_The_Dark_Forest_epub'
DEBUG:   44.5 KoboTouch:_upload_cover - Image folder does not exist. Creating path='F:\.kobo-images\114\135'
DEBUG:   44.9 USBMS: finished uploading 1 books
DeviceJob: 7 Upload one book to the device: The Dark Forest done, calling callback
DEBUG:   44.9 KoboTouch::add_books_to_metadata - start. metadata=Title               : The Dark Forest
Title sort          : Dark Forest, The
Author(s)           : Cixin Liu [Liu, Cixin]
Publisher           : Tom Doherty Associates
Series              : Remembrance of Earth's Past #2
Languages           : eng
Timestamp           : 2025-02-16T20:26:24+00:00
Published           : 0101-01-01T00:00:00+00:00
Identifiers         : isbn:9781466853430
KePub               : Yes
DEBUG:   44.9 KoboTouch::add_books_to_metadata - info=Title               : The Dark Forest
Title sort          : Dark Forest, The
Author(s)           : Cixin Liu [Liu, Cixin]
Publisher           : Tom Doherty Associates
Series              : Remembrance of Earth's Past #2
Languages           : eng
Timestamp           : 2025-02-16T20:26:24+00:00
Published           : 0101-01-01T00:00:00+00:00
Identifiers         : isbn:9781466853430
KePub               : Yes
DEBUG:   44.9 KoboTouch::add_books_to_metadata - have a new book - book=Title               : The Dark Forest
Title sort          : Dark Forest, The
Author(s)           : Cixin Liu [Liu, Cixin]
Publisher           : Tom Doherty Associates
Series              : Remembrance of Earth's Past #2
Languages           : eng
Timestamp           : 2025-02-16T20:26:24+00:00
Published           : 0101-01-01T00:00:00+00:00
Identifiers         : isbn:9781466853430
KePub               : Yes
Kobo metadata:
Title               : The Dark Forest
Author(s)           : Cixin Liu
DEBUG:   45.0 DeviceJob: set_books_in_library: books to process= 559
DEBUG:   45.0 DeviceJob: set_books_in_library finished: time= 0.005994558334350586
DeviceJob: 7 Upload one book to the device: The Dark Forest callback returned
Job: 8 Send metadata to device started
DEBUG:   45.0 KOBO:sync_booklists - start
DEBUG:   45.0 KoboTouch:update_device_database_collections - oncard='main'
DEBUG:   45.0 KoboTouch:update_device_database_collections - device='Driver:KoboTouch, Options - format_map: ['epub', 'kepub', 'pdf', 'txt', 'cbz', 'cbr'], use_subdirs: True, read_metadata: True, use_author_sort: False, save_template: books/{author} - {series} {series_index:0>2s|| - } {title}, extra_customization: [], manage_collections: True, use_collections_columns: True, collections_columns: tags, use_collections_template: False, collections_template: , create_collections: True, delete_empty_collections: True, ignore_collections_names: , upload_covers: True, dithered_covers: True, keep_cover_aspect: True, upload_grayscale: True, letterbox_fs_covers: False, letterbox_fs_covers_color: #000000, png_covers: False, show_archived_books: False, show_previews: False, show_recommendations: False, update_series: True, force_series_id: False, update_core_metadata: True, update_purchased_kepubs: False, update_device_metadata: True, update_subtitle: False, subtitle_template: , update_bookstats: True, bookstats_wordcount_template: program:floor($$#words), bookstats_pagecount_template: program:floor($$#pages), bookstats_timetoread_upper_template: program:ceiling($$#words / 11150), bookstats_timetoread_lower_template: program:floor($$#words / 12000), kepubify: True, template_for_kepubify: program: 
	$#kepub == 'yes', modify_css: False, per_device_css: {}, override_kobo_replace_existing: False, affect_hyphenation: True, disable_hyphenation: False, hyphenation_min_chars: 6, hyphenation_min_chars_before: 3, hyphenation_min_chars_after: 3, hyphenation_limit_lines: 2, support_newer_firmware: True, debugging_title: , driver_version: 2.6.0'
DEBUG:   45.0 KoboTouch::is_supported_fwversion - self.fwversion[:2] (4, 38)
DEBUG:   45.0 KoboTouch:update_device_database_collections - set_debugging_title to ''
DEBUG:   45.0 device_version_info - start
DEBUG:   45.0 KTCollectionsBookList:get_collections - start - collection_attributes= ['tags']
DEBUG:   45.0 KTCollectionsBookList:get_collections - collection_attributes= ['tags']
DEBUG:   45.0 KTCollectionsBookList:get_collections - sending new book
DEBUG:   45.0 KTCollectionsBookList:get_collections - end
DEBUG:   45.0 KoboTouch:update_device_database_collections - category='Star Trek' books=16
DEBUG:   45.1 KoboTouch:update_device_database_collections - end for category='Star Trek'
DEBUG:   45.1 KoboTouch:update_device_database_collections - category='Standalone' books=20
DEBUG:   45.1 KoboTouch:update_device_database_collections - end for category='Standalone'
DEBUG:   45.1 KoboTouch:update_device_database_collections - managing bookshelves and series.
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard kepub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
Device using plugboard epub KOBOTOUCH None
DEBUG:   45.2 KoboTouch:update_device_database_collections - about to clear empty bookshelves
DEBUG:   45.2 KoboTouch:delete_empty_bookshelves - start
DEBUG:   45.2 KoboTouch:delete_empty_bookshelves - delete_query= DELETE FROM Shelf WHERE Shelf._IsSynced = 'false' AND Shelf.InternalName not in ('Shortlist', 'Wishlist') AND (Type IS NULL OR Type <> 'SystemTag') AND NOT EXISTS (SELECT 1 FROM ShelfContent c WHERE Shelf.Name = c.ShelfName AND c._IsDeleted <> 'true')
DEBUG:   45.2 KoboTouch:delete_empty_bookshelves - update_query= UPDATE Shelf SET _IsDeleted = 'true' WHERE Shelf._IsSynced = 'true' AND Shelf.InternalName not in ('Shortlist', 'Wishlist') AND (Type IS NULL OR Type <> 'SystemTag') AND NOT EXISTS (SELECT 1 FROM ShelfContent c WHERE Shelf.Name = c.ShelfName AND c._IsDeleted <> 'true')
DEBUG:   45.2 KoboTouch:delete_empty_bookshelves - delete_activity_query= DELETE FROM Activity WHERE Type = 'Shelf' AND NOT EXISTS (SELECT 1 FROM Shelf WHERE Shelf.Name = Activity.Id AND Shelf._IsDeleted = 'false')
DEBUG:   45.2 KoboTouch:delete_empty_bookshelves - end
DEBUG:   45.2 KoboTouch:update_device_database_collections - Number of series set=0 Number of books=558
DEBUG:   45.2 KoboTouch:update_device_database_collections - Number of core metadata set=558 Number of books=558
DEBUG:   45.3 KoboTouch:update_device_database_collections - Finished 
DEBUG:   45.3 USBMS: starting sync_booklists
Job: 7 Upload one book to the device: The Dark Forest finished
No details available.
DEBUG:   46.6 USBMS: finished sync_booklists
DEBUG:   46.6 KOBO:sync_booklists - end
DeviceJob: 8 Send metadata to device done, calling callback
DeviceJob: 8 Send metadata to device callback returned
Job: 8 Send metadata to device finished
No details available.
Shortcut for 'Interface Action: Annotations (Annotations) - Find annotations' already registered by Find annotations
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
DEBUG:   59.4 KoboUtilities:_on_device_connection_changed - self.plugin_device_connection_changed.__class__:  <class 'PyQt6.QtCore.pyqtBoundSignal'>
DEBUG:   59.4 Methods for self.plugin_device_connection_changed:  ['__call__', '__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getstate__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'connect', 'disconnect', 'emit', 'signal']
DEBUG:   59.4 KoboUtilites:_on_device_connection_changed - Device disconnected
DEBUG:   59.4 Have a Kobo device connected connected
DEBUG:   59.4 BEGIN Get Device Path
DEBUG:   59.4 No device appears to be connected
DEBUG:   59.4 END Get Device Path
DEBUG:   59.4 KoboUtilities:get_device - self.device_path=""
DEBUG:   59.4 rebuild_menus - self.supports_ratings=None, self.supports_tiles=None
DEBUG:   59.4 KoboUtilities:set_toolbar_button_tooltip - start: text='None'
DEBUG:   59.4 device_driver_name - could not load extended driver. Exception= No module named 'calibre_plugins.kobotouch_extended'
DEBUG:   59.4 KoboUtilities:set_toolbar_button_tooltip - setting to text='Utilities to use with Kobo ereaders

Driver: KoboTouch'
DEBUG:   59.4 device_driver_name - could not load extended driver. Exception= No module named 'calibre_plugins.kobotouch_extended'
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
DEBUG:   59.4 KoboUtilities:set_toolbar_button_tooltip - start: text='None'
DEBUG:   59.4 device_driver_name - could not load extended driver. Exception= No module named 'calibre_plugins.kobotouch_extended'
DEBUG:   59.4 KoboUtilities:set_toolbar_button_tooltip - setting to text='Utilities to use with Kobo ereaders

Driver: KoboTouch'
READING LIST: Device disconnected
Key 'Ctrl+Right' for shortcut Next Virtual library is already used by Next result, ignoring
Key 'Ctrl+Left' for shortcut Previous Virtual library is already used by Previous result, ignoring
[88.80] Shutdown starting...
[91.33] [Backup Configuration Folder]: starting backup process
[92.91] [Backup Configuration Folder]: wrote config backup to C:\Users\jswol\AppData\Roaming\backup-calibre\2025-02-28 at 15-44-11.zip. Size: 43,628,687 bytes.
[92.91] [Backup Configuration Folder]: finished
[94.94] Shutdown complete, quitting...
JSWolf is offline   Reply With Quote
Old 02-28-2025, 11:42 AM   #240
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
Posts: 13,550
Karma: 79436716
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
Attempting to edit a book with both ePub and kEpub formats I get
Spoiler:

Code:
calibre, version 7.26.101
ERROR: Unhandled exception: <b>ValueError</b>:'KEPUB' is not in list

calibre 7.26.101  embedded-python: True
Linux-6.6.65-06377-gaae6fc9ba7df-x86_64-with-glibc2.36 Linux ('64bit', 'ELF')
('Linux', '6.6.65-06377-gaae6fc9ba7df', '#1 SMP PREEMPT_DYNAMIC Wed, 8 Jan 2025 13:19:21 -0800')
Python 3.11.5
Interface language: None
EXE path: /opt/calibre/bin/calibre
Successfully initialized third party plugins: DeACSM (0, 0, 16) && LCPL Input (0, 0, 5) && DeDRM (10, 0, 9) && Annotations (1, 17, 13) && BOL_NL (5, 1, 3) && Backup Configuration Folder (1, 1, 2) && Diaps Editing Toolbag (0, 5, 0) && EpubCheck (0, 2, 5) && EpubMerge (3, 2, 0) && Find Duplicates (1, 10, 9) && Goodreads (1, 8, 2) && Kobo Metadata (1, 10, 0) && Kobo Utilities (2, 18, 1) && Manage Series (1, 5, 2) && OverDrive Libby (0, 2, 3) && Quality Check (1, 13, 16) && Reading List (1, 15, 4) && Standard Ebooks (1, 0, 0)
Traceback (most recent call last):
  File "calibre/gui2/actions/tweak_epub.py", line 82, in tweak_book
  File "calibre/gui2/actions/tweak_epub.py", line 113, in do_tweak
ValueError: 'KEPUB' is not in list
PeterT is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Dockerise multiple Calibre releases for plugin development wolf123 Related Tools 1 02-06-2021 03:12 AM
[Q] How can I check for new releases in a series in calibre or goodreads? lambstone Kobo Reader 1 09-09-2016 12:04 AM
CC B4.0.X beta (all releases) chaley Calibre Companion 41 07-21-2015 06:53 AM
CC beta releases 3.4.4j, 3.4.4k, 3.4.4l chaley Calibre Companion 33 10-21-2014 06:19 AM
dotReader releases first public beta Alexander Turcic Reading and Management 4 11-23-2006 01:40 AM


All times are GMT -4. The time now is 04:27 PM.


MobileRead.com is a privately owned, operated and funded community.