View Single Post
Old 05-18-2012, 07:58 PM   #10
enitro
Enthusiast
enitro began at the beginning.
 
Posts: 26
Karma: 10
Join Date: Mar 2012
Device: PRS-T1
UPDATED FIRST POST

So i used apktool to decompile kindle app and i changed some colors and pictures and compiled it again it worked, now i could t find the highlight color to change it.

I will post here, i highlighted the part where it should be but it doesnt change anything, if you have Kindle 4 PC app on your PC (duh!) when you highlight text its light yellow and this its value ffffff9b if I change it to ff666666 to gray nothing changes so, I will keep posting progress, I have little experience with java and android but started to learn it now, so lets keep researching, if you have any ideas post them here.Thanks.

/res/values/color.xml

Quote:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="default_icon">#ff81afef</color>
<color name="default_selected_icon">#ff1658ae</color>
<color name="white_mode_text">#ff000000</color>
<color name="white_mode_text_secondary">#ff8e8e8e</color>
<color name="white_mode_background">#ffffffff</color>
<color name="white_mode_highlight">#ffffff9b</color>
<color name="white_mode_search_border">#ffd8a62d</color>
<color name="white_mode_link">#ff0055aa</color>
<color name="white_mode_note">#ffd0d0d0</color>
<color name="white_mode_icon">/default_icon</color>
<color name="white_mode_selected_icon">/default_selected_icon</color>
<color name="black_mode_text">#ffcccccc</color>
<color name="black_mode_text_secondary">#ff8e8e8e</color>
<color name="black_mode_background">#ff000000</color>
<color name="black_mode_highlight">#ff003399</color>
<color name="black_mode_search_border">#ff4898e3</color>
<color name="black_mode_link">#ff8fc0e9</color>
<color name="black_mode_note">#ff5f5f5f</color>
<color name="black_mode_icon">/default_icon</color>
<color name="black_mode_selected_icon">/default_selected_icon</color>
<color name="sepia_mode_text">#ff5a4129</color>
<color name="sepia_mode_text_secondary">#ff937d63</color>
<color name="sepia_mode_background">#ffe9d8ba</color>
<color name="sepia_mode_highlight">#ffffff9b</color>
<color name="sepia_mode_search_border">#ffd8a62d</color>
<color name="sepia_mode_link">#ff0055aa</color>
<color name="sepia_mode_note">#fff1e9d9</color>
<color name="sepia_mode_icon">/default_icon</color>
<color name="sepia_mode_selected_icon">/default_selected_icon</color>
<color name="articles_accent_color">#80999999</color>
<color name="lib_book_divider">#2eb2e2ff</color>
<color name="transparent">#00ffffff</color>
<color name="android_default_background">#ff191919</color>
<color name="black">#ff000000</color>
<color name="white">#ffffffff</color>
<color name="dark_gray">#ff666666</color>
<color name="gray">#ff999999</color>
<color name="light_gray">#ffdddddd</color>
<color name="ultralight_grey">#ffebebeb</color>
<color name="amazon_orange">#ffe47911</color>
<color name="amazon_blue">#ff146eb4</color>
<color name="amazon_grey">#ff323232</color>
<color name="text_default">#ff000000</color>
<color name="selection_default">#50366bf2</color>
<color name="selection_handle">#ff366bf2</color>
<color name="overlay">#99000000</color>
<color name="dark_overlay">#bb000000</color>
<color name="titlebar_gradient_start">/amazon_grey</color>
<color name="titlebar_gradient_end">/amazon_grey</color>
<color name="titlebar_togglebutton_disabled_gradient_star t">#99000000</color>
<color name="titlebar_togglebutton_disabled_gradient_end" >#99000000</color>
<color name="link_text_color_normal">/amazon_blue</color>
<color name="link_text_color_focused">/white</color>
<color name="link_background_color_normal">/white</color>
<color name="link_background_color_focused">/amazon_blue</color>
<color name="link_background_color_pressed">#ff93befa</color>
<color name="visual_separator">#ffcccccc</color>
<color name="medium_transparent_black">#70000000</color>
<color name="reader_text_white">#ffa0b2b6</color>
<color name="reader_text_brown">#ff625246</color>
<color name="reader_text_black">#ff323232</color>
<color name="periodical_view_separator_color">#80808080</color>
<color name="library_filter_item_selected_color">#ff4087d 5</color>
<color name="periodical_article_selected_color">#674087d5 </color>
<color name="library_navigation_bar_background">#44000000 </color>
<color name="last_read_text">#dd404040</color>
<color name="last_read_background">#ddffffff</color>
<color name="selection_more_button_text_color">/black</color>
<color name="pdf_background">#ff676767</color>
<color name="store_webview_bg_color">/white</color>
<color name="separator_bevel_dark">#ff191919</color>
<color name="separator_bevel_light">#ff414141</color>
<color name="webview_background">#ff333333</color>
<color name="articlelist_magazine_article_bgcolor_default ">#ff333333</color>
<color name="articlelist_magazine_article_bgcolor_selecte d">#ff231f20</color>
<color name="articlelist_magazine_article_textcolor_defau lt">/white</color>
<color name="articlelist_magazine_article_textcolor_read" >#ff8c8c8c</color>
<color name="articlelist_magazine_section_bgcolor">#ff666 666</color>
<color name="articlelist_magazine_section_textcolor">#ffd ddddd</color>
<color name="articlelist_newspaper_article_bgcolor_defaul t">/white</color>
<color name="articlelist_newspaper_article_bgcolor_select ed">#ffdddddd</color>
<color name="articlelist_newspaper_article_textcolor_defa ult">/black</color>
<color name="articlelist_newspaper_article_textcolor_read ">#ff666666</color>
<color name="articlelist_newspaper_section_bgcolor">#ff99 9999</color>
<color name="articlelist_newspaper_section_textcolor">#ff eeeeee</color>
<color name="articlelist_newspaper_article_listdivider"># ffdddddd</color>
<color name="cover_overlay_gradient_start">#fffaae17</color>
<color name="cover_overlay_gradient_end">#ffec7423</color>
</resources>
in public.xml its also mentioned

Spoiler:
Quote:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<public type="attr" name="textScaleFactor" id="0x7f010000" />
<public type="attr" name="maxColumns" id="0x7f010001" />
<public type="attr" name="dropDownBackground" id="0x7f010002" />
<public type="attr" name="customTypeface" id="0x7f010003" />
<public type="attr" name="colorModeDependantTextColor" id="0x7f010004" />
<public type="attr" name="readerTipsTextColor" id="0x7f010005" />
<public type="attr" name="readerTipsBulletDrawable" id="0x7f010006" />
<public type="attr" name="ic_text_xsmall" id="0x7f010007" />
<public type="attr" name="ic_text_small" id="0x7f010008" />
<public type="attr" name="ic_text_medium" id="0x7f010009" />
<public type="attr" name="ic_text_large" id="0x7f01000a" />
<public type="attr" name="ic_text_xlarge" id="0x7f01000b" />
<public type="attr" name="ic_text_xxlarge" id="0x7f01000c" />
<public type="drawable" name="arrow_right" id="0x7f020000" />
<public type="drawable" name="arrow_right_disabled" id="0x7f020001" />
<public type="drawable" name="arrow_right_normal" id="0x7f020002" />
<public type="drawable" name="arrow_right_selected" id="0x7f020003" />
<public type="drawable" name="auto_brightness_message_background" id="0x7f020004" />
<public type="drawable" name="bg_book_dim_gradient" id="0x7f020005" />
<public type="drawable" name="bg_book_fade" id="0x7f020006" />
<public type="drawable" name="bg_center_gradient" id="0x7f020007" />
<public type="drawable" name="bg_charcoal" id="0x7f020008" />
<public type="drawable" name="bg_focusable_section_row" id="0x7f020009" />
<public type="drawable" name="bg_nav_active" id="0x7f02000b" />
<public type="drawable" name="bg_nav_bar_selector" id="0x7f02000c" />
<public type="drawable" name="bg_nav_default" id="0x7f02000d" />
<public type="drawable" name="bg_nav_pressed" id="0x7f02000e" />
<public type="drawable" name="bg_selected_nav" id="0x7f02000f" />
<public type="drawable" name="bg_splash" id="0x7f020010" />
<public type="drawable" name="bm_arrow_right_disabled" id="0x7f020017" />
<public type="drawable" name="bm_arrow_right_normal" id="0x7f020018" />
<public type="drawable" name="bm_arrow_right_selected" id="0x7f020019" />
<public type="drawable" name="book_menu_button_background" id="0x7f02001a" />
<public type="drawable" name="btn_trans_focused" id="0x7f020029" />
<public type="drawable" name="btn_trans_normal" id="0x7f02002a" />
<public type="drawable" name="btn_trans_pressed" id="0x7f02002b" />
<public type="drawable" name="button_sections" id="0x7f02002d" />
<public type="drawable" name="button_sections_default" id="0x7f02002e" />
<public type="drawable" name="button_sections_pressed" id="0x7f02002f" />
<public type="drawable" name="cart_icon" id="0x7f020030" />
<public type="drawable" name="colormode_list_item_background" id="0x7f020031" />
<public type="drawable" name="definition_container_background_black" id="0x7f020032" />
<public type="drawable" name="definition_container_background_sepia" id="0x7f020033" />
<public type="drawable" name="definition_container_background_white" id="0x7f020034" />
<public type="drawable" name="dictionary_dropshadow_black" id="0x7f020035" />
<public type="drawable" name="dictionary_dropshadow_sepia" id="0x7f020036" />
<public type="drawable" name="dictionary_dropshadow_white" id="0x7f020037" />
<public type="drawable" name="divider_dark_horizontal" id="0x7f020038" />
<public type="drawable" name="external" id="0x7f02003a" />
<public type="drawable" name="full_definition_pressed_background" id="0x7f020040" />
<public type="drawable" name="highlight_pressed" id="0x7f020046" />
<public type="drawable" name="highlight_selected" id="0x7f020047" />
<public type="drawable" name="ic_arrow" id="0x7f02004f" />
<public type="drawable" name="ic_color_black" id="0x7f020053" />
<public type="drawable" name="ic_color_sepia" id="0x7f020054" />
<public type="drawable" name="ic_color_white" id="0x7f020055" />
<public type="drawable" name="ic_linelength_large" id="0x7f020063" />
<public type="drawable" name="ic_linelength_medium" id="0x7f02006a" />
<public type="drawable" name="ic_linelength_small" id="0x7f02006e" />
<public type="drawable" name="ic_linespacing_large" id="0x7f02006f" />
<public type="drawable" name="ic_linespacing_medium" id="0x7f020076" />
<public type="drawable" name="ic_linespacing_small" id="0x7f02007a" />
<public type="drawable" name="ic_menu_back" id="0x7f020080" />
<public type="drawable" name="ic_menu_grid" id="0x7f020087" />
<public type="drawable" name="ic_menu_grid_2" id="0x7f020088" />
<public type="drawable" name="ic_menu_list" id="0x7f02008b" />
<public type="drawable" name="ic_menu_list_2" id="0x7f02008c" />
<public type="drawable" name="ic_menu_next" id="0x7f02008d" />
<public type="drawable" name="ic_menu_previous" id="0x7f02008e" />
<public type="drawable" name="ic_next_default" id="0x7f020094" />
<public type="drawable" name="ic_next_disabled" id="0x7f020095" />
<public type="drawable" name="ic_next_pressed" id="0x7f020096" />
<public type="drawable" name="ic_previous_default" id="0x7f0200a3" />
<public type="drawable" name="ic_previous_disabled" id="0x7f0200a4" />
<public type="drawable" name="ic_previous_pressed" id="0x7f0200a5" />
<public type="drawable" name="ic_text_large" id="0x7f0200a7" />
<public type="drawable" name="ic_text_large_light" id="0x7f0200a8" />
<public type="drawable" name="ic_text_medium" id="0x7f0200a9" />
<public type="drawable" name="ic_text_medium_light" id="0x7f0200aa" />
<public type="drawable" name="ic_text_small" id="0x7f0200ab" />
<public type="drawable" name="ic_text_small_light" id="0x7f0200ac" />
<public type="drawable" name="ic_text_xlarge" id="0x7f0200ad" />
<public type="drawable" name="ic_text_xlarge_light" id="0x7f0200ae" />
<public type="drawable" name="ic_text_xsmall" id="0x7f0200af" />
<public type="drawable" name="ic_text_xsmall_light" id="0x7f0200b0" />
<public type="drawable" name="ic_text_xxlarge" id="0x7f0200b1" />
<public type="drawable" name="ic_text_xxlarge_light" id="0x7f0200b2" />
<public type="drawable" name="ic_zoom_close_button" id="0x7f0200e3" />
<public type="drawable" name="ic_zoom_close_button_pressed" id="0x7f0200e4" />
<public type="drawable" name="image_zoom_background" id="0x7f0200e5" />
<public type="drawable" name="image_zoom_close_button" id="0x7f0200e6" />
<public type="drawable" name="library_actionbar_bg" id="0x7f0200e9" />
<public type="drawable" name="list_item_bg" id="0x7f0200ee" />
<public type="drawable" name="list_item_selected_bg" id="0x7f0200ef" />
<public type="drawable" name="menu_bookmark" id="0x7f0200fd" />
<public type="drawable" name="menu_highlight" id="0x7f020100" />
<public type="drawable" name="menu_note" id="0x7f020101" />
<public type="drawable" name="next_button" id="0x7f020107" />
<public type="drawable" name="note_icon_medium" id="0x7f020108" />
<public type="drawable" name="pageview_active" id="0x7f020109" />
<public type="drawable" name="pageview_default" id="0x7f02010a" />
<public type="drawable" name="pageview_pressed" id="0x7f02010b" />
<public type="drawable" name="previous_button" id="0x7f02010c" />
<public type="drawable" name="progress_horizontal_downloading" id="0x7f02010d" />
<public type="drawable" name="progress_horizontal_paused" id="0x7f02010e" />
<public type="drawable" name="reader_titlebar_bg" id="0x7f02010f" />
<public type="drawable" name="readingwidget_book_shadow" id="0x7f020112" />
<public type="drawable" name="readingwidget_dot" id="0x7f020113" />
<public type="drawable" name="readingwidget_dot_empty" id="0x7f020114" />
<public type="drawable" name="readingwidget_land_bkgd" id="0x7f020115" />
<public type="drawable" name="readingwidget_land_nobook" id="0x7f020116" />
<public type="drawable" name="readingwidget_port_bkgd" id="0x7f020117" />
<public type="drawable" name="readingwidget_port_nobook" id="0x7f020118" />
<public type="drawable" name="recommendation_arrow" id="0x7f020119" />
<public type="drawable" name="replica_page_background" id="0x7f02011a" />
<public type="drawable" name="section_list_item_background" id="0x7f02011b" />
<public type="drawable" name="section_list_transition" id="0x7f02011c" />
<public type="drawable" name="selection_buttons_center" id="0x7f02011f" />
<public type="drawable" name="selection_buttons_left" id="0x7f020120" />
<public type="drawable" name="selection_buttons_right" id="0x7f020121" />
<public type="drawable" name="selection_buttons_single" id="0x7f020122" />
<public type="drawable" name="selection_buttons_transient" id="0x7f020123" />
<public type="drawable" name="separator" id="0x7f020124" />
<public type="drawable" name="shadow_above" id="0x7f020125" />
<public type="drawable" name="shadow_below" id="0x7f020126" />
<public type="drawable" name="softkey_bar_gradient" id="0x7f020127" />
<public type="drawable" name="splash_logo" id="0x7f020129" />
<public type="drawable" name="store_promo" id="0x7f02012a" />
<public type="drawable" name="textview_active" id="0x7f02012f" />
<public type="drawable" name="textview_default" id="0x7f020130" />
<public type="drawable" name="textview_pressed" id="0x7f020131" />
<public type="drawable" name="thumbnail_image_border" id="0x7f020132" />
<public type="drawable" name="thumbnail_image_border_left" id="0x7f020133" />
<public type="drawable" name="thumbnail_image_border_right" id="0x7f020134" />
<public type="drawable" name="thumbnail_slider_background" id="0x7f020139" />
<public type="drawable" name="togglebutton_bar_bg" id="0x7f02013b" />
<public type="drawable" name="togglebutton_pageview" id="0x7f02013c" />
<public type="drawable" name="togglebutton_textview" id="0x7f02013d" />
<public type="drawable" name="unified_selection_center_btm" id="0x7f02013e" />
<public type="drawable" name="unified_selection_center_btm_pressed" id="0x7f02013f" />
<public type="drawable" name="unified_selection_center_mid" id="0x7f020140" />
<public type="drawable" name="unified_selection_center_mid_pressed" id="0x7f020141" />
<public type="drawable" name="unified_selection_center_top" id="0x7f020142" />
<public type="drawable" name="unified_selection_center_top_pressed" id="0x7f020143" />
<public type="drawable" name="unified_selection_left_btm" id="0x7f020144" />
<public type="drawable" name="unified_selection_left_btm_pressed" id="0x7f020145" />
<public type="drawable" name="unified_selection_left_mid" id="0x7f020146" />
<public type="drawable" name="unified_selection_left_mid_pressed" id="0x7f020147" />
<public type="drawable" name="unified_selection_left_top" id="0x7f020148" />
<public type="drawable" name="unified_selection_left_top_pressed" id="0x7f020149" />
<public type="drawable" name="unified_selection_popup_definition_btm" id="0x7f02014a" />
<public type="drawable" name="unified_selection_popup_definition_top" id="0x7f02014b" />
<public type="drawable" name="unified_selection_right_btm" id="0x7f02014c" />
<public type="drawable" name="unified_selection_right_btm_pressed" id="0x7f02014d" />
<public type="drawable" name="unified_selection_right_mid" id="0x7f02014e" />
<public type="drawable" name="unified_selection_right_mid_pressed" id="0x7f02014f" />
<public type="drawable" name="unified_selection_right_top" id="0x7f020150" />
<public type="drawable" name="unified_selection_right_top_pressed" id="0x7f020151" />
<public type="drawable" name="unified_selection_single" id="0x7f020152" />
<public type="drawable" name="unified_selection_single_pressed" id="0x7f020153" />
<public type="drawable" name="vertical_separator" id="0x7f020154" />
<public type="drawable" name="bookmark_add" id="0x7f02001b" />
<public type="drawable" name="bookmark_add_black" id="0x7f02001c" />
<public type="drawable" name="bookmark_add_sepia" id="0x7f02001d" />
<public type="drawable" name="bookmark_added" id="0x7f02001f" />
<public type="drawable" name="bookmark_added_fs" id="0x7f020020" />
<public type="drawable" name="ic_soft_back" id="0x7f0200a6" />
<public type="drawable" name="library_filter_item_bg" id="0x7f0200ea" />
<public type="drawable" name="bookmark_add_white" id="0x7f02001e" />
<public type="drawable" name="kindle_logo" id="0x7f0200e7" />
<public type="drawable" name="launcher_icon" id="0x7f0200e8" />
<public type="drawable" name="bg_header" id="0x7f02000a" />
<public type="drawable" name="bg_zoom_left" id="0x7f020012" />
<public type="drawable" name="bg_zoom_left_pressed" id="0x7f020013" />
<public type="drawable" name="bg_zoom_right" id="0x7f020014" />
<public type="drawable" name="bg_zoom_right_pressed" id="0x7f020015" />
<public type="drawable" name="bookmark_black" id="0x7f020021" />
<public type="drawable" name="bookmark_default" id="0x7f020022" />
<public type="drawable" name="bookmark_sepia" id="0x7f020023" />
<public type="drawable" name="bottombar_landscape" id="0x7f020024" />
<public type="drawable" name="brightness_lrg" id="0x7f020025" />
<public type="drawable" name="brightness_sm" id="0x7f020026" />
<public type="drawable" name="btn_black_normal" id="0x7f020027" />
<public type="drawable" name="btn_sepia_normal" id="0x7f020028" />
<public type="drawable" name="btn_white_normal" id="0x7f02002c" />
<public type="drawable" name="divider_horizontal" id="0x7f020039" />
<public type="drawable" name="extrude_bottom_left" id="0x7f02003b" />
<public type="drawable" name="extrude_bottom_right" id="0x7f02003c" />
<public type="drawable" name="extrude_stretch_bottom" id="0x7f02003d" />
<public type="drawable" name="extrude_stretch_right" id="0x7f02003e" />
<public type="drawable" name="extrude_top_right" id="0x7f02003f" />
<public type="drawable" name="generic_back_issues_cover_list" id="0x7f020041" />
<public type="drawable" name="generic_book_cover_list" id="0x7f020042" />
<public type="drawable" name="generic_doc_cover_list" id="0x7f020043" />
<public type="drawable" name="generic_magazine_cover_list" id="0x7f020044" />
<public type="drawable" name="generic_newspaper_cover_list" id="0x7f020045" />
<public type="drawable" name="home_keep" id="0x7f020048" />
<public type="drawable" name="home_snow" id="0x7f020049" />
<public type="drawable" name="ic_ab_brightness" id="0x7f02004a" />
<public type="drawable" name="ic_ab_fonts" id="0x7f02004b" />
<public type="drawable" name="ic_ab_search" id="0x7f02004c" />
<public type="drawable" name="ic_alert_success" id="0x7f02004d" />
<public type="drawable" name="ic_alert_warn" id="0x7f02004e" />
<public type="drawable" name="ic_arrow_dark" id="0x7f020050" />
<public type="drawable" name="ic_arrow_light" id="0x7f020051" />
<public type="drawable" name="ic_cart_sm" id="0x7f020052" />
<public type="drawable" name="ic_dialog_archive" id="0x7f020056" />
<public type="drawable" name="ic_dialog_bullet" id="0x7f020057" />
<public type="drawable" name="ic_dialog_cart" id="0x7f020059" />
<public type="drawable" name="ic_doc" id="0x7f02005b" />
<public type="drawable" name="ic_docm" id="0x7f02005c" />
<public type="drawable" name="ic_docx" id="0x7f02005d" />
<public type="drawable" name="ic_dot" id="0x7f02005e" />
<public type="drawable" name="ic_dotm" id="0x7f02005f" />
<public type="drawable" name="ic_dotx" id="0x7f020060" />
<public type="drawable" name="ic_icon_dict" id="0x7f020061" />
<public type="drawable" name="ic_library_cloud" id="0x7f020062" />
<public type="drawable" name="ic_linelength_lg" id="0x7f020064" />
<public type="drawable" name="ic_linelength_lg_focus" id="0x7f020065" />
<public type="drawable" name="ic_linelength_lg_selected" id="0x7f020066" />
<public type="drawable" name="ic_linelength_md" id="0x7f020067" />
<public type="drawable" name="ic_linelength_md_focus" id="0x7f020068" />
<public type="drawable" name="ic_linelength_md_selected" id="0x7f020069" />
<public type="drawable" name="ic_linelength_sm" id="0x7f02006b" />
<public type="drawable" name="ic_linelength_sm_focus" id="0x7f02006c" />
<public type="drawable" name="ic_linelength_sm_selected" id="0x7f02006d" />
<public type="drawable" name="ic_linespacing_lg" id="0x7f020070" />
<public type="drawable" name="ic_linespacing_lg_focus" id="0x7f020071" />
<public type="drawable" name="ic_linespacing_lg_selected" id="0x7f020072" />
<public type="drawable" name="ic_linespacing_md" id="0x7f020073" />
<public type="drawable" name="ic_linespacing_md_focus" id="0x7f020074" />
<public type="drawable" name="ic_linespacing_md_selected" id="0x7f020075" />
<public type="drawable" name="ic_linespacing_sm" id="0x7f020077" />
<public type="drawable" name="ic_linespacing_sm_focus" id="0x7f020078" />
<public type="drawable" name="ic_linespacing_sm_selected" id="0x7f020079" />
<public type="drawable" name="ic_locked_black" id="0x7f02007b" />
<public type="drawable" name="ic_locked_default" id="0x7f02007c" />
<public type="drawable" name="ic_locked_sepia" id="0x7f02007d" />
<public type="drawable" name="ic_menu_archive" id="0x7f02007e" />
<public type="drawable" name="ic_menu_articles" id="0x7f02007f" />
<public type="drawable" name="ic_menu_bookmark" id="0x7f020081" />
<public type="drawable" name="ic_menu_cart" id="0x7f020082" />
<public type="drawable" name="ic_menu_dontkeep" id="0x7f020083" />
<public type="drawable" name="ic_menu_forward" id="0x7f020084" />
<public type="drawable" name="ic_menu_front_page" id="0x7f020085" />
<public type="drawable" name="ic_menu_goto" id="0x7f020086" />
<public type="drawable" name="ic_menu_home" id="0x7f020089" />
<public type="drawable" name="ic_menu_keep" id="0x7f02008a" />
<public type="drawable" name="ic_menu_reading" id="0x7f02008f" />
<public type="drawable" name="ic_menu_refresh" id="0x7f020090" />
<public type="drawable" name="ic_menu_remove_bookmark" id="0x7f020091" />
<public type="drawable" name="ic_menu_sections" id="0x7f020092" />
<public type="drawable" name="ic_menu_view_options" id="0x7f020093" />
<public type="drawable" name="ic_note_sm" id="0x7f020097" />
<public type="drawable" name="ic_pdf" id="0x7f020098" />
<public type="drawable" name="ic_pot" id="0x7f020099" />
<public type="drawable" name="ic_potm" id="0x7f02009a" />
<public type="drawable" name="ic_potx" id="0x7f02009b" />
<public type="drawable" name="ic_ppa" id="0x7f02009c" />
<public type="drawable" name="ic_ppam" id="0x7f02009d" />
<public type="drawable" name="ic_ppsm" id="0x7f02009e" />
<public type="drawable" name="ic_ppsx" id="0x7f02009f" />
<public type="drawable" name="ic_ppt" id="0x7f0200a0" />
<public type="drawable" name="ic_pptm" id="0x7f0200a1" />
<public type="drawable" name="ic_pptx" id="0x7f0200a2" />
<public type="drawable" name="ic_txt" id="0x7f0200b3" />
<public type="drawable" name="ic_unlocked_black" id="0x7f0200b4" />
<public type="drawable" name="ic_unlocked_default" id="0x7f0200b5" />
<public type="drawable" name="ic_unlocked_sepia" id="0x7f0200b6" />
<public type="drawable" name="ic_view_text_l" id="0x7f0200b7" />
<public type="drawable" name="ic_view_text_l_focus" id="0x7f0200b8" />
<public type="drawable" name="ic_view_text_l_selected" id="0x7f0200b9" />
<public type="drawable" name="ic_view_text_m" id="0x7f0200cc" />
<public type="drawable" name="ic_view_text_m_focus" id="0x7f0200cd" />
<public type="drawable" name="ic_view_text_m_selected" id="0x7f0200ce" />
<public type="drawable" name="ic_view_text_s" id="0x7f0200cf" />
<public type="drawable" name="ic_view_text_s_focus" id="0x7f0200d0" />
<public type="drawable" name="ic_view_text_s_selected" id="0x7f0200d1" />
<public type="drawable" name="ic_view_text_xl" id="0x7f0200d2" />
<public type="drawable" name="ic_view_text_xl_focus" id="0x7f0200d3" />
<public type="drawable" name="ic_view_text_xl_selected" id="0x7f0200d4" />
<public type="drawable" name="ic_view_text_xs" id="0x7f0200d5" />
<public type="drawable" name="ic_view_text_xs_focus" id="0x7f0200d6" />
<public type="drawable" name="ic_view_text_xs_selected" id="0x7f0200d7" />
<public type="drawable" name="ic_xla" id="0x7f0200db" />
<public type="drawable" name="ic_xlam" id="0x7f0200dc" />
<public type="drawable" name="ic_xls" id="0x7f0200dd" />
<public type="drawable" name="ic_xlsm" id="0x7f0200de" />
<public type="drawable" name="ic_xlsx" id="0x7f0200df" />
<public type="drawable" name="ic_xlt" id="0x7f0200e0" />
<public type="drawable" name="ic_xltm" id="0x7f0200e1" />
<public type="drawable" name="ic_xltx" id="0x7f0200e2" />
<public type="drawable" name="library_menu_bottom_background" id="0x7f0200eb" />
<public type="drawable" name="library_menu_down_arrow" id="0x7f0200ec" />
<public type="drawable" name="library_menu_top_background" id="0x7f0200ed" />
<public type="drawable" name="logo" id="0x7f0200f0" />
<public type="drawable" name="loupe" id="0x7f0200f2" />
<public type="drawable" name="menu_annotation_center" id="0x7f0200f3" />
<public type="drawable" name="menu_annotation_center_pressed" id="0x7f0200f4" />
<public type="drawable" name="menu_annotation_left" id="0x7f0200f5" />
<public type="drawable" name="menu_annotation_left_pressed" id="0x7f0200f6" />
<public type="drawable" name="menu_annotation_pointer_btm" id="0x7f0200f7" />
<public type="drawable" name="menu_annotation_pointer_top" id="0x7f0200f8" />
<public type="drawable" name="menu_annotation_right" id="0x7f0200f9" />
<public type="drawable" name="menu_annotation_right_pressed" id="0x7f0200fa" />
<public type="drawable" name="menu_annotation_single" id="0x7f0200fb" />
<public type="drawable" name="menu_annotation_single_pressed" id="0x7f0200fc" />
<public type="drawable" name="menu_dropdown_panel_holo_dark" id="0x7f0200fe" />
<public type="drawable" name="menu_dropdown_panel_holo_light" id="0x7f0200ff" />
<public type="drawable" name="news_extrude_bottom_left" id="0x7f020102" />
<public type="drawable" name="news_extrude_bottom_right" id="0x7f020103" />
<public type="drawable" name="news_extrude_stretch_bottom" id="0x7f020104" />
<public type="drawable" name="news_extrude_stretch_right" id="0x7f020105" />
<public type="drawable" name="news_extrude_top_right" id="0x7f020106" />
<public type="drawable" name="reading_dot" id="0x7f020110" />
<public type="drawable" name="reading_dot_empty" id="0x7f020111" />
<public type="drawable" name="table_arrow_bottom" id="0x7f02012b" />
<public type="drawable" name="table_arrow_left" id="0x7f02012c" />
<public type="drawable" name="table_arrow_right" id="0x7f02012d" />
<public type="drawable" name="table_arrow_up" id="0x7f02012e" />
<public type="drawable" name="thumbnail_item_shadow" id="0x7f020135" />
<public type="drawable" name="thumbnail_scrollbar_bg" id="0x7f020136" />
<public type="drawable" name="thumbnail_scrollbar_button" id="0x7f020137" />
<public type="drawable" name="thumbnail_selected_item_shadow" id="0x7f020138" />
<public type="drawable" name="tip_tap" id="0x7f02013a" />
<public type="drawable" name="zoom_in" id="0x7f020156" />
<public type="drawable" name="zoom_out" id="0x7f020157" />
<public type="drawable" name="ic_dialog_bullet_light" id="0x7f020058" />
<public type="drawable" name="ic_dialog_info_light" id="0x7f02005a" />
<public type="drawable" name="ic_view_text_light_l" id="0x7f0200ba" />
<public type="drawable" name="ic_view_text_light_l_focus" id="0x7f0200bb" />
<public type="drawable" name="ic_view_text_light_l_selected" id="0x7f0200bc" />
<public type="drawable" name="ic_view_text_light_m" id="0x7f0200bd" />
<public type="drawable" name="ic_view_text_light_m_focus" id="0x7f0200be" />
<public type="drawable" name="ic_view_text_light_m_selected" id="0x7f0200bf" />
<public type="drawable" name="ic_view_text_light_s" id="0x7f0200c0" />
<public type="drawable" name="ic_view_text_light_s_focus" id="0x7f0200c1" />
<public type="drawable" name="ic_view_text_light_s_selected" id="0x7f0200c2" />
<public type="drawable" name="ic_view_text_light_xl" id="0x7f0200c3" />
<public type="drawable" name="ic_view_text_light_xl_focus" id="0x7f0200c4" />
<public type="drawable" name="ic_view_text_light_xl_selected" id="0x7f0200c5" />
<public type="drawable" name="ic_view_text_light_xs" id="0x7f0200c6" />
<public type="drawable" name="ic_view_text_light_xs_focus" id="0x7f0200c7" />
<public type="drawable" name="ic_view_text_light_xs_selected" id="0x7f0200c8" />
<public type="drawable" name="ic_view_text_light_xxl" id="0x7f0200c9" />
<public type="drawable" name="ic_view_text_light_xxl_focus" id="0x7f0200ca" />
<public type="drawable" name="ic_view_text_light_xxl_selected" id="0x7f0200cb" />
<public type="drawable" name="ic_view_text_xxl" id="0x7f0200d8" />
<public type="drawable" name="ic_view_text_xxl_focus" id="0x7f0200d9" />
<public type="drawable" name="ic_view_text_xxl_selected" id="0x7f0200da" />
<public type="drawable" name="bkgd_links" id="0x7f020016" />
<public type="drawable" name="logo_black" id="0x7f0200f1" />
<public type="drawable" name="select_dot_focus" id="0x7f02011d" />
<public type="drawable" name="select_dot_selected" id="0x7f02011e" />
<public type="drawable" name="view_menu" id="0x7f020155" />
<public type="drawable" name="bg_unified_library" id="0x7f020011" />
<public type="drawable" name="splash_k4a" id="0x7f020128" />
<public type="layout" name="about_detail_item" id="0x7f030000" />
<public type="layout" name="about_screen" id="0x7f030001" />
<public type="layout" name="about_section_item" id="0x7f030002" />
<public type="layout" name="add_note" id="0x7f030003" />
<public type="layout" name="annotation_creation" id="0x7f030004" />
<public type="layout" name="article_list_layout" id="0x7f030005" />
<public type="layout" name="article_list_row" id="0x7f030006" />
<public type="layout" name="articles_view" id="0x7f030007" />
<public type="layout" name="back_issues_cover_view" id="0x7f030008" />
<public type="layout" name="back_issues_row_view" id="0x7f030009" />
<public type="layout" name="book_cell_view" id="0x7f03000a" />
<public type="layout" name="book_cover_view" id="0x7f03000b" />
<public type="layout" name="book_default_cover" id="0x7f03000c" />
<public type="layout" name="book_layout" id="0x7f03000d" />
<public type="layout" name="book_menu_notes_list_item" id="0x7f03000e" />
<public type="layout" name="book_row_view" id="0x7f030011" />
<public type="layout" name="bookmark_frame" id="0x7f030013" />
<public type="layout" name="brightness_slider" id="0x7f030014" />
<public type="layout" name="checkbox_list_item_2" id="0x7f030016" />
<public type="layout" name="color_options" id="0x7f030017" />
<public type="layout" name="cover_list_row" id="0x7f030018" />
<public type="layout" name="cover_screen" id="0x7f030019" />
<public type="layout" name="create_account" id="0x7f03001a" />
<public type="layout" name="debug_screen" id="0x7f03001b" />
<public type="layout" name="default_landing_screen" id="0x7f03001c" />
<public type="layout" name="definition_container" id="0x7f03001d" />
<public type="layout" name="deletable_book_row_view" id="0x7f03001e" />
<public type="layout" name="delete_screen" id="0x7f03001f" />
<public type="layout" name="download_error" id="0x7f030020" />
<public type="layout" name="downloading_notification" id="0x7f030021" />
<public type="layout" name="empty_ai_tip" id="0x7f030022" />
<public type="layout" name="empty_home_tip" id="0x7f030023" />
<public type="layout" name="expandable_text_entry_edit_text_box" id="0x7f030024" />
<public type="layout" name="feedback_screen" id="0x7f030025" />
<public type="layout" name="filtered_section_row" id="0x7f030026" />
<public type="layout" name="gallery_info_view" id="0x7f030027" />
<public type="layout" name="image_zoom_screen" id="0x7f030028" />
<public type="layout" name="info_screen" id="0x7f030029" />
<public type="layout" name="landing_book_view" id="0x7f03002a" />
<public type="layout" name="landing_screen" id="0x7f03002b" />
<public type="layout" name="library_books_gallery" id="0x7f03002c" />
<public type="layout" name="library_books_grid" id="0x7f03002d" />
<public type="layout" name="library_books_list" id="0x7f03002e" />
<public type="layout" name="library_navigation_bar" id="0x7f03002f" />
<public type="layout" name="library_screen" id="0x7f030030" />
<public type="layout" name="library_state_item" id="0x7f030031" />
<public type="layout" name="library_switch_activity_progress" id="0x7f030032" />
<public type="layout" name="library_sync_message_view" id="0x7f030033" />
<public type="layout" name="license_agreement" id="0x7f030034" />
<public type="layout" name="line_length" id="0x7f030035" />
<public type="layout" name="line_spacing" id="0x7f030036" />
<public type="layout" name="list_section_header" id="0x7f030037" />
<public type="layout" name="loading_screen" id="0x7f030038" />
<public type="layout" name="location_dialog" id="0x7f030039" />
<public type="layout" name="main" id="0x7f03003b" />
<public type="layout" name="notes_list_item" id="0x7f03003c" />
<public type="layout" name="notes_screen" id="0x7f03003d" />
<public type="layout" name="object_selection_view" id="0x7f03003e" />
<public type="layout" name="otter_color_options" id="0x7f03003f" />
<public type="layout" name="otter_text_sizes" id="0x7f030040" />
<public type="layout" name="otter_view_options" id="0x7f030041" />
<public type="layout" name="otter_web_view_screen" id="0x7f030042" />
<public type="layout" name="pdf_layout" id="0x7f030043" />
<public type="layout" name="pdf_reader_menu_container" id="0x7f030044" />
<public type="layout" name="pdf_tile_view" id="0x7f030045" />
<public type="layout" name="periodical_articles_list_header" id="0x7f030047" />
<public type="layout" name="periodical_articles_list_screen" id="0x7f030048" />
<public type="layout" name="periodical_layout" id="0x7f030049" />
<public type="layout" name="periodical_location_container" id="0x7f03004a" />
<public type="layout" name="periodical_section_list_item" id="0x7f03004c" />
<public type="layout" name="periodical_section_list_screen" id="0x7f03004d" />
<public type="layout" name="periodical_titlebar_magazine" id="0x7f03004e" />
<public type="layout" name="periodical_titlebar_newspaper" id="0x7f03004f" />
<public type="layout" name="periodical_toc_articlelist_article" id="0x7f030050" />
<public type="layout" name="periodical_toc_articlelist_section" id="0x7f030051" />
<public type="layout" name="periodical_toc_layout" id="0x7f030052" />
<public type="layout" name="periodical_toc_sectionlist_item" id="0x7f030053" />
<public type="layout" name="reader_instructions" id="0x7f030055" />
<public type="layout" name="reader_layout" id="0x7f030056" />
<public type="layout" name="reader_location_container" id="0x7f030057" />
<public type="layout" name="reader_menu_container" id="0x7f030058" />
<public type="layout" name="reader_render_progress" id="0x7f030059" />
<public type="layout" name="reader_screen" id="0x7f03005a" />
<public type="layout" name="reader_search_header" id="0x7f03005b" />
<public type="layout" name="reader_search_label" id="0x7f03005c" />
<public type="layout" name="reader_search_result_item" id="0x7f03005d" />
<public type="layout" name="reader_search_screen" id="0x7f03005e" />
<public type="layout" name="reader_search_titlebar" id="0x7f03005f" />
<public type="layout" name="recent_items_scroll_view" id="0x7f030060" />
<public type="layout" name="row_cover_container" id="0x7f030061" />
<public type="layout" name="search_screen" id="0x7f030062" />
<public type="layout" name="section_list_layout" id="0x7f030063" />
<public type="layout" name="settings_screen" id="0x7f030064" />
<public type="layout" name="sign_in" id="0x7f030065" />
<public type="layout" name="store_screen" id="0x7f030068" />
<public type="layout" name="text_sizes" id="0x7f030069" />
<public type="layout" name="thumbnail_item_layout" id="0x7f03006a" />
<public type="layout" name="thumbnail_slider_background" id="0x7f03006b" />
<public type="layout" name="thumbnail_slider_layout" id="0x7f03006c" />
<public type="layout" name="toc_list_item" id="0x7f03006d" />
<public type="layout" name="transient_downloading_section" id="0x7f03006e" />
<public type="layout" name="two_panels_periodicals_layout" id="0x7f030070" />
<public type="layout" name="unfiltered_section_row" id="0x7f030071" />
<public type="layout" name="view_options" id="0x7f030072" />
<public type="layout" name="web_view_screen" id="0x7f030073" />
<public type="layout" name="whats_new_dialog" id="0x7f030074" />
<public type="layout" name="zoom_close_button" id="0x7f030077" />
<public type="layout" name="book_page_layout" id="0x7f030010" />
<public type="layout" name="brightness_textcolors_layout" id="0x7f030015" />
<public type="layout" name="periodical_articles_list_date_header" id="0x7f030046" />
<public type="layout" name="periodical_page_layout" id="0x7f03004b" />
<public type="layout" name="prev_next_all_articles_view" id="0x7f030054" />
<public type="layout" name="sign_in_button_and_agreement" id="0x7f030066" />
<public type="layout" name="softback_button_layout" id="0x7f030067" />
<public type="layout" name="transient_screen" id="0x7f03006f" />
<public type="layout" name="book_menu_screen" id="0x7f03000f" />
<public type="layout" name="book_toc_screen" id="0x7f030012" />
<public type="layout" name="login_screen" id="0x7f03003a" />
<public type="layout" name="widget_currently_not_reading" id="0x7f030075" />
<public type="layout" name="widget_currently_reading" id="0x7f030076" />
<public type="anim" name="no_anim" id="0x7f040000" />
<public type="anim" name="recent_enter" id="0x7f040001" />
<public type="anim" name="recent_exit" id="0x7f040002" />
<public type="anim" name="slide_down_sharing_extras" id="0x7f040003" />
<public type="anim" name="slide_fade_from_bottom" id="0x7f040004" />
<public type="anim" name="slide_fade_to_bottom" id="0x7f040005" />
<public type="anim" name="slide_fade_to_top" id="0x7f040006" />
<public type="anim" name="slide_in_bottom" id="0x7f040007" />
<public type="anim" name="slide_in_top" id="0x7f040008" />
<public type="anim" name="slide_out_bottom" id="0x7f040009" />
<public type="anim" name="slide_out_top" id="0x7f04000a" />
<public type="xml" name="currently_reading_provider" id="0x7f050000" />
<public type="xml" name="reader_searchable" id="0x7f050001" />
<public type="xml" name="searchable" id="0x7f050002" />
<public type="raw" name="browserhost" id="0x7f060000" />
<public type="raw" name="gestures" id="0x7f060001" />
<public type="raw" name="json" id="0x7f060002" />
<public type="raw" name="langmap" id="0x7f060003" />
<public type="array" name="font_size_array" id="0x7f070000" />
<public type="array" name="page_margins_user_settings" id="0x7f070001" />
<public type="array" name="comparison_stop_words" id="0x7f070002" />
<public type="bool" name="book_reader_title_on_page" id="0x7f080000" />
<public type="bool" name="limit_article_count" id="0x7f080001" />
<public type="bool" name="definition_popup_in_bottom_margin" id="0x7f080002" />
<public type="bool" name="transient_screen_translucent_mode" id="0x7f080003" />
<public type="bool" name="show_unified_library" id="0x7f080004" />
<public type="bool" name="dim_archived_item_covers" id="0x7f080005" />
<public type="bool" name="immersive_reading_mode" id="0x7f080006" />
<public type="bool" name="reader_location_color_changes" id="0x7f080007" />
<public type="bool" name="update_theme_on_color_change" id="0x7f080008" />
<public type="bool" name="dual_panel_periodical_view_supported" id="0x7f080009" />
<public type="bool" name="library_default_to_grid_view" id="0x7f08000a" />
<public type="bool" name="otter_device" id="0x7f08000b" />
<public type="bool" name="book_reader_has_title" id="0x7f08000c" />
<public type="bool" name="reader_title_centered" id="0x7f08000d" />
<public type="bool" name="prefetch_store_in_home" id="0x7f08000e" />
<public type="bool" name="sharing_extras_enabled" id="0x7f08000f" />
<public type="bool" name="enable_kindle_content_change_listener" id="0x7f080010" />
<public type="bool" name="enable_cover_manager_intent_broadcast" id="0x7f080011" />
<public type="bool" name="pdf_enabled" id="0x7f080012" />
<public type="bool" name="pdf_bookmarks_supported" id="0x7f080013" />
<public type="bool" name="pdf_highlights_supported" id="0x7f080014" />
<public type="bool" name="pdf_mop_format_support" id="0x7f080015" />
<public type="bool" name="pdf_mop_toc_supported" id="0x7f080016" />
<public type="bool" name="office_docs_enabled" id="0x7f080017" />
<public type="bool" name="kf8_enabled" id="0x7f080018" />
<public type="string" name="reader_tip_factory" id="0x7f090000" />
<public type="string" name="path_descriptor" id="0x7f090001" />
<public type="string" name="alert_dialog" id="0x7f090002" />
<public type="string" name="definition_view" id="0x7f090003" />
<public type="string" name="store_closer" id="0x7f090004" />
<public type="string" name="account_info_update_listener" id="0x7f090005" />
<public type="string" name="latency_tracker" id="0x7f090006" />
<public type="string" name="registration_provider" id="0x7f090007" />
<public type="string" name="dictionary_list" id="0x7f090008" />
<public type="string" name="book_layout_factory" id="0x7f090009" />
<public type="string" name="singleton_factory" id="0x7f09000a" />
<public type="string" name="device_configurator" id="0x7f09000b" />
<public type="string" name="landing_activity" id="0x7f09000c" />
<public type="string" name="default_cover_typeface" id="0x7f09000d" />
<public type="string" name="helvetica_typeface_67" id="0x7f09000e" />
<public type="string" name="helvetica_typeface_55" id="0x7f09000f" />
<public type="string" name="helvetica_typeface_56" id="0x7f090010" />
<public type="string" name="helvetica_typeface_75" id="0x7f090011" />
<public type="string" name="helvetica_typeface_76" id="0x7f090012" />
<public type="string" name="helvetica_typeface_57" id="0x7f090013" />
<public type="string" name="heading_1_typeface" id="0x7f090014" />
<public type="string" name="heading_2_typeface" id="0x7f090015" />
<public type="string" name="heading_3_typeface" id="0x7f090016" />
<public type="string" name="strong_typeface" id="0x7f090017" />
<public type="string" name="normal_typeface" id="0x7f090018" />
<public type="string" name="sync_message_time" id="0x7f090019" />
<public type="string" name="publication_date_long" id="0x7f09001a" />
<public type="string" name="publication_date_short" id="0x7f09001b" />
<public type="string" name="download_progress_decimal_format" id="0x7f09001c" />
<public type="string" name="lpr_time_today" id="0x7f09001d" />
<public type="string" name="lpr_time_yesterday" id="0x7f09001e" />
<public type="string" name="lpr_time_date" id="0x7f09001f" />
<public type="string" name="lpr_time_date_no_timezone" id="0x7f090020" />
<public type="string" name="app_name_short" id="0x7f090021" />
<public type="string" name="app_name_full" id="0x7f090022" />
<public type="string" name="save" id="0x7f090023" />
<public type="string" name="close" id="0x7f090024" />
<public type="string" name="edit" id="0x7f090025" />
<public type="string" name="delete" id="0x7f090026" />
<public type="string" name="remove" id="0x7f090027" />
<public type="string" name="ok" id="0x7f090028" />
<public type="string" name="go" id="0x7f090029" />
<public type="string" name="cancel" id="0x7f09002a" />
<public type="string" name="yes" id="0x7f09002b" />
<public type="string" name="no" id="0x7f09002c" />
<public type="string" name="dismiss" id="0x7f09002d" />
<public type="string" name="discard" id="0x7f09002e" />
<public type="string" name="send" id="0x7f09002f" />
<public type="string" name="home" id="0x7f090030" />
<public type="string" name="kindle_home" id="0x7f090031" />
<public type="string" name="archived_items" id="0x7f090032" />
<public type="string" name="landing" id="0x7f090033" />
<public type="string" name="sync" id="0x7f090034" />
<public type="string" name="info" id="0x7f090035" />
<public type="string" name="warning" id="0x7f090036" />
<public type="string" name="settings" id="0x7f090037" />
<public type="string" name="pause" id="0x7f090038" />
<public type="string" name="resume" id="0x7f090039" />
<public type="string" name="android_settings" id="0x7f09003a" />
<public type="string" name="wifi_settings" id="0x7f09003b" />
<public type="string" name="store_link" id="0x7f09003c" />
<public type="string" name="store_unavailable_title" id="0x7f09003d" />
<public type="string" name="store_unavailable_message" id="0x7f09003e" />
<public type="string" name="store_unavailable_open_in_browser" id="0x7f09003f" />
<public type="string" name="feedback_instructions" id="0x7f090040" />
<public type="string" name="feedback_thank_you" id="0x7f090041" />
<public type="string" name="feedback_failed_title" id="0x7f090042" />
<public type="string" name="feedback_failed_message" id="0x7f090043" />
<public type="string" name="sending_feedback" id="0x7f090044" />
<public type="string" name="lib_title" id="0x7f090045" />
<public type="string" name="lib_filter_count" id="0x7f090046" />
<public type="string" name="library_filter_all_items" id="0x7f090047" />
<public type="string" name="library_filter_local_items" id="0x7f090048" />
<public type="string" name="library_filter_archived_items" id="0x7f090049" />
<public type="string" name="library_filter_periodical_only" id="0x7f09004a" />
<public type="string" name="lib_menu_home" id="0x7f09004b" />
<public type="string" name="lib_menu_archive_items" id="0x7f09004c" />
<public type="string" name="lib_menu_store" id="0x7f09004d" />
<public type="string" name="lib_menu_sort" id="0x7f09004e" />
<public type="string" name="lib_menu_sort_recent" id="0x7f09004f" />
<public type="string" name="lib_menu_sort_title" id="0x7f090050" />
<public type="string" name="lib_menu_sort_author" id="0x7f090051" />
<public type="string" name="lib_menu_sync_check" id="0x7f090052" />
<public type="string" name="lib_menu_sync" id="0x7f090053" />
<public type="string" name="lib_menu_search" id="0x7f090054" />
<public type="string" name="lib_menu_settings" id="0x7f090055" />
<public type="string" name="lib_menu_help" id="0x7f090056" />
<public type="string" name="lib_menu_feedback" id="0x7f090057" />
<public type="string" name="lib_menu_info" id="0x7f090058" />
<public type="string" name="lib_menu_view" id="0x7f090059" />
<public type="string" name="lib_menu_list" id="0x7f09005a" />
<public type="string" name="lib_menu_grid" id="0x7f09005b" />
<public type="string" name="lib_menu_delete" id="0x7f09005c" />
<public type="string" name="lib_context_lpr" id="0x7f09005d" />
<public type="string" name="lib_context_beginning" id="0x7f09005e" />
<public type="string" name="lib_context_page" id="0x7f09005f" />
<public type="string" name="lib_context_location" id="0x7f090060" />
<public type="string" name="lib_context_remove" id="0x7f090061" />
<public type="string" name="lib_context_download" id="0x7f090062" />
<public type="string" name="lib_context_extras" id="0x7f090063" />
<public type="string" name="lib_context_keep" id="0x7f090064" />
<public type="string" name="lib_context_dontkeep" id="0x7f090065" />
<public type="string" name="lib_context_cancel_download" id="0x7f090066" />
<public type="string" name="lib_toast_remove_book" id="0x7f090067" />
<public type="string" name="lib_back_issues_row" id="0x7f090068" />
<public type="string" name="lib_grid_back_issues_title" id="0x7f090069" />
<public type="string" name="lib_grid_back_issues_count" id="0x7f09006a" />
<public type="string" name="cover_sample_tag" id="0x7f09006b" />
<public type="string" name="cover_keep_tag" id="0x7f09006c" />
<public type="string" name="no_title" id="0x7f09006d" />
<public type="string" name="downloading_notitle" id="0x7f09006e" />
<public type="string" name="download_interrupted" id="0x7f09006f" />
<public type="string" name="download_paused" id="0x7f090070" />
<public type="string" name="download_queued" id="0x7f090071" />
<public type="string" name="downloading_to_home_notitle" id="0x7f090072" />
<public type="string" name="cannot_download" id="0x7f090073" />
<public type="string" name="full_media_card" id="0x7f090074" />
<public type="string" name="full_device" id="0x7f090075" />
<public type="string" name="try_again" id="0x7f090076" />
<public type="string" name="resume_download" id="0x7f090077" />
<public type="string" name="loading_book" id="0x7f090078" />
<public type="string" name="sort_by_title" id="0x7f090079" />
<public type="string" name="sort_by_author" id="0x7f09007a" />
<public type="string" name="sort_by_recent" id="0x7f09007b" />
<public type="string" name="page_view" id="0x7f09007c" />
<public type="string" name="text_view" id="0x7f09007d" />
<public type="string" name="transient_opening" id="0x7f09007e" />
<public type="string" name="transient_paused" id="0x7f09007f" />
<public type="string" name="transient_interrupted" id="0x7f090080" />
<public type="string" name="transient_queued" id="0x7f090081" />
<public type="string" name="transient_done" id="0x7f090082" />
<public type="string" name="transient_downloading" id="0x7f090083" />
<public type="string" name="download_progress_kb" id="0x7f090084" />
<public type="string" name="download_progress_mb" id="0x7f090085" />
<public type="string" name="download_percentage" id="0x7f090086" />
<public type="string" name="download_zero_percent" id="0x7f090087" />
<public type="string" name="num_back_issues" id="0x7f090088" />
<public type="string" name="single_back_issue" id="0x7f090089" />
<public type="string" name="sortby_dialog_title" id="0x7f09008a" />
<public type="string" name="sortby_recent_option" id="0x7f09008b" />
<public type="string" name="sortby_title_option" id="0x7f09008c" />
<public type="string" name="sortby_author_option" id="0x7f09008d" />
<public type="string" name="registering" id="0x7f09008e" />
<public type="string" name="sign_in" id="0x7f09008f" />
<public type="string" name="login_prompt" id="0x7f090090" />
<public type="string" name="email_prompt" id="0x7f090091" />
<public type="string" name="password_prompt" id="0x7f090092" />
<public type="string" name="forgot_password" id="0x7f090093" />
<public type="string" name="license_agreement" id="0x7f090094" />
<public type="string" name="license_agreement_link" id="0x7f090095" />
<public type="string" name="login_jp_customer" id="0x7f090096" />
<public type="string" name="login_create_account" id="0x7f090097" />
<public type="string" name="no_account" id="0x7f090098" />
<public type="string" name="amazon_jp_message" id="0x7f090099" />
<public type="string" name="logout" id="0x7f09009a" />
<public type="string" name="device_logged_in_as" id="0x7f09009b" />
<public type="string" name="empty_home_archived_items" id="0x7f09009c" />
<public type="string" name="empty_home_shop" id="0x7f09009d" />
<public type="string" name="device_name_template" id="0x7f09009e" />
<public type="string" name="default_device_name_template" id="0x7f09009f" />
<public type="string" name="redding_device_name" id="0x7f0900a0" />
<public type="string" name="whiskeytown_device_name" id="0x7f0900a1" />
<public type="string" name="reader_tips" id="0x7f0900a2" />
<public type="string" name="reader_instructions_turn" id="0x7f0900a3" />
<public type="string" name="reader_instructions_center" id="0x7f0900a4" />
<public type="string" name="reader_instructions_notes" id="0x7f0900a5" />
<public type="string" name="reader_instructions_lock" id="0x7f0900a6" />
<public type="string" name="reader_instructions_more" id="0x7f0900a7" />
<public type="string" name="reader_landscape_right_lock" id="0x7f0900a8" />
<public type="string" name="info_title" id="0x7f0900a9" />
<public type="string" name="about" id="0x7f0900aa" />
<public type="string" name="whats_new_info_item" id="0x7f0900ab" />
<public type="string" name="learn" id="0x7f0900ac" />
<public type="string" name="terms" id="0x7f0900ad" />
<public type="string" name="legal" id="0x7f0900ae" />
<public type="string" name="settings_title" id="0x7f0900af" />
<public type="string" name="account_settings" id="0x7f0900b0" />
<public type="string" name="application_settings" id="0x7f0900b1" />
<public type="string" name="device_name" id="0x7f0900b2" />
<public type="string" name="whispersend_email_address" id="0x7f0900b3" />
<public type="string" name="not_logged_in" id="0x7f0900b4" />
<public type="string" name="logged_in_as" id="0x7f0900b5" />
<public type="string" name="logout_device" id="0x7f0900b6" />
<public type="string" name="logout_progress" id="0x7f0900b7" />
<public type="string" name="login" id="0x7f0900b8" />
<public type="string" name="volume_keys" id="0x7f0900b9" />
<public type="string" name="volume_keys_detail" id="0x7f0900ba" />
<public type="string" name="several_bug_fixes" id="0x7f0900bb" />
<public type="string" name="whats_new_title" id="0x7f0900bc" />
<public type="string" name="whats_new_351" id="0x7f0900bd" />
<public type="string" name="whats_new_351_0" id="0x7f0900be" />
<public type="string" name="whats_new_350" id="0x7f0900bf" />
<public type="string" name="whats_new_350_2" id="0x7f0900c0" />
<public type="string" name="whats_new_350_3" id="0x7f0900c1" />
<public type="string" name="whats_new_350_4" id="0x7f0900c2" />
<public type="string" name="whats_new_350_5" id="0x7f0900c3" />
<public type="string" name="whats_new_342" id="0x7f0900c4" />
<public type="string" name="whats_new_342_0" id="0x7f0900c5" />
<public type="string" name="whats_new_342_1" id="0x7f0900c6" />
<public type="string" name="whats_new_341" id="0x7f0900c7" />
<public type="string" name="whats_new_341_0" id="0x7f0900c8" />
<public type="string" name="whats_new_340" id="0x7f0900c9" />
<public type="string" name="whats_new_340_0" id="0x7f0900ca" />
<public type="string" name="whats_new_340_1" id="0x7f0900cb" />
<public type="string" name="whats_new_340_2" id="0x7f0900cc" />
<public type="string" name="whats_new_340_3" id="0x7f0900cd" />
<public type="string" name="whats_new_330" id="0x7f0900ce" />
<public type="string" name="whats_new_330_0" id="0x7f0900cf" />
<public type="string" name="whats_new_330_1" id="0x7f0900d0" />
<public type="string" name="whats_new_330_2" id="0x7f0900d1" />
<public type="string" name="whats_new_330_3" id="0x7f0900d2" />
<public type="string" name="whats_new_320" id="0x7f0900d3" />
<public type="string" name="whats_new_320_0" id="0x7f0900d4" />
<public type="string" name="whats_new_320_1" id="0x7f0900d5" />
<public type="string" name="whats_new_310" id="0x7f0900d6" />
<public type="string" name="whats_new_310_0" id="0x7f0900d7" />
<public type="string" name="whats_new_310_1" id="0x7f0900d8" />
<public type="string" name="whats_new_310_2" id="0x7f0900d9" />
<public type="string" name="whats_new_310_3" id="0x7f0900da" />
<public type="string" name="whats_new_300" id="0x7f0900db" />
<public type="string" name="whats_new_300_0" id="0x7f0900dc" />
<public type="string" name="whats_new_300_1" id="0x7f0900dd" />
<public type="string" name="whats_new_300_2" id="0x7f0900de" />
<public type="string" name="whats_new_300_3" id="0x7f0900df" />
<public type="string" name="whats_new_300_4" id="0x7f0900e0" />
<public type="string" name="whats_new_300_5" id="0x7f0900e1" />
<public type="string" name="whats_new_300_6" id="0x7f0900e2" />
<public type="string" name="whats_new_200" id="0x7f0900e3" />
<public type="string" name="whats_new_200_0" id="0x7f0900e4" />
<public type="string" name="whats_new_200_1" id="0x7f0900e5" />
<public type="string" name="whats_new_200_2" id="0x7f0900e6" />
<public type="string" name="whats_new_200_3" id="0x7f0900e7" />
<public type="string" name="whats_new_200_4" id="0x7f0900e8" />
<public type="string" name="whats_new_110" id="0x7f0900e9" />
<public type="string" name="whats_new_110_0" id="0x7f0900ea" />
<public type="string" name="whats_new_110_1" id="0x7f0900eb" />
<public type="string" name="whats_new_110_2" id="0x7f0900ec" />
<public type="string" name="whats_new_110_3" id="0x7f0900ed" />
<public type="string" name="whats_new_110_4" id="0x7f0900ee" />
<public type="string" name="whats_new_110_5" id="0x7f0900ef" />
<public type="string" name="whats_new_100" id="0x7f0900f0" />
<public type="string" name="whats_new_100_0" id="0x7f0900f1" />
<public type="string" name="whats_new_100_1" id="0x7f0900f2" />
<public type="string" name="whats_new_100_2" id="0x7f0900f3" />
<public type="string" name="whats_new_100_3" id="0x7f0900f4" />
<public type="string" name="whats_new_100_4" id="0x7f0900f5" />
<public type="string" name="whats_new_100_5" id="0x7f0900f6" />
<public type="string" name="software_update_title" id="0x7f0900f7" />
<public type="string" name="software_update_message" id="0x7f0900f8" />
<public type="string" name="software_update_link_title" id="0x7f0900f9" />
<public type="string" name="software_update_cancel_title" id="0x7f0900fa" />
<public type="string" name="about_title" id="0x7f0900fb" />
<public type="string" name="app_copyright" id="0x7f0900fc" />
<public type="string" name="android_section" id="0x7f0900fd" />
<public type="string" name="android_sdk_version" id="0x7f0900fe" />
<public type="string" name="android_api_level" id="0x7f0900ff" />
<public type="string" name="cpu_section" id="0x7f090100" />
<public type="string" name="cpu_processors" id="0x7f090101" />
<public type="string" name="cpu_min_speed" id="0x7f090102" />
<public type="string" name="cpu_max_speed" id="0x7f090103" />
<public type="string" name="ram_section" id="0x7f090104" />
<public type="string" name="ram_total_physical" id="0x7f090105" />
<public type="string" name="ram_max_memory" id="0x7f090106" />
<public type="string" name="storage_section" id="0x7f090107" />
<public type="string" name="storage_data_total" id="0x7f090108" />
<public type="string" name="storage_data_available" id="0x7f090109" />
<public type="string" name="storage_ext_state" id="0x7f09010a" />
<public type="string" name="storage_ext_total" id="0x7f09010b" />
<public type="string" name="storage_ext_available" id="0x7f09010c" />
<public type="string" name="display_section" id="0x7f09010d" />
<public type="string" name="display_resolution" id="0x7f09010e" />
<public type="string" name="display_diagonal" id="0x7f09010f" />
<public type="string" name="display_size" id="0x7f090110" />
<public type="string" name="display_density" id="0x7f090111" />
<public type="string" name="current_location" id="0x7f090112" />
<public type="string" name="current_page" id="0x7f090113" />
<public type="string" name="current_page_location" id="0x7f090114" />
<public type="string" name="article_page_runner" id="0x7f090115" />
<public type="string" name="sync_same_page_read" id="0x7f090116" />
<public type="string" name="sync_lpr_choice" id="0x7f090117" />
<public type="string" name="sync_lpr_choice_page" id="0x7f090118" />
<public type="string" name="sync_lpr_choice_with_source" id="0x7f090119" />
<public type="string" name="sync_lpr_choice_page_with_source" id="0x7f09011a" />
<public type="string" name="adding_bookmark" id="0x7f09011b" />
<public type="string" name="removing_bookmark" id="0x7f09011c" />
<public type="string" name="menuitem_home" id="0x7f09011d" />
<public type="string" name="menuitem_viewoptions" id="0x7f09011e" />
<public type="string" name="menuitem_goto" id="0x7f09011f" />
<public type="string" name="menuitem_back" id="0x7f090120" />
<public type="string" name="menuitem_search" id="0x7f090121" />
<public type="string" name="menuitem_sync" id="0x7f090122" />
<public type="string" name="menuitem_bookmark" id="0x7f090123" />
<public type="string" name="menuitem_share_progress" id="0x7f090124" />
<public type="string" name="menuitem_two_page" id="0x7f090125" />
<public type="string" name="menuitem_book_menu" id="0x7f090126" />
<public type="string" name="share_untitled_subject" id="0x7f090127" />
<public type="string" name="share_progress_title" id="0x7f090128" />
<public type="string" name="share_start_title_author" id="0x7f090129" />
<public type="string" name="share_start_title" id="0x7f09012a" />
<public type="string" name="share_start_author" id="0x7f09012b" />
<public type="string" name="share_start" id="0x7f09012c" />
<public type="string" name="share_end_title_author" id="0x7f09012d" />
<public type="string" name="share_end_title" id="0x7f09012e" />
<public type="string" name="share_end_author" id="0x7f09012f" />
<public type="string" name="share_end" id="0x7f090130" />
<public type="string" name="share_reading_percent_title_author" id="0x7f090131" />
<public type="string" name="share_reading_percent_title" id="0x7f090132" />
<public type="string" name="share_reading_percent_author" id="0x7f090133" />
<public type="string" name="share_reading_percent" id="0x7f090134" />
<public type="string" name="section_list_title" id="0x7f090135" />
<public type="string" name="all_sections_title" id="0x7f090136" />
<public type="string" name="num_articles_single" id="0x7f090137" />
<public type="string" name="num_articles_plural" id="0x7f090138" />
<public type="string" name="menuitem_sections" id="0x7f090139" />
<public type="string" name="menuitem_keep" id="0x7f09013a" />
<public type="string" name="menuitem_dontkeep" id="0x7f09013b" />
<public type="string" name="menuitem_topnews" id="0x7f09013c" />
<public type="string" name="menuitem_topstories" id="0x7f09013d" />
<public type="string" name="menuitem_articles" id="0x7f09013e" />
<public type="string" name="menuitem_prev_article" id="0x7f09013f" />
<public type="string" name="menuitem_next_article" id="0x7f090140" />
<public type="string" name="prev_article" id="0x7f090141" />
<public type="string" name="all_articles" id="0x7f090142" />
<public type="string" name="next_article" id="0x7f090143" />
<public type="string" name="alert_dialog_keep" id="0x7f090144" />
<public type="string" name="alert_dialog_dontkeep" id="0x7f090145" />
<public type="string" name="notification_downloaded" id="0x7f090146" />
<public type="string" name="notification_download_failed" id="0x7f090147" />
<public type="string" name="white" id="0x7f090148" />
<public type="string" name="sepia" id="0x7f090149" />
<public type="string" name="black" id="0x7f09014a" />
<public type="string" name="auto_brightness_enabled" id="0x7f09014b" />
<public type="string" name="view_options_font_tab_title" id="0x7f09014c" />
<public type="string" name="view_options_typeface_tab_title" id="0x7f09014d" />
<public type="string" name="goto_beginning" id="0x7f09014e" />
<public type="string" name="goto_toc" id="0x7f09014f" />
<public type="string" name="goto_book_extras" id="0x7f090150" />
<public type="string" name="goto_cover" id="0x7f090151" />
<public type="string" name="goto_location" id="0x7f090152" />
<public type="string" name="goto_page" id="0x7f090153" />
<public type="string" name="goto_notes" id="0x7f090154" />
<public type="string" name="location_title" id="0x7f090155" />
<public type="string" name="location_current" id="0x7f090156" />
<public type="string" name="page_title" id="0x7f090157" />
<public type="string" name="page_current" id="0x7f090158" />
<public type="string" name="notes_title" id="0x7f090159" />
<public type="string" name="notes_location_type" id="0x7f09015a" />
<public type="string" name="notes_page_type" id="0x7f09015b" />
<public type="string" name="notes_bookmark" id="0x7f09015c" />
<public type="string" name="notes_note" id="0x7f09015d" />
<public type="string" name="notes_highlight" id="0x7f09015e" />
<public type="string" name="note_view_title" id="0x7f09015f" />
<public type="string" name="note_view_title_page" id="0x7f090160" />
<public type="string" name="note_view_title_pdf" id="0x7f090161" />
<public type="string" name="book_menu_notes_location_type" id="0x7f090162" />
<public type="string" name="book_menu_notes_page_type" id="0x7f090163" />
<public type="string" name="notes_context_title_location" id="0x7f090164" />
<public type="string" name="notes_context_title_page" id="0x7f090165" />
<public type="string" name="notes_context_view" id="0x7f090166" />
<public type="string" name="notes_context_edit" id="0x7f090167" />
<public type="string" name="notes_context_delete" id="0x7f090168" />
<public type="string" name="annotation_text_selection" id="0x7f090169" />
<public type="string" name="annotation_image_selection" id="0x7f09016a" />
<public type="string" name="annotation_note" id="0x7f09016b" />
<public type="string" name="annotation_highlight" id="0x7f09016c" />
<public type="string" name="annotation_delete_highlight" id="0x7f09016d" />
<public type="string" name="annotation_more_options" id="0x7f09016e" />
<public type="string" name="annotation_image_zoom" id="0x7f09016f" />
<public type="string" name="annotation_search" id="0x7f090170" />
<public type="string" name="annotation_search_in_book" id="0x7f090171" />
<public type="string" name="annotation_share" id="0x7f090172" />
<public type="string" name="annotation_wikipedia" id="0x7f090173" />
<public type="string" name="annotation_web" id="0x7f090174" />
<public type="string" name="annotation_more_search" id="0x7f090175" />
<public type="string" name="annotation_more_wikipedia" id="0x7f090176" />
<public type="string" name="annotation_more_web" id="0x7f090177" />
<public type="string" name="annotation_verify_delete_title" id="0x7f090178" />
<public type="string" name="annotation_verify_delete_message" id="0x7f090179" />
<public type="string" name="error" id="0x7f09017a" />
<public type="string" name="error_title_date" id="0x7f09017b" />
<public type="string" name="error_message_date" id="0x7f09017c" />
<public type="string" name="error_title_connection" id="0x7f09017d" />
<public type="string" name="error_message_connection" id="0x7f09017e" />
<public type="string" name="error_store_message_connection" id="0x7f09017f" />
<public type="string" name="error_title_buy" id="0x7f090180" />
<public type="string" name="error_message_buy" id="0x7f090181" />
<public type="string" name="error_title_customer_not_found" id="0x7f090182" />
<public type="string" name="error_message_customer_not_found" id="0x7f090183" />
<public type="string" name="error_title_download_content" id="0x7f090184" />
<public type="string" name="error_message_download_content" id="0x7f090185" />
<public type="string" name="error_title_credit_card" id="0x7f090186" />
<public type="string" name="error_message_credit_card" id="0x7f090187" />
<public type="string" name="error_title_device_already_registered" id="0x7f090188" />
<public type="string" name="error_message_device_already_registered" id="0x7f090189" />
<public type="string" name="error_title_credentials_required" id="0x7f09018a" />
<public type="string" name="error_message_credentials_required" id="0x7f09018b" />
<public type="string" name="error_title_duplicate_device_name" id="0x7f09018c" />
<public type="string" name="error_message_duplicate_device_name" id="0x7f09018d" />
<public type="string" name="error_title_server" id="0x7f09018e" />
<public type="string" name="error_message_server" id="0x7f09018f" />
<public type="string" name="error_title_open_book" id="0x7f090190" />
<public type="string" name="error_message_open_book" id="0x7f090191" />
<public type="string" name="error_title_unbuy" id="0x7f090192" />
<public type="string" name="error_message_unbuy" id="0x7f090193" />
<public type="string" name="error_title_invalid_asin" id="0x7f090194" />
<public type="string" name="error_message_invalid_asin" id="0x7f090195" />
<public type="string" name="error_title_unknown" id="0x7f090196" />
<public type="string" name="error_message_unknown" id="0x7f090197" />
<public type="string" name="sync_failed" id="0x7f090198" />
<public type="string" name="sync_cancelled" id="0x7f090199" />
<public type="string" name="sync_full_in_progress" id="0x7f09019a" />
<public type="string" name="sync_full_success" id="0x7f09019b" />
<public type="string" name="sync_full_error" id="0x7f09019c" />
<public type="string" name="sync_full_canceled" id="0x7f09019d" />
<public type="string" name="sync_upload_in_progress" id="0x7f09019e" />
<public type="string" name="sync_upload_success" id="0x7f09019f" />
<public type="string" name="sync_upload_error" id="0x7f0901a0" />
<public type="string" name="sync_upload_canceled" id="0x7f0901a1" />
<public type="string" name="sync_download_in_progress" id="0x7f0901a2" />
<public type="string" name="sync_download_success" id="0x7f0901a3" />
<public type="string" name="sync_download_error" id="0x7f0901a4" />
<public type="string" name="sync_download_canceled" id="0x7f0901a5" />
<public type="string" name="sync_metadata_in_progress" id="0x7f0901a6" />
<public type="string" name="sync_metadata_success" id="0x7f0901a7" />
<public type="string" name="sync_metadata_error" id="0x7f0901a8" />
<public type="string" name="sync_metadata_canceled" id="0x7f0901a9" />
<public type="string" name="book_menu_sync" id="0x7f0901aa" />
<public type="string" name="search_hint" id="0x7f0901ab" />
<public type="string" name="search_voice_invoke" id="0x7f0901ac" />
<public type="string" name="search_global_description" id="0x7f0901ad" />
<public type="string" name="search_results_in" id="0x7f0901ae" />
<public type="string" name="search_header" id="0x7f0901af" />
<public type="string" name="reader_search_hint" id="0x7f0901b0" />
<public type="string" name="reader_search_voice_invoke" id="0x7f0901b1" />
<public type="string" name="reader_search_global_description" id="0x7f0901b2" />
<public type="string" name="reader_searching" id="0x7f0901b3" />
<public type="string" name="reader_search_result" id="0x7f0901b4" />
<public type="string" name="reader_search_results" id="0x7f0901b5" />
<public type="string" name="reader_search_results_too_many" id="0x7f0901b6" />
<public type="string" name="reader_search_stopped" id="0x7f0901b7" />
<public type="string" name="reader_search_location" id="0x7f0901b8" />
<public type="string" name="reader_search_page" id="0x7f0901b9" />
<public type="string" name="reader_search_current_location_absolute" id="0x7f0901ba" />
<public type="string" name="reader_search_current_page_absolute" id="0x7f0901bb" />
<public type="string" name="reader_search_current_location_relative" id="0x7f0901bc" />
<public type="string" name="reader_search_narrow_your_search" id="0x7f0901bd" />
<public type="string" name="reader_search_switchview_title" id="0x7f0901be" />
<public type="string" name="reader_search_switchview_body" id="0x7f0901bf" />
<public type="string" name="reader_search_not_available" id="0x7f0901c0" />
<public type="string" name="web_home" id="0x7f0901c1" />
<public type="string" name="web_book" id="0x7f0901c2" />
<public type="string" name="reader_soft_back" id="0x7f0901c3" />
<public type="string" name="dictionary_not_available_title" id="0x7f0901c4" />
<public type="string" name="dictionary_not_available_message" id="0x7f0901c5" />
<public type="string" name="dictionary_not_available_button" id="0x7f0901c6" />
<public type="string" name="dictionary_corrupt_title" id="0x7f0901c7" />
<public type="string" name="dictionary_corrupt_message" id="0x7f0901c8" />
<public type="string" name="dictionary_corrupt_button" id="0x7f0901c9" />
<public type="string" name="dictionary_downloading_title" id="0x7f0901ca" />
<public type="string" name="dictionary_downloading_message" id="0x7f0901cb" />
<public type="string" name="dictionary_download_failed_title" id="0x7f0901cc" />
<public type="string" name="dictionary_download_failed_button" id="0x7f0901cd" />
<public type="string" name="definition_not_available_title" id="0x7f0901ce" />
<public type="string" name="definition_google" id="0x7f0901cf" />
<public type="string" name="definition_wikipedia" id="0x7f0901d0" />
<public type="string" name="definition_dictionary" id="0x7f0901d1" />
<public type="string" name="easter_egg_toast" id="0x7f0901d2" />
<public type="string" name="command_succeeded" id="0x7f0901d3" />
<public type="string" name="fatal_screen_title" id="0x7f0901d4" />
<public type="string" name="fatal_screen_message" id="0x7f0901d5" />
<public type="string" name="fatal_screen_button" id="0x7f0901d6" />
<public type="string" name="widget_currently_reading_name" id="0x7f0901d7" />
<public type="string" name="widget_empty_msg" id="0x7f0901d8" />
<public type="string" name="recommendations_loading" id="0x7f0901d9" />
<public type="string" name="recommendations_title" id="0x7f0901da" />
<public type="string" name="recommendations_title_short" id="0x7f0901db" />
<public type="string" name="editors_picks_title" id="0x7f0901dc" />
<public type="string" name="editors_picks_title_short" id="0x7f0901dd" />
<public type="string" name="best_sellers_title" id="0x7f0901de" />
<public type="string" name="best_sellers_title_short" id="0x7f0901df" />
<public type="string" name="recommendations_instruction_message" id="0x7f0901e0" />
<public type="string" name="recommendations_instruction_action" id="0x7f0901e1" />
<public type="string" name="recommendations_no_connection_message" id="0x7f0901e2" />
<public type="string" name="recommendations_no_connection_action" id="0x7f0901e3" />
<public type="string" name="no_books" id="0x7f0901e4" />
<public type="string" name="last_read" id="0x7f0901e5" />
<public type="string" name="new_book_label" id="0x7f0901e6" />
<public type="string" name="store_promo_header" id="0x7f0901e7" />
<public type="string" name="store_promo_subheader" id="0x7f0901e8" />
<public type="string" name="store_promo_disclaimer" id="0x7f0901e9" />
<public type="string" name="content_permissions_label" id="0x7f0901ea" />
<public type="string" name="content_permissions_description" id="0x7f0901eb" />
<public type="string" name="store_access_permissions_label" id="0x7f0901ec" />
<public type="string" name="store_access_permissions_description" id="0x7f0901ed" />
<public type="string" name="prefetch_covers" id="0x7f0901ee" />
<public type="string" name="DMS_ERROR_CODE_INVALID_RESPONSE" id="0x7f0901ef" />
<public type="string" name="DMS_EXCHANGE_ERROR_CUSTOMER_NOT_FOUND" id="0x7f0901f0" />
<public type="string" name="DMS_ERROR_CODE_NETWORK_ERROR" id="0x7f0901f1" />
<public type="string" name="DMS_EXCHANGE_ERROR_AUTHENTICATION_FAILED" id="0x7f0901f2" />
<public type="string" name="DMS_ERROR_CODE_BAD_REQUEST" id="0x7f0901f3" />
<public type="string" name="line_spacing_label_text" id="0x7f0901f4" />
<public type="string" name="margins_label_text" id="0x7f0901f5" />
<public type="string" name="color_mode_label_text" id="0x7f0901f6" />
<public type="string" name="fix_try_again" id="0x7f0901f7" />
<public type="string" name="fix_purchase" id="0x7f0901f8" />
<public type="string" name="fix_network_settings" id="0x7f0901f9" />
<public type="string" name="download_cancel" id="0x7f0901fa" />
<public type="string" name="error_file_system_full_desc" id="0x7f0901fb" />
<public type="string" name="error_file_system_full_title" id="0x7f0901fc" />
<public type="string" name="error_license_limit_desc" id="0x7f0901fd" />
<public type="string" name="error_license_limit_title" id="0x7f0901fe" />
<public type="string" name="error_network_issue_desc" id="0x7f0901ff" />
<public type="string" name="error_network_issue_title" id="0x7f090200" />
<public type="string" name="error_generic_desc" id="0x7f090201" />
<public type="string" name="error_generic_title" id="0x7f090202" />
<public type="string" name="error_document_open_failure_desc" id="0x7f090203" />
<public type="string" name="error_document_open_failure_title" id="0x7f090204" />
<public type="string" name="k4o_need_registration" id="0x7f090205" />
<public type="string" name="k4o_successfull_registration" id="0x7f090206" />
<public type="string" name="k4o_error_during_registration" id="0x7f090207" />
<public type="string" name="typeface_unavailable_text" id="0x7f090208" />
<public type="string" name="view_options_unavailable_text" id="0x7f090209" />
<public type="string" name="annotation_low_space_title" id="0x7f09020a" />
<public type="string" name="annotation_low_space_message" id="0x7f09020b" />
<public type="string" name="japanese" id="0x7f09020c" />
<public type="string" name="british_english" id="0x7f09020d" />
<public type="string" name="german" id="0x7f09020e" />
<public type="string" name="french" id="0x7f09020f" />
<public type="string" name="spanish" id="0x7f090210" />
<public type="string" name="italian" id="0x7f090211" />
<public type="string" name="brazilian_portuguese" id="0x7f090212" />
<public type="string" name="english_japanese" id="0x7f090213" />
<public type="string" name="english" id="0x7f090214" />
<public type="string" name="default_associate_tag" id="0x7f090215" />
<public type="string" name="pdf_tile_loading" id="0x7f090216" />
<public type="string" name="default_logger_tag" id="0x7f090217" />
<public type="string" name="share_app_link" id="0x7f090221" />
<public type="string" name="shelfari_asin_url" id="0x7f090222" />
<public type="string" name="google_search_url" id="0x7f090223" />
<public type="string" name="menuitem_add_bookmark" id="0x7f090218" />
<public type="string" name="menuitem_remove_bookmark" id="0x7f090219" />
<public type="string" name="menuitem_reader_store" id="0x7f09021a" />
<public type="string" name="download_progress_bullet" id="0x7f09021b" />
<public type="string" name="font_size_options" id="0x7f09021c" />
<public type="string" name="colors_and_brightness" id="0x7f09021d" />
<public type="string" name="whats_new_350_0a" id="0x7f09021e" />
<public type="string" name="whats_new_350_0b" id="0x7f09021f" />
<public type="string" name="whats_new_350_1" id="0x7f090220" />
<public type="color" name="default_icon" id="0x7f0a0000" />
<public type="color" name="default_selected_icon" id="0x7f0a0001" />
<public type="color" name="white_mode_text" id="0x7f0a0002" />
<public type="color" name="white_mode_text_secondary" id="0x7f0a0003" />
<public type="color" name="white_mode_background" id="0x7f0a0004" />
<public type="color" name="white_mode_highlight" id="0x7f0a0005" />
<public type="color" name="white_mode_search_border" id="0x7f0a0006" />
<public type="color" name="white_mode_link" id="0x7f0a0007" />
<public type="color" name="white_mode_note" id="0x7f0a0008" />
<public type="color" name="white_mode_icon" id="0x7f0a0009" />
<public type="color" name="white_mode_selected_icon" id="0x7f0a000a" />
<public type="color" name="black_mode_text" id="0x7f0a000b" />
<public type="color" name="black_mode_text_secondary" id="0x7f0a000c" />
<public type="color" name="black_mode_background" id="0x7f0a000d" />
<public type="color" name="black_mode_highlight" id="0x7f0a000e" />
<public type="color" name="black_mode_search_border" id="0x7f0a000f" />
<public type="color" name="black_mode_link" id="0x7f0a0010" />
<public type="color" name="black_mode_note" id="0x7f0a0011" />
<public type="color" name="black_mode_icon" id="0x7f0a0012" />
<public type="color" name="black_mode_selected_icon" id="0x7f0a0013" />
<public type="color" name="sepia_mode_text" id="0x7f0a0014" />
<public type="color" name="sepia_mode_text_secondary" id="0x7f0a0015" />
<public type="color" name="sepia_mode_background" id="0x7f0a0016" />
<public type="color" name="sepia_mode_highlight" id="0x7f0a0017" />
<public type="color" name="sepia_mode_search_border" id="0x7f0a0018" />
<public type="color" name="sepia_mode_link" id="0x7f0a0019" />
<public type="color" name="sepia_mode_note" id="0x7f0a001a" />
<public type="color" name="sepia_mode_icon" id="0x7f0a001b" />
<public type="color" name="sepia_mode_selected_icon" id="0x7f0a001c" />
<public type="color" name="articles_accent_color" id="0x7f0a001d" />
<public type="color" name="lib_book_divider" id="0x7f0a001e" />
<public type="color" name="transparent" id="0x7f0a001f" />
<public type="color" name="android_default_background" id="0x7f0a0020" />
<public type="color" name="black" id="0x7f0a0021" />
<public type="color" name="white" id="0x7f0a0022" />
<public type="color" name="dark_gray" id="0x7f0a0023" />
<public type="color" name="gray" id="0x7f0a0024" />
<public type="color" name="light_gray" id="0x7f0a0025" />
<public type="color" name="ultralight_grey" id="0x7f0a0026" />
<public type="color" name="amazon_orange" id="0x7f0a0027" />
<public type="color" name="amazon_blue" id="0x7f0a0028" />
<public type="color" name="amazon_grey" id="0x7f0a0029" />
<public type="color" name="text_default" id="0x7f0a002a" />
<public type="color" name="selection_default" id="0x7f0a002b" />
<public type="color" name="selection_handle" id="0x7f0a002c" />
<public type="color" name="overlay" id="0x7f0a002d" />
<public type="color" name="dark_overlay" id="0x7f0a002e" />
<public type="color" name="titlebar_gradient_start" id="0x7f0a002f" />
<public type="color" name="titlebar_gradient_end" id="0x7f0a0030" />
<public type="color" name="titlebar_togglebutton_disabled_gradient_star t" id="0x7f0a0031" />
<public type="color" name="titlebar_togglebutton_disabled_gradient_end" id="0x7f0a0032" />
<public type="color" name="link_text_color_normal" id="0x7f0a0033" />
<public type="color" name="link_text_color_focused" id="0x7f0a0034" />
<public type="color" name="link_background_color_normal" id="0x7f0a0035" />
<public type="color" name="link_background_color_focused" id="0x7f0a0036" />
<public type="color" name="link_background_color_pressed" id="0x7f0a0037" />
<public type="color" name="visual_separator" id="0x7f0a0038" />
<public type="color" name="medium_transparent_black" id="0x7f0a0039" />
<public type="color" name="reader_text_white" id="0x7f0a003a" />
<public type="color" name="reader_text_brown" id="0x7f0a003b" />
<public type="color" name="reader_text_black" id="0x7f0a003c" />
<public type="color" name="periodical_view_separator_color" id="0x7f0a003d" />
<public type="color" name="library_filter_item_selected_color" id="0x7f0a003e" />
<public type="color" name="periodical_article_selected_color" id="0x7f0a003f" />
<public type="color" name="library_navigation_bar_background" id="0x7f0a0040" />
<public type="color" name="last_read_text" id="0x7f0a0041" />
<public type="color" name="last_read_background" id="0x7f0a0042" />
<public type="color" name="selection_more_button_text_color" id="0x7f0a0043" />
<public type="color" name="pdf_background" id="0x7f0a0044" />
<public type="color" name="store_webview_bg_color" id="0x7f0a0045" />
<public type="color" name="separator_bevel_dark" id="0x7f0a0046" />
<public type="color" name="separator_bevel_light" id="0x7f0a0047" />
<public type="color" name="webview_background" id="0x7f0a0048" />
<public type="color" name="articlelist_magazine_article_bgcolor_default " id="0x7f0a0049" />
<public type="color" name="articlelist_magazine_article_bgcolor_selecte d" id="0x7f0a004a" />
<public type="color" name="articlelist_magazine_article_textcolor_defau lt" id="0x7f0a004b" />
<public type="color" name="articlelist_magazine_article_textcolor_read" id="0x7f0a004c" />
<public type="color" name="articlelist_magazine_section_bgcolor" id="0x7f0a004d" />
<public type="color" name="articlelist_magazine_section_textcolor" id="0x7f0a004e" />
<public type="color" name="articlelist_newspaper_article_bgcolor_defaul t" id="0x7f0a004f" />
<public type="color" name="articlelist_newspaper_article_bgcolor_select ed" id="0x7f0a0050" />
<public type="color" name="articlelist_newspaper_article_textcolor_defa ult" id="0x7f0a0051" />
<public type="color" name="articlelist_newspaper_article_textcolor_read " id="0x7f0a0052" />
<public type="color" name="articlelist_newspaper_section_bgcolor" id="0x7f0a0053" />
<public type="color" name="articlelist_newspaper_section_textcolor" id="0x7f0a0054" />
<public type="color" name="articlelist_newspaper_article_listdivider" id="0x7f0a0055" />
<public type="color" name="cover_overlay_gradient_start" id="0x7f0a0056" />
<public type="color" name="cover_overlay_gradient_end" id="0x7f0a0057" />
<public type="color" name="book_menu_button_text_color" id="0x7f0a0058" />
<public type="color" name="link_background_selector" id="0x7f0a0059" />
<public type="color" name="link_text_selector" id="0x7f0a005a" />
<public type="color" name="navigation_bar_text_selector" id="0x7f0a005b" />
<public type="color" name="periodical_selector_subtle" id="0x7f0a005c" />
<public type="color" name="section_row_articles_text_selector" id="0x7f0a005d" />
<public type="color" name="section_row_title_text_selector" id="0x7f0a005e" />
<public type="color" name="sign_in_link_selector" id="0x7f0a005f" />
<public type="dimen" name="selection_button_marker_top_inset" id="0x7f0b0000" />
<public type="dimen" name="selection_button_marker_bottom_inset" id="0x7f0b0001" />
<public type="dimen" name="row_separator_height" id="0x7f0b0002" />
<public type="dimen" name="default_padding" id="0x7f0b0003" />
<public type="dimen" name="padding_small" id="0x7f0b0004" />
<public type="dimen" name="padding_extra_small" id="0x7f0b0005" />
<public type="dimen" name="padding_icon_selector_right" id="0x7f0b0006" />
<public type="dimen" name="view_options_row_padding" id="0x7f0b0007" />
<public type="dimen" name="library_list_divider_height" id="0x7f0b0008" />
<public type="dimen" name="library_grid_cover_width" id="0x7f0b0009" />
<public type="dimen" name="library_grid_cover_height" id="0x7f0b000a" />
<public type="dimen" name="library_grid_horizontal_spacing" id="0x7f0b000b" />
<public type="dimen" name="library_grid_vertical_spacing" id="0x7f0b000c" />
<public type="dimen" name="library_gallery_cover_width" id="0x7f0b000d" />
<public type="dimen" name="library_gallery_cover_height" id="0x7f0b000e" />
<public type="dimen" name="library_gallery_spacing" id="0x7f0b000f" />
<public type="dimen" name="library_cover_width" id="0x7f0b0010" />
<public type="dimen" name="library_cover_height" id="0x7f0b0011" />
<public type="dimen" name="library_cover_horizontal_padding" id="0x7f0b0012" />
<public type="dimen" name="library_cover_vertical_padding" id="0x7f0b0013" />
<public type="dimen" name="library_cover_cloud_vertical_padding" id="0x7f0b0014" />
<public type="dimen" name="library_cover_cloud_horizontal_padding" id="0x7f0b0015" />
<public type="dimen" name="library_cover_title_text_size" id="0x7f0b0016" />
<public type="dimen" name="library_cover_subtitle_text_size" id="0x7f0b0017" />
<public type="dimen" name="library_cover_sample_text_size" id="0x7f0b0018" />
<public type="dimen" name="library_cover_keep_right_margin" id="0x7f0b0019" />
<public type="dimen" name="library_book_row_height" id="0x7f0b001a" />
<public type="dimen" name="library_book_row_margin_left" id="0x7f0b001b" />
<public type="dimen" name="library_book_row_margin_right" id="0x7f0b001c" />
<public type="dimen" name="library_book_row_cover_container_width" id="0x7f0b001d" />
<public type="dimen" name="library_book_row_title_text_size" id="0x7f0b001e" />
<public type="dimen" name="library_book_row_author_text_size" id="0x7f0b001f" />
<public type="dimen" name="library_book_row_downloading_text_size" id="0x7f0b0020" />
<public type="dimen" name="library_book_row_reading_progress_dot_spacin g" id="0x7f0b0021" />
<public type="dimen" name="article_list_row_height" id="0x7f0b0022" />
<public type="dimen" name="article_list_thumbnail_width" id="0x7f0b0023" />
<public type="dimen" name="article_list_thumbnail_height" id="0x7f0b0024" />
<public type="dimen" name="article_list_side_padding" id="0x7f0b0025" />
<public type="dimen" name="article_list_row_image_padding" id="0x7f0b0026" />
<public type="dimen" name="article_list_vertical_separator_vert_padding " id="0x7f0b0027" />
<public type="dimen" name="sync_text_size_portrait" id="0x7f0b0028" />
<public type="dimen" name="sync_height_portrait" id="0x7f0b0029" />
<public type="dimen" name="sync_padding_portrait" id="0x7f0b002a" />
<public type="dimen" name="sync_progress_size_portrait" id="0x7f0b002b" />
<public type="dimen" name="sync_text_size_landscape" id="0x7f0b002c" />
<public type="dimen" name="sync_height_landscape" id="0x7f0b002d" />
<public type="dimen" name="sync_padding_landscape" id="0x7f0b002e" />
<public type="dimen" name="sync_progress_size_landscape" id="0x7f0b002f" />
<public type="dimen" name="periodical_top_margin" id="0x7f0b0030" />
<public type="dimen" name="periodical_title_offset_from_top" id="0x7f0b0031" />
<public type="dimen" name="periodical_bottom_margin" id="0x7f0b0032" />
<public type="dimen" name="periodical_min_location_container_width" id="0x7f0b0033" />
<public type="dimen" name="reader_title_offset_from_top" id="0x7f0b0034" />
<public type="dimen" name="reader_top_margin" id="0x7f0b0035" />
<public type="dimen" name="reader_bottom_margin" id="0x7f0b0036" />
<public type="dimen" name="reader_bookmark_corner_size" id="0x7f0b0037" />
<public type="dimen" name="pdf_reader_bookmark_width" id="0x7f0b0038" />
<public type="dimen" name="pdf_reader_bookmark_height" id="0x7f0b0039" />
<public type="dimen" name="reader_max_line_width" id="0x7f0b003a" />
<public type="dimen" name="dotted_button_dot_margin" id="0x7f0b003b" />
<public type="dimen" name="view_options_shadow_width" id="0x7f0b003c" />
<public type="dimen" name="widget_progress_dot_spacing" id="0x7f0b003d" />
<public type="dimen" name="definition_container_background_radius" id="0x7f0b003e" />
<public type="dimen" name="definition_container_background_padding" id="0x7f0b003f" />
<public type="dimen" name="periodical_view_separator_size" id="0x7f0b0040" />
<public type="dimen" name="definiton_popup_width" id="0x7f0b0041" />
<public type="dimen" name="definiton_popup_height" id="0x7f0b0042" />
<public type="dimen" name="definition_top_margin" id="0x7f0b0043" />
<public type="dimen" name="definiton_popup_font_size" id="0x7f0b0044" />
<public type="dimen" name="cover_scroll_view_margin" id="0x7f0b0045" />
<public type="dimen" name="cover_banner_font_size" id="0x7f0b0046" />
<public type="dimen" name="last_read_font_size" id="0x7f0b0047" />
<public type="dimen" name="landing_recent_cover_width" id="0x7f0b0048" />
<public type="dimen" name="landing_recent_cover_height" id="0x7f0b0049" />
<public type="dimen" name="landing_recommended_cover_width" id="0x7f0b004a" />
<public type="dimen" name="landing_recommended_cover_height" id="0x7f0b004b" />
<public type="dimen" name="cover_overlay_progress_bar_height" id="0x7f0b004c" />
<public type="dimen" name="unified_selection_popup_width" id="0x7f0b004d" />
<public type="dimen" name="unified_selection_popup_definition_content_h eight" id="0x7f0b004e" />
<public type="dimen" name="unified_selection_popup_definition_content_w idth" id="0x7f0b004f" />
<public type="dimen" name="unified_selection_popup_definition_height" id="0x7f0b0050" />
<public type="dimen" name="unified_selection_popup_button_height" id="0x7f0b0051" />
<public type="dimen" name="unified_selection_popup_button_width" id="0x7f0b0052" />
<public type="dimen" name="unified_selection_popup_full_definition_link _height" id="0x7f0b0053" />
<public type="dimen" name="selection_buttons_x_margin" id="0x7f0b0054" />
<public type="dimen" name="reader_os_bottom_menu_height" id="0x7f0b0055" />
<public type="dimen" name="status_bar_height" id="0x7f0b0056" />
<public type="dimen" name="unselected_thumbnail_item_width" id="0x7f0b0057" />
<public type="dimen" name="unselected_thumbnail_item_height" id="0x7f0b0058" />
<public type="dimen" name="selected_thumbnail_item_width" id="0x7f0b0059" />
<public type="dimen" name="selected_thumbnail_item_height" id="0x7f0b005a" />
<public type="dimen" name="thumbnail_item_padding" id="0x7f0b005b" />
<public type="dimen" name="selected_thumbnail_item_shadow_padding" id="0x7f0b005c" />
<public type="dimen" name="unselected_thumbnail_item_shadow_padding" id="0x7f0b005d" />
<public type="dimen" name="view_options_text_size_top_padding" id="0x7f0b0069" />
<public type="dimen" name="view_options_text_size_bottom_padding" id="0x7f0b006a" />
<public type="dimen" name="view_options_text_size_right_padding" id="0x7f0b006b" />
<public type="dimen" name="view_options_line_spacing_top_padding" id="0x7f0b006c" />
<public type="dimen" name="view_options_line_spacing_bottom_padding" id="0x7f0b006d" />
<public type="dimen" name="view_options_line_spacing_middle_padding" id="0x7f0b006e" />
<public type="dimen" name="view_options_line_length_top_padding" id="0x7f0b006f" />
<public type="dimen" name="view_options_line_length_bottom_padding" id="0x7f0b0070" />
<public type="dimen" name="view_options_line_length_middle_padding" id="0x7f0b0071" />
<public type="dimen" name="view_options_color_button_middle_padding" id="0x7f0b0072" />
<public type="dimen" name="view_options_color_button_padding" id="0x7f0b0073" />
<public type="dimen" name="view_options_brightness_slider_padding" id="0x7f0b0074" />
<public type="dimen" name="periodical_titlebar_height" id="0x7f0b0060" />
<public type="dimen" name="reader_softback_textsize" id="0x7f0b0061" />
<public type="dimen" name="reader_bookmark_offset_from_edge" id="0x7f0b0062" />
<public type="dimen" name="transient_screen_cover_size" id="0x7f0b0063" />
<public type="dimen" name="transient_screen_progress_size" id="0x7f0b0064" />
<public type="dimen" name="lib_states_width" id="0x7f0b0065" />
<public type="dimen" name="feedback_screen_height" id="0x7f0b0066" />
<public type="dimen" name="feedback_screen_width" id="0x7f0b0067" />
<public type="dimen" name="feedback_screen_top_margin" id="0x7f0b0068" />
<public type="dimen" name="magnifying_glass_vert_frame" id="0x7f0b005e" />
<public type="dimen" name="magnifying_glass_horiz_frame" id="0x7f0b005f" />
<public type="id" name="notes_list" id="0x7f0c0000" />
<public type="id" name="about_detail_title" id="0x7f0c0001" />
<public type="id" name="about_detail_value" id="0x7f0c0002" />
<public type="id" name="gestures" id="0x7f0c0003" />
<public type="id" name="version" id="0x7f0c0004" />
<public type="id" name="about_device_info_list" id="0x7f0c0005" />
<public type="id" name="about_status_icon" id="0x7f0c0006" />
<public type="id" name="about_section_title" id="0x7f0c0007" />
<public type="id" name="edit_note_save" id="0x7f0c0008" />
<public type="id" name="annotation_note" id="0x7f0c0009" />
<public type="id" name="annotation_highlight" id="0x7f0c000a" />
<public type="id" name="annotation_delete_highlight" id="0x7f0c000b" />
<public type="id" name="annotation_more_options" id="0x7f0c000c" />
<public type="id" name="annotation_search_right" id="0x7f0c000d" />
<public type="id" name="annotation_image_zoom" id="0x7f0c000e" />
<public type="id" name="annotation_search" id="0x7f0c000f" />
<public type="id" name="annotation_wikipedia" id="0x7f0c0010" />
<public type="id" name="annotation_web" id="0x7f0c0011" />
<public type="id" name="annotation_only_image_zoom" id="0x7f0c0012" />
<public type="id" name="selection_buttons_marker_top" id="0x7f0c0013" />
<public type="id" name="selection_buttons_marker_bottom" id="0x7f0c0014" />
<public type="id" name="content_container" id="0x7f0c0015" />
<public type="id" name="articles_list_fragment" id="0x7f0c0016" />
<public type="id" name="book_layout_view_options" id="0x7f0c0017" />
<public type="id" name="articles_list_element" id="0x7f0c0018" />
<public type="id" name="lib_grid_back_issues_frame" id="0x7f0c0019" />
<public type="id" name="lib_grid_back_issues_title" id="0x7f0c001a" />
<public type="id" name="back_issues_count_tag" id="0x7f0c001b" />
<public type="id" name="lib_back_issues_row_text" id="0x7f0c001c" />
<public type="id" name="lib_back_issues_row_arrow" id="0x7f0c001d" />
<public type="id" name="lib_book_cell_cover" id="0x7f0c001e" />
<public type="id" name="cover" id="0x7f0c001f" />
<public type="id" name="title_tag" id="0x7f0c0020" />
<public type="id" name="sample_tag" id="0x7f0c0021" />
<public type="id" name="author_tag" id="0x7f0c0022" />
<public type="id" name="keep_tag" id="0x7f0c0023" />
<public type="id" name="dim_view" id="0x7f0c0024" />
<public type="id" name="lib_book_cell_download_progress_downloading" id="0x7f0c0025" />
<public type="id" name="book_default_cover_title" id="0x7f0c0026" />
<public type="id" name="book_default_cover_author" id="0x7f0c0027" />
<public type="id" name="title_container" id="0x7f0c0028" />
<public type="id" name="title_text_view" id="0x7f0c0029" />
<public type="id" name="chapter_text_view" id="0x7f0c002a" />
<public type="id" name="bookmark" id="0x7f0c002b" />
<public type="id" name="note_snippet" id="0x7f0c002c" />
<public type="id" name="annotation_location" id="0x7f0c002d" />
<public type="id" name="annotation_image" id="0x7f0c002e" />
<public type="id" name="note_item_loading_spinner" id="0x7f0c002f" />
<public type="id" name="annotation_type" id="0x7f0c0030" />
<public type="id" name="toc" id="0x7f0c0031" />
<public type="id" name="beginning" id="0x7f0c0032" />
<public type="id" name="location" id="0x7f0c0033" />
<public type="id" name="sync" id="0x7f0c0034" />
<public type="id" name="bookextras" id="0x7f0c0035" />
<public type="id" name="annotation_list_view" id="0x7f0c0036" />
<public type="id" name="page_render_view" id="0x7f0c0037" />
<public type="id" name="bookmarkFrame" id="0x7f0c0038" />
<public type="id" name="bookmarkOffset" id="0x7f0c0039" />
<public type="id" name="title_view" id="0x7f0c003a" />
<public type="id" name="object_selection_view" id="0x7f0c003b" />
<public type="id" name="lib_book_row_cover_container" id="0x7f0c003c" />
<public type="id" name="lib_book_row_title_container" id="0x7f0c003d" />
<public type="id" name="lib_book_row_title" id="0x7f0c003e" />
<public type="id" name="lib_book_row_author" id="0x7f0c003f" />
<public type="id" name="lib_book_row_reading_progress" id="0x7f0c0040" />
<public type="id" name="lib_book_row_download_progress" id="0x7f0c0041" />
<public type="id" name="lib_book_row_downloading_text" id="0x7f0c0042" />
<public type="id" name="book_toc_screen" id="0x7f0c0043" />
<public type="id" name="brightness_slider_options" id="0x7f0c0044" />
<public type="id" name="brightness_slider_row" id="0x7f0c0045" />
<public type="id" name="max_brightness_image" id="0x7f0c0046" />
<public type="id" name="min_brightness_image" id="0x7f0c0047" />
<public type="id" name="brightness_slider" id="0x7f0c0048" />
<public type="id" name="font_size1" id="0x7f0c0049" />
<public type="id" name="auto_brightness_msg_row" id="0x7f0c004a" />
<public type="id" name="auto_brightness_enabled_message" id="0x7f0c004b" />
<public type="id" name="dotted_button_sepia" id="0x7f0c004c" />
<public type="id" name="brightness_textcolors_options" id="0x7f0c004d" />
<public type="id" name="font_color_white" id="0x7f0c004e" />
<public type="id" name="checkbox" id="0x7f0c004f" />
<public type="id" name="view_options_row_color" id="0x7f0c0050" />
<public type="id" name="dotted_button_white" id="0x7f0c0051" />
<public type="id" name="font_color_sepia" id="0x7f0c0052" />
<public type="id" name="dotted_button_black" id="0x7f0c0053" />
<public type="id" name="font_color_black" id="0x7f0c0054" />
<public type="id" name="cover_screen" id="0x7f0c0055" />
<public type="id" name="cover_view" id="0x7f0c0056" />
<public type="id" name="sign_in_forgot" id="0x7f0c0057" />
<public type="id" name="sign_in_jp_customer" id="0x7f0c0058" />
<public type="id" name="sign_in_create_account" id="0x7f0c0059" />
<public type="id" name="version_number" id="0x7f0c005a" />
<public type="id" name="currentlyReadingBookDetailsButton" id="0x7f0c005b" />
<public type="id" name="freeBooksButton" id="0x7f0c005c" />
<public type="id" name="clearDynamicConfig" id="0x7f0c005d" />
<public type="id" name="changeDictionaryLanguage" id="0x7f0c005e" />
<public type="id" name="force_domain_toggle" id="0x7f0c005f" />
<public type="id" name="preprod_redirect_toggle" id="0x7f0c0060" />
<public type="id" name="download_all_books" id="0x7f0c0061" />
<public type="id" name="debug_asin_to_remove" id="0x7f0c0062" />
<public type="id" name="changeCampaignWebViewURL" id="0x7f0c0063" />
<public type="id" name="webview_placeholder" id="0x7f0c0064" />
<public type="id" name="dictionary_not_available_content" id="0x7f0c0065" />
<public type="id" name="definition_choose_dictionary_button" id="0x7f0c0066" />
<public type="id" name="dictionary_not_available_button" id="0x7f0c0067" />
<public type="id" name="dictionary_corrupt_content" id="0x7f0c0068" />
<public type="id" name="dictionary_corrupt_button" id="0x7f0c0069" />
<public type="id" name="dictionary_downloading_content" id="0x7f0c006a" />
<public type="id" name="dictionary_downloading_progress" id="0x7f0c006b" />
<public type="id" name="dictionary_downloading_cancel" id="0x7f0c006c" />
<public type="id" name="dictionary_download_failed_content" id="0x7f0c006d" />
<public type="id" name="dictionary_download_failed_progress" id="0x7f0c006e" />
<public type="id" name="dictionary_download_failed_button" id="0x7f0c006f" />
<public type="id" name="definition_not_available_content" id="0x7f0c0070" />
<public type="id" name="definition_view_container" id="0x7f0c0071" />
<public type="id" name="definition_dictionary_Link" id="0x7f0c0072" />
<public type="id" name="lib_book_row_checkbox" id="0x7f0c0073" />
<public type="id" name="delete_list" id="0x7f0c0074" />
<public type="id" name="delete_clicked" id="0x7f0c0075" />
<public type="id" name="delete_cancel" id="0x7f0c0076" />
<public type="id" name="download_error_reason" id="0x7f0c0077" />
<public type="id" name="download_error_fix" id="0x7f0c0078" />
<public type="id" name="download_error_cancel" id="0x7f0c0079" />
<public type="id" name="title" id="0x7f0c007a" />
<public type="id" name="subtitle" id="0x7f0c007b" />
<public type="id" name="download_progress" id="0x7f0c007c" />
<public type="id" name="notification_percentage" id="0x7f0c007d" />
<public type="id" name="edit_note_text" id="0x7f0c007e" />
<public type="id" name="feedback_text" id="0x7f0c007f" />
<public type="id" name="feedback_send" id="0x7f0c0080" />
<public type="id" name="feedback_cancel" id="0x7f0c0081" />
<public type="id" name="section_row_title" id="0x7f0c0082" />
<public type="id" name="section_row_articles" id="0x7f0c0083" />
<public type="id" name="gallery_info_title" id="0x7f0c0084" />
<public type="id" name="gallery_info_author" id="0x7f0c0085" />
<public type="id" name="gallery_info_download_progress" id="0x7f0c0086" />
<public type="id" name="gallery_info_download_progress_status" id="0x7f0c0087" />
<public type="id" name="gallery_info_download_progress_percent" id="0x7f0c0088" />
<public type="id" name="gallery_info_download_progress_text" id="0x7f0c0089" />
<public type="id" name="image_zoom_screen" id="0x7f0c008a" />
<public type="id" name="image_zoom_view" id="0x7f0c008b" />
<public type="id" name="zoom_close_button" id="0x7f0c008c" />
<public type="id" name="list" id="0x7f0c008d" />
<public type="id" name="landing_cover_view" id="0x7f0c008e" />
<public type="id" name="cover_gallery" id="0x7f0c008f" />
<public type="id" name="gallery_info_container" id="0x7f0c0090" />
<public type="id" name="landing_link" id="0x7f0c0091" />
<public type="id" name="home_link" id="0x7f0c0092" />
<public type="id" name="archived_items_link" id="0x7f0c0093" />
<public type="id" name="store_link_text" id="0x7f0c0094" />
<public type="id" name="background" id="0x7f0c0095" />
<public type="id" name="snow_view" id="0x7f0c0096" />
<public type="id" name="library_navigation_subtitle_frame" id="0x7f0c0097" />
<public type="id" name="library_navigation_subtitle" id="0x7f0c0098" />
<public type="id" name="book_rows" id="0x7f0c0099" />
<public type="id" name="book_list_stub" id="0x7f0c009a" />
<public type="id" name="book_list" id="0x7f0c009b" />
<public type="id" name="book_grid_stub" id="0x7f0c009c" />
<public type="id" name="book_grid" id="0x7f0c009d" />
<public type="id" name="empty_home_tip_stub" id="0x7f0c009e" />
<public type="id" name="empty_home_tip" id="0x7f0c009f" />
<public type="id" name="empty_ai_tip_stub" id="0x7f0c00a0" />
<public type="id" name="empty_ai_tip" id="0x7f0c00a1" />
<public type="id" name="sync_view_container" id="0x7f0c00a2" />
<public type="id" name="library_filter_container" id="0x7f0c00a3" />
<public type="id" name="book_gallery_stub" id="0x7f0c00a4" />
<public type="id" name="book_gallery" id="0x7f0c00a5" />
<public type="id" name="library_state_menu_overlay" id="0x7f0c00a6" />
<public type="id" name="library_state" id="0x7f0c00a7" />
<public type="id" name="library_filter_label" id="0x7f0c00a8" />
<public type="id" name="library_filter_count" id="0x7f0c00a9" />
<public type="id" name="library_state_menu_overlay_container" id="0x7f0c00aa" />
<public type="id" name="libary_state_menu_list" id="0x7f0c00ab" />
<public type="id" name="library_state_items_label" id="0x7f0c00ac" />
<public type="id" name="library_state_items_count" id="0x7f0c00ad" />
<public type="id" name="library_switch_activity_progress" id="0x7f0c00ae" />
<public type="id" name="text_view" id="0x7f0c00af" />
<public type="id" name="progress_indicator" id="0x7f0c00b0" />
<public type="id" name="license_agreement" id="0x7f0c00b1" />
<public type="id" name="license_agreement_link" id="0x7f0c00b2" />
<public type="id" name="view_options_line_length" id="0x7f0c00b3" />
<public type="id" name="line_length_long" id="0x7f0c00b4" />
<public type="id" name="line_length_long_image" id="0x7f0c00b5" />
<public type="id" name="line_length_medium" id="0x7f0c00b6" />
<public type="id" name="line_length_medium_image" id="0x7f0c00b7" />
<public type="id" name="line_length_short" id="0x7f0c00b8" />
<public type="id" name="otter_line_length_short_image" id="0x7f0c00b9" />
<public type="id" name="view_options_line_spacing" id="0x7f0c00ba" />
<public type="id" name="line_spacing_narrow" id="0x7f0c00bb" />
<public type="id" name="line_spacing_narrow_image" id="0x7f0c00bc" />
<public type="id" name="line_spacing_default" id="0x7f0c00bd" />
<public type="id" name="line_spacing_default_image" id="0x7f0c00be" />
<public type="id" name="line_spacing_wide" id="0x7f0c00bf" />
<public type="id" name="line_spacing_wide_image" id="0x7f0c00c0" />
<public type="id" name="loading_spinner" id="0x7f0c00c1" />
<public type="id" name="current_location_text" id="0x7f0c00c2" />
<public type="id" name="location_input_field" id="0x7f0c00c3" />
<public type="id" name="sign_in_logo" id="0x7f0c00c4" />
<public type="id" name="note_location_type" id="0x7f0c00c5" />
<public type="id" name="list_view" id="0x7f0c00c6" />
<public type="id" name="selection_buttons" id="0x7f0c00c7" />
<public type="id" name="definition_container" id="0x7f0c00c8" />
<public type="id" name="otter_view_options_row_color" id="0x7f0c00c9" />
<public type="id" name="otter_font_color_white" id="0x7f0c00ca" />
<public type="id" name="otter_font_color_black" id="0x7f0c00cb" />
<public type="id" name="otter_font_color_sepia" id="0x7f0c00cc" />
<public type="id" name="otter_view_options_row_text_size" id="0x7f0c00cd" />
<public type="id" name="otter_font_size1" id="0x7f0c00ce" />
<public type="id" name="otter_font_size2" id="0x7f0c00cf" />
<public type="id" name="otter_font_size3" id="0x7f0c00d0" />
<public type="id" name="otter_font_size4" id="0x7f0c00d1" />
<public type="id" name="otter_font_size5" id="0x7f0c00d2" />
<public type="id" name="otter_font_size6" id="0x7f0c00d3" />
<public type="id" name="otter_view_options" id="0x7f0c00d4" />
<public type="id" name="webview" id="0x7f0c00d5" />
<public type="id" name="location_container" id="0x7f0c00d6" />
<public type="id" name="periodical_standalone_title_date" id="0x7f0c00d7" />
<public type="id" name="periodical_title_image" id="0x7f0c00d8" />
<public type="id" name="periodical_title_text" id="0x7f0c00d9" />
<public type="id" name="periodical_title_date" id="0x7f0c00da" />
<public type="id" name="periodical_mast_head_relative_layout" id="0x7f0c00db" />
<public type="id" name="articles_list" id="0x7f0c00dc" />
<public type="id" name="periodical_titlebar" id="0x7f0c00dd" />
<public type="id" name="periodical_replica_frag" id="0x7f0c00de" />
<public type="id" name="shadow" id="0x7f0c00df" />
<public type="id" name="prev_button" id="0x7f0c00e0" />
<public type="id" name="next_button" id="0x7f0c00e1" />
<public type="id" name="location_seek_container" id="0x7f0c00e2" />
<public type="id" name="location_title" id="0x7f0c00e3" />
<public type="id" name="location_info" id="0x7f0c00e4" />
<public type="id" name="loading_indicator" id="0x7f0c00e5" />
<public type="id" name="location_control" id="0x7f0c00e6" />
<public type="id" name="divider1" id="0x7f0c00e7" />
<public type="id" name="divider2" id="0x7f0c00e8" />
<public type="id" name="prev_next_all_articles" id="0x7f0c00e9" />
<public type="id" name="section_text" id="0x7f0c00ea" />
<public type="id" name="count_text" id="0x7f0c00eb" />
<public type="id" name="publish_date" id="0x7f0c00ec" />
<public type="id" name="periodical_titlebar_togglebutton_bar" id="0x7f0c00ed" />
<public type="id" name="page_view_button" id="0x7f0c00ee" />
<public type="id" name="text_view_button" id="0x7f0c00ef" />
<public type="id" name="title_image_view" id="0x7f0c00f0" />
<public type="id" name="periodical_toc_title" id="0x7f0c00f1" />
<public type="id" name="periodical_toc_thumbnail" id="0x7f0c00f2" />
<public type="id" name="periodical_contents_cntr" id="0x7f0c00f3" />
<public type="id" name="newspaper_toc_navbar" id="0x7f0c00f4" />
<public type="id" name="periodical_toc_masthead" id="0x7f0c00f5" />
<public type="id" name="periodical_title" id="0x7f0c00f6" />
<public type="id" name="periodical_toc_section_btn" id="0x7f0c00f7" />
<public type="id" name="periodical_toc_section_list" id="0x7f0c00f8" />
<public type="id" name="periodical_toc_publish_date" id="0x7f0c00f9" />
<public type="id" name="magazine_toc_navbar" id="0x7f0c00fa" />
<public type="id" name="periodical_toc_article_list" id="0x7f0c00fb" />
<public type="id" name="periodical_horizontal_line" id="0x7f0c00fc" />
<public type="id" name="menuitem_prev_article_txt" id="0x7f0c00fd" />
<public type="id" name="all_articles_button" id="0x7f0c00fe" />
<public type="id" name="menuitem_next_article_txt" id="0x7f0c00ff" />
<public type="id" name="reader_frame" id="0x7f0c0100" />
<public type="id" name="magnified_content_container" id="0x7f0c0101" />
<public type="id" name="magnifying_glass" id="0x7f0c0102" />
<public type="id" name="orientation_lock_container" id="0x7f0c0103" />
<public type="id" name="orientation_lock_view" id="0x7f0c0104" />
<public type="id" name="reader_menu_container" id="0x7f0c0105" />
<public type="id" name="stub_location_container" id="0x7f0c0106" />
<public type="id" name="view_options" id="0x7f0c0107" />
<public type="id" name="stub_bookmark_frame" id="0x7f0c0108" />
<public type="id" name="bookmark_frame" id="0x7f0c0109" />
<public type="id" name="text_sizes_dropdown" id="0x7f0c010a" />
<public type="id" name="reader_search_header_text" id="0x7f0c010b" />
<public type="id" name="reader_search_label_text" id="0x7f0c010c" />
<public type="id" name="result_text" id="0x7f0c010d" />
<public type="id" name="location_text" id="0x7f0c010e" />
<public type="id" name="title_progress_bar" id="0x7f0c010f" />
<public type="id" name="recent_items_scroll_view" id="0x7f0c0110" />
<public type="id" name="landing_store_promo" id="0x7f0c0111" />
<public type="id" name="landing_promo_image" id="0x7f0c0112" />
<public type="id" name="landing_recent_scroll_view" id="0x7f0c0113" />
<public type="id" name="landing_recent_items" id="0x7f0c0114" />
<public type="id" name="lib_book_row_cover" id="0x7f0c0115" />
<public type="id" name="searchResultsText" id="0x7f0c0116" />
<public type="id" name="searchResultsTerm" id="0x7f0c0117" />
<public type="id" name="sections_list_fragment" id="0x7f0c0118" />
<public type="id" name="sign_in_prompt" id="0x7f0c0119" />
<public type="id" name="sign_in_email" id="0x7f0c011a" />
<public type="id" name="sign_in_password" id="0x7f0c011b" />
<public type="id" name="sign_in_button" id="0x7f0c011c" />
<public type="id" name="soft_back" id="0x7f0c011d" />
<public type="id" name="softback_button_arrow" id="0x7f0c011e" />
<public type="id" name="softback_button_text" id="0x7f0c011f" />
<public type="id" name="view_options_row_text_size" id="0x7f0c0120" />
<public type="id" name="font_size2" id="0x7f0c0121" />
<public type="id" name="font_size3" id="0x7f0c0122" />
<public type="id" name="font_size4" id="0x7f0c0123" />
<public type="id" name="font_size5" id="0x7f0c0124" />
<public type="id" name="font_size6" id="0x7f0c0125" />
<public type="id" name="item1" id="0x7f0c0126" />
<public type="id" name="img1" id="0x7f0c0127" />
<public type="id" name="img2" id="0x7f0c0128" />
<public type="id" name="tv1" id="0x7f0c0129" />
<public type="id" name="tv2" id="0x7f0c012a" />
<public type="id" name="thumbnails_frame" id="0x7f0c012b" />
<public type="id" name="shadow_view" id="0x7f0c012c" />
<public type="id" name="thumbnail_slider_item" id="0x7f0c012d" />
<public type="id" name="thumbnail_seeker" id="0x7f0c012e" />
<public type="id" name="toc_list_item" id="0x7f0c012f" />
<public type="id" name="transient_book_title" id="0x7f0c0130" />
<public type="id" name="transient_book_author" id="0x7f0c0131" />
<public type="id" name="transient_book_download_progress_bar" id="0x7f0c0132" />
<public type="id" name="transient_book_download_progress_status" id="0x7f0c0133" />
<public type="id" name="transient_book_download_progress_percent" id="0x7f0c0134" />
<public type="id" name="transient_book_download_progress_text" id="0x7f0c0135" />
<public type="id" name="transient_book_pause_resume" id="0x7f0c0136" />
<public type="id" name="transient_downloading_text" id="0x7f0c0137" />
<public type="id" name="large_cover" id="0x7f0c0138" />
<public type="id" name="currently_downloading_group" id="0x7f0c0139" />
<public type="id" name="transient_cover_reflection" id="0x7f0c013a" />
<public type="id" name="transient_reflection_foreground" id="0x7f0c013b" />
<public type="id" name="two_panel_periodical_view" id="0x7f0c013c" />
<public type="id" name="mast_head_fragment" id="0x7f0c013d" />
<public type="id" name="section_row_arrow" id="0x7f0c013e" />
<public type="id" name="view_options_content" id="0x7f0c013f" />
<public type="id" name="not_currently_reading_widget" id="0x7f0c0140" />
<public type="id" name="currently_reading_widget" id="0x7f0c0141" />
<public type="id" name="widget_book_cover" id="0x7f0c0142" />
<public type="id" name="widget_book_title" id="0x7f0c0143" />
<public type="id" name="widget_book_author" id="0x7f0c0144" />
<public type="id" name="widget_book_progress" id="0x7f0c0145" />
<public type="id" name="image_zoom_close_button" id="0x7f0c0146" />
<public type="id" name="menuitem_feedback_send" id="0x7f0c0147" />
<public type="id" name="lib_menu_search" id="0x7f0c0148" />
<public type="id" name="lib_menu_info" id="0x7f0c0149" />
<public type="id" name="lib_menu_delete" id="0x7f0c014a" />
<public type="id" name="lib_menu_feedback" id="0x7f0c014b" />
<public type="id" name="lib_menu_settings" id="0x7f0c014c" />
<public type="id" name="lib_menu_help" id="0x7f0c014d" />
<public type="id" name="lib_menu_home" id="0x7f0c014e" />
<public type="id" name="lib_menu_archive" id="0x7f0c014f" />
<public type="id" name="lib_menu_store" id="0x7f0c0150" />
<public type="id" name="lib_menu_sort" id="0x7f0c0151" />
<public type="id" name="lib_menu_view" id="0x7f0c0152" />
<public type="id" name="lib_menu_list" id="0x7f0c0153" />
<public type="id" name="lib_menu_grid" id="0x7f0c0154" />
<public type="id" name="lib_menu_sync" id="0x7f0c0155" />
<public type="id" name="lib_menu_view_group" id="0x7f0c0156" />
<public type="id" name="lib_menu_sort_parent" id="0x7f0c0157" />
<public type="id" name="lib_menu_sort_group" id="0x7f0c0158" />
<public type="id" name="lib_menu_sort_recent" id="0x7f0c0159" />
<public type="id" name="lib_menu_sort_title" id="0x7f0c015a" />
<public type="id" name="lib_menu_sort_author" id="0x7f0c015b" />
<public type="id" name="menuitem_goto" id="0x7f0c015c" />
<public type="id" name="menuitem_cover" id="0x7f0c015d" />
<public type="id" name="menuitem_toc" id="0x7f0c015e" />
<public type="id" name="menuitem_beginning" id="0x7f0c015f" />
<public type="id" name="menuitem_page" id="0x7f0c0160" />
<public type="id" name="menuitem_notes" id="0x7f0c0161" />
<public type="id" name="menuitem_back" id="0x7f0c0162" />
<public type="id" name="menuitem_bookmark" id="0x7f0c0163" />
<public type="id" name="menuitem_share_progress" id="0x7f0c0164" />
<public type="id" name="menuitem_sync" id="0x7f0c0165" />
<public type="id" name="menuitem_search" id="0x7f0c0166" />
<public type="id" name="menuitem_home" id="0x7f0c0167" />
<public type="id" name="menuitem_book_menu" id="0x7f0c0168" />
<public type="id" name="pdf_menu_home" id="0x7f0c0169" />
<public type="id" name="menuitem_front_page" id="0x7f0c016a" />
<public type="id" name="menuitem_sections" id="0x7f0c016b" />
<public type="id" name="menuitem_viewoptions" id="0x7f0c016c" />
<public type="id" name="menuitem_keep" id="0x7f0c016d" />
<public type="id" name="menuitem_colormode_brightness" id="0x7f0c016e" />
<public type="id" name="menuitem_fontsize" id="0x7f0c016f" />
<public type="id" name="menuitem_reader_store" id="0x7f0c0170" />
<public type="id" name="menuitem_articles" id="0x7f0c0171" />
<public type="id" name="menuitem_location" id="0x7f0c0172" />
<public type="id" name="menuitem_xlarge_bookmark" id="0x7f0c0173" />
<public type="id" name="annotation_search_in_book" id="0x7f0c0174" />
<public type="id" name="store_menu_home" id="0x7f0c0175" />
<public type="id" name="store_menu_store" id="0x7f0c0176" />
<public type="id" name="store_menu_info" id="0x7f0c0177" />
<public type="id" name="annotation_share" id="0x7f0c0178" />
<public type="id" name="menuitem_two_page" id="0x7f0c0179" />
<public type="integer" name="extra_line_spacing_narrow" id="0x7f0d0000" />
<public type="integer" name="extra_line_spacing_default" id="0x7f0d0001" />
<public type="integer" name="extra_line_spacing_wide" id="0x7f0d0002" />
<public type="integer" name="extra_line_spacing_ja_vert_default" id="0x7f0d0003" />
<public type="integer" name="navigation_margin_percent" id="0x7f0d0004" />
<public type="integer" name="default_extra_line_spacing_definition_popup" id="0x7f0d0005" />
<public type="integer" name="definition_popup_height_percentage_for_phone " id="0x7f0d0006" />
<public type="integer" name="dim_screen_time_min" id="0x7f0d0007" />
<public type="integer" name="show_animation_duration" id="0x7f0d0008" />
<public type="integer" name="hide_animation_duration" id="0x7f0d0009" />
<public type="integer" name="max_io_threads" id="0x7f0d000a" />
<public type="integer" name="default_margin_serialization_value" id="0x7f0d000b" />
<public type="integer" name="gesture_long_press_after_motion_delay_ms" id="0x7f0d000c" />
<public type="integer" name="gesture_pointer_active_area_precision_dips" id="0x7f0d000d" />
<public type="integer" name="pdf_tile_divider_per_screen" id="0x7f0d000e" />
<public type="integer" name="pdf_tile_bytes_per_pixel" id="0x7f0d000f" />
<public type="integer" name="pdf_tile_working_space_screens" id="0x7f0d0010" />
<public type="integer" name="pdf_tile_default_note_icon_height" id="0x7f0d0011" />
<public type="integer" name="pdf_tile_default_note_icon_width" id="0x7f0d0012" />
<public type="integer" name="pdf_location_width_percentage" id="0x7f0d0013" />
<public type="style" name="Theme.Library" id="0x7f0e0000" />
<public type="style" name="Theme.Library.WithTitle" id="0x7f0e0001" />
<public type="style" name="Theme.Library.Menus" id="0x7f0e0002" />
<public type="style" name="Theme.Invisible" id="0x7f0e0003" />
<public type="style" name="Theme.NoTitleBar.NoBackground" id="0x7f0e0004" />
<public type="style" name="Theme.HiddenTitleBar" id="0x7f0e0005" />
<public type="style" name="Theme.ReaderStyle" id="0x7f0e0006" />
<public type="style" name="Theme.NoTitleBar.Transparent" id="0x7f0e0007" />
<public type="style" name="Theme.TransientScreen" id="0x7f0e0008" />
<public type="style" name="Theme.Splash.withoutTreeBoy" id="0x7f0e0009" />
<public type="style" name="Theme.Splash" id="0x7f0e000a" />
<public type="style" name="Theme.Welcome" id="0x7f0e000b" />
<public type="style" name="Theme.EditNote" id="0x7f0e000c" />
<public type="style" name="wrap" id="0x7f0e000d" />
<public type="style" name="fill" id="0x7f0e000e" />
<public type="style" name="fill_width" id="0x7f0e000f" />
<public type="style" name="no_margin_no_padding_wrap" id="0x7f0e0010" />
<public type="style" name="no_padding_wrap" id="0x7f0e0011" />
<public type="style" name="default_style" id="0x7f0e0012" />
<public type="style" name="default_style_fill" id="0x7f0e0013" />
<public type="style" name="default_style_fill_width" id="0x7f0e0014" />
<public type="style" name="default_theme" id="0x7f0e0015" />
<public type="style" name="text" id="0x7f0e0016" />
<public type="style" name="text.bold" id="0x7f0e0017" />
<public type="style" name="clickable_text" id="0x7f0e0018" />
<public type="style" name="title" id="0x7f0e0019" />
<public type="style" name="visual_separator" id="0x7f0e001a" />
<public type="style" name="list_section_header" id="0x7f0e001b" />
<public type="style" name="library_heading" id="0x7f0e001c" />
<public type="style" name="library_labels" id="0x7f0e001d" />
<public type="style" name="library_nav_bar_labels" id="0x7f0e001e" />
<public type="style" name="recommendation_bar_label" id="0x7f0e001f" />
<public type="style" name="library_state_item" id="0x7f0e0020" />
<public type="style" name="library_state_item_count" id="0x7f0e0021" />
<public type="style" name="library_state_item_label" id="0x7f0e0022" />
<public type="style" name="library_row_text" id="0x7f0e0023" />
<public type="style" name="library_back_issues_row_text" id="0x7f0e0024" />
<public type="style" name="library_book_row_text" id="0x7f0e0025" />
<public type="style" name="library_book_row_text.title" id="0x7f0e0026" />
<public type="style" name="library_book_row_text.author" id="0x7f0e0027" />
<public type="style" name="library_book_row_text.downloading" id="0x7f0e0028" />
<public type="style" name="cover_title_tag" id="0x7f0e0029" />
<public type="style" name="cover_sample_tag" id="0x7f0e002a" />
<public type="style" name="cover_keep_tag" id="0x7f0e002b" />
<public type="style" name="cover_subtitle" id="0x7f0e002c" />
<public type="style" name="cover_author_tag" id="0x7f0e002d" />
<public type="style" name="cover_dim_view" id="0x7f0e002e" />
<public type="style" name="transient_text" id="0x7f0e002f" />
<public type="style" name="transient_text.downloading" id="0x7f0e0030" />
<public type="style" name="transient_text.title" id="0x7f0e0031" />
<public type="style" name="transient_text.author" id="0x7f0e0032" />
<public type="style" name="transient_text_percent" id="0x7f0e0033" />
<public type="style" name="transient_text_progress" id="0x7f0e0034" />
<public type="style" name="transient_pause_resume_buttons" id="0x7f0e0035" />
<public type="style" name="periodical_header" id="0x7f0e0036" />
<public type="style" name="periodical_header_title" id="0x7f0e0037" />
<public type="style" name="periodical_section_title" id="0x7f0e0038" />
<public type="style" name="periodical_section_articles" id="0x7f0e0039" />
<public type="style" name="prev_next_all_buttons" id="0x7f0e003a" />
<public type="style" name="reader_overlay_container" id="0x7f0e003b" />
<public type="style" name="reader_overlay_container.title" id="0x7f0e003c" />
<public type="style" name="reader_overlay_container.location" id="0x7f0e003d" />
<public type="style" name="reader_overlay_seek_bar" id="0x7f0e003e" />
<public type="style" name="reader_overlay_text_base" id="0x7f0e003f" />
<public type="style" name="periodical_overlay_container" id="0x7f0e0040" />
<public type="style" name="periodical_overlay_container.title" id="0x7f0e0041" />
<public type="style" name="periodical_overlay_container.location" id="0x7f0e0042" />
<public type="style" name="reader_overlay_container_pdf" id="0x7f0e0043" />
<public type="style" name="reader_overlay_text" id="0x7f0e0044" />
<public type="style" name="reader_overlay_text.title" id="0x7f0e0045" />
<public type="style" name="reader_overlay_text.publish_date" id="0x7f0e0046" />
<public type="style" name="reader_overlay_text.chapter" id="0x7f0e0047" />
<public type="style" name="reader_overlay_text.location_info" id="0x7f0e0048" />
<public type="style" name="reader_overlay_text.location_title" id="0x7f0e0049" />
<public type="style" name="selection_buttons" id="0x7f0e004a" />
<public type="style" name="sync_message_container" id="0x7f0e004b" />
<public type="style" name="sync_message_text" id="0x7f0e004c" />
<public type="style" name="sync_progress_indicator" id="0x7f0e004d" />
<public type="style" name="sign_in" id="0x7f0e004e" />
<public type="style" name="sign_in.port" id="0x7f0e004f" />
<public type="style" name="sign_in.land" id="0x7f0e0050" />
<public type="style" name="kindle_logo_port" id="0x7f0e0051" />
<public type="style" name="kindle_logo_land" id="0x7f0e0052" />
<public type="style" name="sign_in_prompt" id="0x7f0e0053" />
<public type="style" name="sign_in_text_input" id="0x7f0e0054" />
<public type="style" name="sign_in_text_input.email" id="0x7f0e0055" />
<public type="style" name="sign_in_text_input.password" id="0x7f0e0056" />
<public type="style" name="sign_in_button" id="0x7f0e0057" />
<public type="style" name="sign_in_text_base" id="0x7f0e0058" />
<public type="style" name="sign_in_text" id="0x7f0e0059" />
<public type="style" name="sign_in_account_links" id="0x7f0e005a" />
<public type="style" name="sign_in_account_links.sublink" id="0x7f0e005b" />
<public type="style" name="sign_in_account_button" id="0x7f0e005c" />
<public type="style" name="sign_in_account_button.top" id="0x7f0e005d" />
<public type="style" name="sign_in_account_button.bottom" id="0x7f0e005e" />
<public type="style" name="sign_in_link_rule" id="0x7f0e005f" />
<public type="style" name="sign_in_create_account" id="0x7f0e0060" />
<public type="style" name="empty_library_layout" id="0x7f0e0061" />
<public type="style" name="empty_home_row" id="0x7f0e0062" />
<public type="style" name="empty_home_icon" id="0x7f0e0063" />
<public type="style" name="empty_home_instruction" id="0x7f0e0064" />
<public type="style" name="bullets_table" id="0x7f0e0065" />
<public type="style" name="bullet_row" id="0x7f0e0066" />
<public type="style" name="bullet_image" id="0x7f0e0067" />
<public type="style" name="bullet_text" id="0x7f0e0068" />
<public type="style" name="whats_new_version" id="0x7f0e0069" />
<public type="style" name="view_options_background" id="0x7f0e006a" />
<public type="style" name="view_options_container" id="0x7f0e006b" />
<public type="style" name="view_options_row" id="0x7f0e006c" />
<public type="style" name="view_options_row.text_size" id="0x7f0e006d" />
<public type="style" name="view_options_row.color" id="0x7f0e006e" />
<public type="style" name="view_options_row.brightness" id="0x7f0e006f" />
<public type="style" name="view_options_rule" id="0x7f0e0070" />
<public type="style" name="view_options_color_button" id="0x7f0e0071" />
<public type="style" name="view_options_color_button.middle" id="0x7f0e0072" />
<public type="style" name="view_options_color_button.white" id="0x7f0e0073" />
<public type="style" name="view_options_color_button.sepia" id="0x7f0e0074" />
<public type="style" name="view_options_color_button.black" id="0x7f0e0075" />
<public type="style" name="view_options_brightness_slider" id="0x7f0e0076" />
<public type="style" name="view_options_text_size_button" id="0x7f0e0077" />
<public type="style" name="view_options_text_size_button.marginRight" id="0x7f0e0078" />
<public type="style" name="view_options_auto_brightness_message" id="0x7f0e0079" />
<public type="style" name="notes_list" id="0x7f0e007a" />
<public type="style" name="notes_list_item" id="0x7f0e007b" />
<public type="style" name="notes_list_item_header" id="0x7f0e007c" />
<public type="style" name="notes_list_item_detail" id="0x7f0e007d" />
<public type="style" name="book_menu_screen" id="0x7f0e007e" />
<public type="style" name="book_menu_button" id="0x7f0e007f" />
<public type="style" name="book_menu_header" id="0x7f0e0080" />
<public type="style" name="book_menu_rule" id="0x7f0e0081" />
<public type="style" name="book_menu_rule2" id="0x7f0e0082" />
<public type="style" name="book_menu_notes_list" id="0x7f0e0083" />
<public type="style" name="book_menu_notes_list_item" id="0x7f0e0084" />
<public type="style" name="book_menu_notes_snippet" id="0x7f0e0085" />
<public type="style" name="book_menu_annotation_location" id="0x7f0e0086" />
<public type="style" name="book_menu_annotation_image" id="0x7f0e0087" />
<public type="style" name="book_menu_annotation_type" id="0x7f0e0088" />
<public type="style" name="search_results_top" id="0x7f0e0089" />
<public type="style" name="search_results_term" id="0x7f0e008a" />
<public type="style" name="image_zoom_close_button" id="0x7f0e008b" />
<public type="style" name="Widget.ProgressBar.Horizontal.Downloading" id="0x7f0e008c" />
<public type="style" name="download_notification" id="0x7f0e008d" />
<public type="style" name="download_notification.title" id="0x7f0e008e" />
<public type="style" name="download_notification.subtitle" id="0x7f0e008f" />
<public type="style" name="download_notification.percentage" id="0x7f0e0090" />
<public type="style" name="definition_container_title" id="0x7f0e0091" />
<public type="style" name="definition_container_text" id="0x7f0e0092" />
<public type="style" name="definition_container_link" id="0x7f0e0093" />
<public type="style" name="reading_progress" id="0x7f0e0094" />
<public type="style" name="book_row_download_progress" id="0x7f0e0095" />
<public type="style" name="gallery_info_text" id="0x7f0e0096" />
<public type="style" name="gallery_info_text.title" id="0x7f0e0097" />
<public type="style" name="gallery_info_text.author" id="0x7f0e0098" />
<public type="style" name="gallery_info_text_percent" id="0x7f0e0099" />
<public type="style" name="gallery_info_text_progress" id="0x7f0e009a" />
<public type="style" name="otter_view_options_background" id="0x7f0e009b" />
<public type="style" name="otter_view_options_container" id="0x7f0e009c" />
<public type="style" name="otter_view_options_row" id="0x7f0e009d" />
<public type="style" name="otter_view_options_row.text_size" id="0x7f0e009e" />
<public type="style" name="otter_view_options_row.color" id="0x7f0e009f" />
<public type="style" name="otter_view_options_color_button" id="0x7f0e00a0" />
<public type="style" name="otter_view_options_color_button.white" id="0x7f0e00a1" />
<public type="style" name="otter_view_options_color_button.sepia" id="0x7f0e00a2" />
<public type="style" name="otter_view_options_color_button.black" id="0x7f0e00a3" />
<public type="style" name="otter_view_options_text_size_button" id="0x7f0e00a4" />
<public type="style" name="otter_view_options_text_size_button.margin" id="0x7f0e00a5" />
<public type="style" name="download_error_reason" id="0x7f0e00a6" />
<public type="style" name="store_load_progress" id="0x7f0e00a7" />
<public type="style" name="togglebutton_bar" id="0x7f0e00a8" />
<public type="style" name="location_seekbar_container" id="0x7f0e00a9" />
<public type="style" name="navigation_button" id="0x7f0e00aa" />
<public type="style" name="navigation_button.prev" id="0x7f0e00ab" />
<public type="style" name="navigation_button.next" id="0x7f0e00ac" />
<public type="style" name="loading_progressbar" id="0x7f0e00ad" />
<public type="style" name="thumbnail_seekbar" id="0x7f0e00ae" />
<public type="style" name="thumbnailbar_pagenumber_text" id="0x7f0e00af" />
<public type="style" name="periodical_toc_title" id="0x7f0e00c2" />
<public type="style" name="periodical_toc_section_btn" id="0x7f0e00c3" />
<public type="style" name="periodical_toc_publish_date" id="0x7f0e00c4" />
<public type="style" name="periodical_toc_article_cntr" id="0x7f0e00c5" />
<public type="style" name="periodical_toc_articlelist_section" id="0x7f0e00c6" />
<public type="style" name="periodical_toc_articlelist_article" id="0x7f0e00c7" />
<public type="style" name="periodical_toc_articlelist_article_image" id="0x7f0e00c8" />
<public type="style" name="periodical_toc_sectionlist_item" id="0x7f0e00c9" />
<public type="style" name="Theme.ReaderSearch" id="0x7f0e00ca" />
<public type="style" name="Theme.NotesStyle" id="0x7f0e00cb" />
<public type="style" name="view_options_row.line_spacing" id="0x7f0e00cc" />
<public type="style" name="view_options_row.line_length" id="0x7f0e00cd" />
<public type="style" name="view_options_line_spacing" id="0x7f0e00ce" />
<public type="style" name="view_options_line_spacing.middle" id="0x7f0e00cf" />
<public type="style" name="view_options_line_length" id="0x7f0e00d0" />
<public type="style" name="view_options_line_length.middle" id="0x7f0e00d1" />
<public type="style" name="view_options_vertical_rule" id="0x7f0e00d2" />
<public type="style" name="Theme.ActionBarEnabled" id="0x7f0e00b0" />
<public type="style" name="libraryActionBarStyle" id="0x7f0e00b1" />
<public type="style" name="Theme.ActionBarEnabled.Light" id="0x7f0e00b2" />
<public type="style" name="Theme.HiddenTitleBar.Light" id="0x7f0e00b3" />
<public type="style" name="Theme.ReaderStyle.Black" id="0x7f0e00b4" />
<public type="style" name="Theme.ReaderStyle.White" id="0x7f0e00b5" />
<public type="style" name="Theme.ReaderStyle.Sepia" id="0x7f0e00b6" />
<public type="style" name="Theme.ArticleListStyle" id="0x7f0e00b7" />
<public type="style" name="Theme.ArticleListStyle.Light" id="0x7f0e00b8" />
<public type="style" name="reader_action_bar_dropdown" id="0x7f0e00b9" />
<public type="style" name="transient_pause_resume_buttons.xlarge" id="0x7f0e00ba" />
<public type="style" name="library_type_label" id="0x7f0e00bb" />
<public type="style" name="library_filter_label" id="0x7f0e00bc" />
<public type="style" name="library_filter_count" id="0x7f0e00bd" />
<public type="style" name="soft_back_button" id="0x7f0e00be" />
<public type="style" name="feedback_screen" id="0x7f0e00bf" />
<public type="style" name="bullet_image.reader_mode" id="0x7f0e00c0" />
<public type="style" name="bullet_text.reader_mode" id="0x7f0e00c1" />
<public type="menu" name="landing_activity_mainmenu" id="0x7f0f0001" />
<public type="menu" name="library_activity_mainmenu" id="0x7f0f0002" />
<public type="menu" name="mop_reader_activity_mainmenu" id="0x7f0f0003" />
<public type="menu" name="pdf_reader_activity_mainmenu" id="0x7f0f0004" />
<public type="menu" name="pdf_reader_mainmenu" id="0x7f0f0005" />
<public type="menu" name="periodical_article_list_mainmenu" id="0x7f0f0006" />
<public type="menu" name="periodical_reader_mainmenu" id="0x7f0f0007" />
<public type="menu" name="reader_activity_mainmenu" id="0x7f0f0008" />
<public type="menu" name="reader_text_selection_mode_mainmenu" id="0x7f0f0009" />
<public type="menu" name="store_activity_mainmenu" id="0x7f0f000a" />
<public type="menu" name="unused_placeholder" id="0x7f0f000b" />
<public type="menu" name="feedback_activity_mainmenu" id="0x7f0f0000" />
</resources>

Last edited by enitro; 05-18-2012 at 08:00 PM.
enitro is offline   Reply With Quote