{ "nbformat": 4, "nbformat_minor": 0, "metadata": { "colab": { "name": "2021-06-10-recobook-dive-aware-book-recommender.ipynb", "provenance": [], "collapsed_sections": [], "authorship_tag": "ABX9TyPR7dJBCHHtyu9kAxj2TxK/" }, "kernelspec": { "name": "python3", "display_name": "Python 3" }, "language_info": { "name": "python" } }, "cells": [ { "cell_type": "markdown", "metadata": { "id": "yH-WcJpQKox7" }, "source": [ "# Diversity Aware Book Recommender\n", "> A tutorial on building an amazon-like book recommender and keeping diversity as an important factor\n", "\n", "- toc: true\n", "- badges: true\n", "- comments: true\n", "- categories: [diversity, book]\n", "- image: " ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "es2KlLDTpa89", "outputId": "b6c4bf6a-7bda-4c81-b038-b74de763295d" }, "source": [ "# Import libraries\n", "import numpy as np \n", "import pandas as pd \n", "import matplotlib\n", "import os\n", "from sklearn.feature_extraction.text import TfidfVectorizer\n", "from sklearn.metrics.pairwise import linear_kernel\n", "\n", "import nltk\n", "nltk.download('punkt')\n", "nltk.download('stopwords')\n", "\n", "# Displays all rows without truncating\n", "pd.set_option('display.max_rows', None)\n", "\n", "# Display all columns with/without truncating (use \"set\" or \"reset\")\n", "pd.reset_option('display.max_colwidth')" ], "execution_count": 31, "outputs": [ { "output_type": "stream", "text": [ "[nltk_data] Downloading package punkt to /root/nltk_data...\n", "[nltk_data] Package punkt is already up-to-date!\n", "[nltk_data] Downloading package stopwords to /root/nltk_data...\n", "[nltk_data] Unzipping corpora/stopwords.zip.\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "33he3MF5m0gp", "outputId": "73c9cb4f-4dec-41c5-aaa1-66a0c17e4118" }, "source": [ "# Load book data from csv\n", "books = pd.read_csv(\"https://raw.githubusercontent.com/sparsh-ai/reco-data/master/goodreads_v2/books.csv\", encoding=\"ISO-8859-1\")\n", "books.info()" ], "execution_count": 3, "outputs": [ { "output_type": "stream", "text": [ "\n", "RangeIndex: 10000 entries, 0 to 9999\n", "Data columns (total 23 columns):\n", " # Column Non-Null Count Dtype \n", "--- ------ -------------- ----- \n", " 0 id 10000 non-null int64 \n", " 1 book_id 10000 non-null int64 \n", " 2 best_book_id 10000 non-null int64 \n", " 3 work_id 10000 non-null int64 \n", " 4 books_count 10000 non-null int64 \n", " 5 isbn 9300 non-null object \n", " 6 isbn13 9415 non-null float64\n", " 7 authors 10000 non-null object \n", " 8 original_publication_year 9979 non-null float64\n", " 9 original_title 9415 non-null object \n", " 10 title 10000 non-null object \n", " 11 language_code 8916 non-null object \n", " 12 average_rating 10000 non-null float64\n", " 13 ratings_count 10000 non-null int64 \n", " 14 work_ratings_count 10000 non-null int64 \n", " 15 work_text_reviews_count 10000 non-null int64 \n", " 16 ratings_1 10000 non-null int64 \n", " 17 ratings_2 10000 non-null int64 \n", " 18 ratings_3 10000 non-null int64 \n", " 19 ratings_4 10000 non-null int64 \n", " 20 ratings_5 10000 non-null int64 \n", " 21 image_url 10000 non-null object \n", " 22 small_image_url 10000 non-null object \n", "dtypes: float64(3), int64(13), object(7)\n", "memory usage: 1.8+ MB\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 1000 }, "id": "BOeKn-Qdn6Uf", "outputId": "26214f51-b2e1-491d-ea66-04a66a065195" }, "source": [ "books.sample(20)" ], "execution_count": 4, "outputs": [ { "output_type": "execute_result", "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
idbook_idbest_book_idwork_idbooks_countisbnisbn13authorsoriginal_publication_yearoriginal_titletitlelanguage_codeaverage_ratingratings_countwork_ratings_countwork_text_reviews_countratings_1ratings_2ratings_3ratings_4ratings_5image_urlsmall_image_url
6032603320893314208933144023632845159448600X9.781594e+12Marlon James2014.0A Brief History of Seven KillingsA Brief History of Seven Killingseng3.86135781711927537681238325062225641https://images.gr-assets.com/books/1399045083m...https://images.gr-assets.com/books/1399045083s...
43094310685266852689185369608886289.780061e+12Bernard Cornwell2006.0The Lords of the NorthLords of the North (The Saxon Stories, #3)en-US4.3220296245018114322227661039311077https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
75847585551536551536538777174398458239.780440e+12Chris d'Lacey2005.0Fire StarFire Star (The Last Dragon Chronicles, #3)eng3.9113595142284423881018332042065296https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
8297829833906339062420507193160145329.780316e+12Sara Zarr2007.0Story of a GirlStory of a Girlen-US3.67142821506416083911430462648863731https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
9438943935539355391654509173160133159.780316e+12Bob Spitz2005.0The Beatles: The BiographyThe Beatles: The Biographyen-US4.1381208464390205314127030203655https://images.gr-assets.com/books/1327951066m...https://images.gr-assets.com/books/1327951066s...
558055814803748037470153978095108399.780810e+12J. Sheridan Le Fanu1872.0CarmillaCarmillaeng3.83215822499216683381449708893446773https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
6091609292014392014359640488234047069.780823e+12Trina Schart Hyman, Johann Grimm, Wilhelm Grimm1983.0RotkäppchenLittle Red Riding Hoodeng4.111922419453507150792448953088714https://images.gr-assets.com/books/1314485414m...https://images.gr-assets.com/books/1314485414s...
841384141726223617262236238590362814231830969.781423e+12Elizabeth Wein2013.0Rose Under FireRose Under Fire (Code Name Verity, #2)eng4.1313526150642573430523202957646318https://images.gr-assets.com/books/1368219053m...https://images.gr-assets.com/books/1368219053s...
5367536825776122257761224562506048129931019.780813e+12Helen Simonson2016.0The Summer Before the WarThe Summer Before the Wareng3.79173502224036134081439577893565259https://images.gr-assets.com/books/1443294379m...https://images.gr-assets.com/books/1443294379s...
84458446130631306325591382324466956459.780447e+12Carl Hiaasen2002.0NaNBasket CaseNaN3.81119091312776376559393658242732https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
140914101632816328107311029615791262789.781579e+12Agatha Christie1926.0The Murder of Roger AckroydThe Murder of Roger Ackroyd (Hercule Poirot, #4)eng4.20713548454051653662006143373154236289https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
963896391995311995311483450343454856029.780345e+12Fannie Flagg1981.0Daisy Fay and the Miracle ManDaisy Fay and the Miracle Maneng3.941029211725872129565290143693761https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
2540254113351841335184132471933070010409.780307e+12Eugene Bradley Coco, Ron Dias, Walt Disney Com...1960.0Peter Pan (Little Golden Book)Peter Pan (A Little Golden Book)eng4.3238907389117650811996020877522409https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
3941394259969599692725244015930729459.781593e+12Frank Miller1993.0Sin City: A Dame to Kill ForSin City, Vol. 2: A Dame to Kill For (Sin City...eng4.162317024012386251720396190979983https://images.gr-assets.com/books/1470924735m...https://images.gr-assets.com/books/1470924735s...
876587669921899218208184837076534078X9.780765e+12Brian Herbert, Kevin J. Anderson2002.0Dune: The Machine CrusadeThe Machine Crusade (Legends of Dune, #2)eng3.731012611041221476924285336653123https://images.gr-assets.com/books/1412547890m...https://images.gr-assets.com/books/1412547890s...
702970302391092391091265950247869322879.780787e+12R.A. Salvatore2003.0The Lone DrowThe Lone Drow (Forgotten Realms: Hunter's Blad...en-US4.15128771378013586535249248245843https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
557355747558747281499819871439333857376379.780386e+12Jennifer Donnelly2010.0RevolutionRevolutioneng4.02206072484337655921363462686279635https://images.gr-assets.com/books/1320530843m...https://images.gr-assets.com/books/1320530843s...
53865387206731206731289921973625083429.780063e+12Sogyal Rinpoche, Andrew Harvey1992.0The Tibetan Book of Living and DyingThe Tibetan Book of Living and DyingNaN4.221717018380491236621287058478806https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
314315489448943332594128918837689.780092e+12Spencer Johnson, Kenneth H. Blanchard1998.0Who Moved My Cheese?Who Moved My Cheese?eng3.7423727225313478771216123384619347719678459https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...
25512552959795971005005913853337819.780385e+12Kurt Vonnegut Jr.1952.0Player PianoPlayer Pianoeng3.8534362367241365280186310065153199197https://images.gr-assets.com/books/1488041609m...https://images.gr-assets.com/books/1488041609s...
\n", "
" ], "text/plain": [ " id ... small_image_url\n", "6032 6033 ... https://images.gr-assets.com/books/1399045083s...\n", "4309 4310 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "7584 7585 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "8297 8298 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "9438 9439 ... https://images.gr-assets.com/books/1327951066s...\n", "5580 5581 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "6091 6092 ... https://images.gr-assets.com/books/1314485414s...\n", "8413 8414 ... https://images.gr-assets.com/books/1368219053s...\n", "5367 5368 ... https://images.gr-assets.com/books/1443294379s...\n", "8445 8446 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "1409 1410 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "9638 9639 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "2540 2541 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "3941 3942 ... https://images.gr-assets.com/books/1470924735s...\n", "8765 8766 ... https://images.gr-assets.com/books/1412547890s...\n", "7029 7030 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "5573 5574 ... https://images.gr-assets.com/books/1320530843s...\n", "5386 5387 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "314 315 ... https://s.gr-assets.com/assets/nophoto/book/50...\n", "2551 2552 ... https://images.gr-assets.com/books/1488041609s...\n", "\n", "[20 rows x 23 columns]" ] }, "metadata": { "tags": [] }, "execution_count": 4 } ] }, { "cell_type": "markdown", "metadata": { "id": "vKHkghcDoBhp" }, "source": [ "There are 10,000 books in this dataset and we want “book tags” as a key feature because it has rich data about the books to help us with recommendations. That data lives in different datasets so we have to data wrangle and piece the data puzzle together." ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 1000 }, "id": "4aOz1T4qn8TI", "outputId": "7b3cd90d-05ad-43eb-b3cd-6be9805a710a" }, "source": [ "# Load tags book_tags data from csv\n", "book_tags = pd.read_csv(\"https://raw.githubusercontent.com/sparsh-ai/reco-data/master/goodreads_v2/book_tags.csv\", encoding=\"ISO-8859-1\")\n", "tags = pd.read_csv(\"https://raw.githubusercontent.com/sparsh-ai/reco-data/master/goodreads_v2/tags.csv\", encoding=\"ISO-8859-1\")\n", "# Merge book_tags and tags \n", "tags_join = pd.merge(book_tags, tags, left_on='tag_id', right_on='tag_id', how='inner')\n", "# Merge tags_join and books\n", "books_with_tags = pd.merge(books, tags_join, left_on='book_id', right_on='goodreads_book_id', how='inner')\n", "# Store tags into the same book id row\n", "temp_df = books_with_tags.groupby('book_id')['tag_name'].apply(' '.join).reset_index()\n", "temp_df.head(5)\n", "# Merge tag_names back into books\n", "books = pd.merge(books, temp_df, left_on='book_id', right_on='book_id', how='inner')\n", "books.sample(20)" ], "execution_count": 5, "outputs": [ { "output_type": "execute_result", "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
idbook_idbest_book_idwork_idbooks_countisbnisbn13authorsoriginal_publication_yearoriginal_titletitlelanguage_codeaverage_ratingratings_countwork_ratings_countwork_text_reviews_countratings_1ratings_2ratings_3ratings_4ratings_5image_urlsmall_image_urltag_name
64106411213282132814252281014012050039.781401e+12Bill Willingham, Mark Buckingham, David Hahn, ...2006.0Fables, Volume 6: HomelandsFables, Vol. 6: Homelandseng4.301889319219585123330231072609196https://images.gr-assets.com/books/1327962707m...https://images.gr-assets.com/books/1327962707s...to-read fantasy favorites currently-reading fi...
445744585369825369825244233215973725529.781597e+12D.J. MacHale2003.0The Never WarThe Never War (Pendragon, #3)eng4.1224219252454742669144836872710502https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...to-read fantasy favorites currently-reading yo...
920792082204059822040598413633531815964357399.781596e+12Scott McCloud2015.0The SculptorThe Sculptoreng4.0010038109021789327655198136144325https://images.gr-assets.com/books/1418629570m...https://images.gr-assets.com/books/1418629570s...to-read fantasy favorites currently-reading yo...
6392639342792042792024612755215587446309.781559e+12Jack Canfield, Mark Victor Hansen, Kimberly Ki...1997.0Chicken Soup for the Teenage Soul (Chicken Sou...Chicken Soup for the Teenage Soul: 101 Stories...eng3.9114722160977163241049401350585653https://images.gr-assets.com/books/1331052651m...https://images.gr-assets.com/books/1331052651s...to-read favorites currently-reading young-adul...
4108410918301124272373582578924839NaN9.781302e+12Amy Harmon2013.0Making FacesMaking Faceseng4.3625941421306337607125646631132724277https://images.gr-assets.com/books/1378983590m...https://images.gr-assets.com/books/1378983590s...to-read favorites currently-reading young-adul...
15921593138121381215983585535649439.780554e+12Raymond E. Feist1982.0MagicianMagician: Apprentice (The Riftwar Saga, #1)en-US4.17624326494812318062358104652260628713https://images.gr-assets.com/books/1408317983m...https://images.gr-assets.com/books/1408317983s...to-read fantasy favorites currently-reading yo...
78547855351559351559145965087610435599.780061e+12Dorothy L. Sayers1933.0Murder Must AdvertiseMurder Must Advertise (Lord Peter Wimsey, #10)eng4.211467215762654102353257257716964https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...to-read favorites currently-reading fiction bo...
7327337714277142167761597067976402X9.780680e+12David Guterson1994.0Snow Falling on CedarsSnow Falling on Cedarseng3.80131945136212388125079023359945440834280https://images.gr-assets.com/books/1479863528m...https://images.gr-assets.com/books/1479863528s...to-read favorites currently-reading fiction bo...
7884788528802599288025992495255710NaNNaNPaul Pen, Simon Bruni2013.0NaNThe Light of the Firefliesen-US3.76138151504817434471247380955234022https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...to-read favorites currently-reading young-adul...
63856386743817974381799438856333454965749.780345e+12Peter F. Hamilton2009.0The Evolutionary VoidThe Evolutionary Voideng4.25134401560947189310211461206976https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...to-read fantasy favorites currently-reading fi...
8442844378317427831742108971162916068405849.781607e+12Bree Despain2010.0The Lost SaintThe Lost Saint (The Dark Divine, #2)eng4.0415328157121006297835323449916355https://images.gr-assets.com/books/1327883674m...https://images.gr-assets.com/books/1327883674s...to-read fantasy favorites currently-reading yo...
540154029373193731107520075600961289.780060e+12Meg Cabot2003.0Princess in PinkPrincess in Pink (The Princess Diaries, #5)eng3.69270572954063944425041012092227250https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...to-read favorites currently-reading young-adul...
9300930111429114291388619031024756X9.780310e+12Karen Kingsbury2006.0Ever AfterEver After (Lost Love, #2)en-US4.3196859949357118318130328115399https://s.gr-assets.com/assets/nophoto/book/11...https://s.gr-assets.com/assets/nophoto/book/50...to-read favorites currently-reading fiction bo...
8791879217877178773204693134864340959.780486e+12Fyodor Dostoyevsky, Ergin Altay1861.0Записки из Мёртвого домаThe House of the Deadeng4.03835412384804110493253949794263https://images.gr-assets.com/books/1327908745m...https://images.gr-assets.com/books/1327908745s...to-read favorites currently-reading fiction bo...
9939994053168531683214256343160123869.780316e+12Darren Shan2005.0Demon ThiefDemon Thief (The Demonata, #2)NaN4.14105351173348594514214038585127https://images.gr-assets.com/books/1344268460m...https://images.gr-assets.com/books/1344268460s...to-read fantasy favorites currently-reading yo...
4414441514290821429082155554412140633477619.784063e+12Naoko Takeuchi, 武内 直子1991.0美少女戦士セーラームーン美少女戦士セーラームーン新装版 ...jpn4.2818035223197246648662981493312875https://images.gr-assets.com/books/1308886282m...https://images.gr-assets.com/books/1308886282s...to-read fantasy favorites currently-reading yo...
99929993493645749364575002120272240799489.780224e+12Ian Mortimer2008.0The Time-Traveller's Guide to Medieval England...The Time Traveller's Guide to Medieval England...eng3.99982412115970236521249747904071https://images.gr-assets.com/books/1328167619m...https://images.gr-assets.com/books/1328167619s...to-read fantasy favorites currently-reading fi...
63016302915829158224245484694864440749.780486e+12Jane Austen, Robert William Chapman1871.0Lady SusanLady Susaneng3.56170032096920473752061766771083758https://images.gr-assets.com/books/1328864949m...https://images.gr-assets.com/books/1328864949s...to-read favorites currently-reading fiction bo...
2652265321423525214235254073322981034089699X9.780341e+12David Nicholls2014.0UsUseng3.6628856370374002982295010819150597227https://images.gr-assets.com/books/1406116779m...https://images.gr-assets.com/books/1406116779s...to-read favorites currently-reading fiction bo...
808480851537811537811112036195903960569.780590e+12Tamora Pierce2000.0Magic StepsMagic Steps (The Circle Opens, #1)NaN3.981781318884354123902470465736582https://images.gr-assets.com/books/1366188641m...https://images.gr-assets.com/books/1366188641s...to-read fantasy favorites currently-reading yo...
\n", "
" ], "text/plain": [ " id ... tag_name\n", "6410 6411 ... to-read fantasy favorites currently-reading fi...\n", "4457 4458 ... to-read fantasy favorites currently-reading yo...\n", "9207 9208 ... to-read fantasy favorites currently-reading yo...\n", "6392 6393 ... to-read favorites currently-reading young-adul...\n", "4108 4109 ... to-read favorites currently-reading young-adul...\n", "1592 1593 ... to-read fantasy favorites currently-reading yo...\n", "7854 7855 ... to-read favorites currently-reading fiction bo...\n", "732 733 ... to-read favorites currently-reading fiction bo...\n", "7884 7885 ... to-read favorites currently-reading young-adul...\n", "6385 6386 ... to-read fantasy favorites currently-reading fi...\n", "8442 8443 ... to-read fantasy favorites currently-reading yo...\n", "5401 5402 ... to-read favorites currently-reading young-adul...\n", "9300 9301 ... to-read favorites currently-reading fiction bo...\n", "8791 8792 ... to-read favorites currently-reading fiction bo...\n", "9939 9940 ... to-read fantasy favorites currently-reading yo...\n", "4414 4415 ... to-read fantasy favorites currently-reading yo...\n", "9992 9993 ... to-read fantasy favorites currently-reading fi...\n", "6301 6302 ... to-read favorites currently-reading fiction bo...\n", "2652 2653 ... to-read favorites currently-reading fiction bo...\n", "8084 8085 ... to-read fantasy favorites currently-reading yo...\n", "\n", "[20 rows x 24 columns]" ] }, "metadata": { "tags": [] }, "execution_count": 5 } ] }, { "cell_type": "markdown", "metadata": { "id": "elBa_oqeoWiQ" }, "source": [ "We now have book tags all in one dataset." ] }, { "cell_type": "markdown", "metadata": { "id": "krkmIMqYoaPg" }, "source": [ "We have 10,000 books in the dataset each with 100 book tags. What do these book tags contain?" ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 137 }, "id": "XLvRBt2ooQcv", "outputId": "8c8de793-3405-4627-e8a0-fa170a4e99c6" }, "source": [ "# Explore book tags\n", "books['tag_name'][0]" ], "execution_count": 6, "outputs": [ { "output_type": "execute_result", "data": { "application/vnd.google.colaboratory.intrinsic+json": { "type": "string" }, "text/plain": [ "'to-read fantasy favorites currently-reading young-adult fiction books-i-own owned ya series favourites re-read adventure sci-fi-fantasy all-time-favorites default my-books reread i-own audiobook 5-stars favorite-books novels fantasy-sci-fi favorite audiobooks read-more-than-once my-library ya-fantasy teen english books ya-fiction my-favorites own-it library audio young-adult-fiction novel scifi-fantasy faves favorite-series shelfari-favorites kindle romance favourite to-buy read-in-2014 ebook contemporary 5-star coming-of-age favourite-books favs action read-in-2013 read-in-2011 finished ya-books borrowed sci-fi ya-lit loved love thriller science-fiction finished-series action-adventure scifi sf book-club speculative-fiction ebooks e-book read-in-2012 read-in-2010 survival future drama reviewed suspense dystopia dystopian post-apocalyptic read-2012 dystopias dystopian-fiction distopia distopian read-2011 teen-fiction 2012-reads futuristic ya-dystopian trilogy completed-series love-triangle suzanne-collins hunger-games the-hunger-games'" ] }, "metadata": { "tags": [] }, "execution_count": 6 } ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 137 }, "id": "fWWCbX8Uob5Y", "outputId": "83d628af-7d3c-4d29-ecaf-686147e4bf09" }, "source": [ "books['tag_name'][1]" ], "execution_count": 7, "outputs": [ { "output_type": "execute_result", "data": { "application/vnd.google.colaboratory.intrinsic+json": { "type": "string" }, "text/plain": [ "'to-read fantasy favorites currently-reading young-adult fiction harry-potter books-i-own owned owned ya series favourites magic childrens owned-books re-read adventure children j-k-rowling children-s sci-fi-fantasy childhood all-time-favorites default my-books classics reread i-own audiobook 5-stars children-s-books favorite-books kids novels fantasy-sci-fi favorite middle-grade audiobooks paranormal read-more-than-once my-library ya-fantasy teen witches english urban-fantasy british jk-rowling books read-in-2016 supernatural re-reads mystery ya-fiction harry-potter-series my-favorites own-it childrens-books library audio young-adult-fiction novel scifi-fantasy wizards faves favorite-series read-in-2015 juvenile shelfari-favorites kindle youth favourite to-buy read-in-2014 to-re-read all-time-favourites childhood-favorites kids-books ebook rereads contemporary read-in-english science-fiction-fantasy read-in-2017 england children-s-literature favourite-books on-my-shelf my-bookshelf children-s-lit bookshelf favs childhood-books classic read-in-2013 re-reading read-2016 friendship read-2015'" ] }, "metadata": { "tags": [] }, "execution_count": 7 } ] }, { "cell_type": "markdown", "metadata": { "id": "vDx1xFfKopM_" }, "source": [ "We want to transform these texts into numerical values so we have data that the machine learning algorithm understands. TfidfVectorizer turns text into feature vectors." ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "b7DFk04mofs-", "outputId": "e5af344f-76c1-4167-a0ff-a10c6b4482fd" }, "source": [ "# Transform text to feature vectors\n", "tf = TfidfVectorizer(analyzer='word',ngram_range=(1, 2),min_df=50, stop_words='english')\n", "tfidf_matrix = tf.fit_transform(books['tag_name'])\n", "tfidf_matrix.todense()" ], "execution_count": 8, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "matrix([[0., 0., 0., ..., 0., 0., 0.],\n", " [0., 0., 0., ..., 0., 0., 0.],\n", " [0., 0., 0., ..., 0., 0., 0.],\n", " ...,\n", " [0., 0., 0., ..., 0., 0., 0.],\n", " [0., 0., 0., ..., 0., 0., 0.],\n", " [0., 0., 0., ..., 0., 0., 0.]])" ] }, "metadata": { "tags": [] }, "execution_count": 8 } ] }, { "cell_type": "markdown", "metadata": { "id": "GlEQ3_poqYK9" }, "source": [ "TF-IDF (Term Frequency — Inverse Document Frequency) calculates how important words are in relation to the whole document. TF summarizes how often a given word appears within a document. IDF downscales words that appear frequently across documents. This allows TF-IDF to define the importance of words within a document based on the relationship and weighting factor." ] }, { "cell_type": "markdown", "metadata": { "id": "bAen3ZJEqa3Z" }, "source": [ "Now we build the recommender. We can use cosine similarity to calculate the numeric values that denote similarities between books." ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "rR_ASU9Nq3Ch", "outputId": "ec3e9e56-3f83-49ee-b7c7-baecfbf600dc" }, "source": [ "tfidf_matrix" ], "execution_count": 9, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "<10000x4156 sparse matrix of type ''\n", "\twith 1645829 stored elements in Compressed Sparse Row format>" ] }, "metadata": { "tags": [] }, "execution_count": 9 } ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "cQ1vcuGhqWed", "outputId": "46303153-91f8-44ae-f124-33830740a367" }, "source": [ "# Use numeric values to find similarities\n", "cosine_sim = linear_kernel(tfidf_matrix, tfidf_matrix)\n", "cosine_sim" ], "execution_count": 11, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "array([[1. , 0.36212089, 0.44541704, ..., 0.13917794, 0.1348777 ,\n", " 0.02627779],\n", " [0.36212089, 1. , 0.34429371, ..., 0.14158388, 0.11790885,\n", " 0.03529777],\n", " [0.44541704, 0.34429371, 1. , ..., 0.09165124, 0.07197058,\n", " 0.0228239 ],\n", " ...,\n", " [0.13917794, 0.14158388, 0.09165124, ..., 1. , 0.07749932,\n", " 0.19530793],\n", " [0.1348777 , 0.11790885, 0.07197058, ..., 0.07749932, 1. ,\n", " 0.12073876],\n", " [0.02627779, 0.03529777, 0.0228239 , ..., 0.19530793, 0.12073876,\n", " 1. ]])" ] }, "metadata": { "tags": [] }, "execution_count": 11 } ] }, { "cell_type": "markdown", "metadata": { "id": "pa4ipcM7qe8C" }, "source": [ "Cosine similarity measures the cosine of the angle between two vectors projected in a multi-dimensional space. The smaller the angle, the higher the cosine similarity. In other words, the closer these book tags are to each other, the more similar the book.\n" ] }, { "cell_type": "markdown", "metadata": { "id": "l0ByNaKBqgdX" }, "source": [ "Next we write the machine learning algorithm.\n" ] }, { "cell_type": "code", "metadata": { "id": "zeMLYtssqem5" }, "source": [ "# Get book recommendations based on the cosine similarity score of book tags\n", "# Build a 1-dimensional array with book titles\n", "titles = books['title']\n", "tag_name = books['tag_name']\n", "indices = pd.Series(books.index, index=books['title'])\n", "# Function that gets similarity scores\n", "def tags_recommendations(title):\n", " idx = indices[title]\n", " sim_scores = list(enumerate(cosine_sim[idx]))\n", " sim_scores = sorted(sim_scores, key=lambda x: x[1], reverse=True)\n", " # sim_scores = sim_scores[1:11] # How many results to display\n", " book_indices = [i[0] for i in sim_scores]\n", " title_df = pd.DataFrame({'title': titles.iloc[book_indices].tolist(),\n", " 'similarity': [i[1] for i in sim_scores],\n", " 'tag_name': tag_name.iloc[book_indices].tolist()}, \n", " index=book_indices)\n", " return title_df" ], "execution_count": 22, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "ovainAgCr8m3" }, "source": [ "This is the foundational code we need for a recommendation engine. This is the building block for Amazon’s $98 billion revenue-generating algorithm and others like it. Almost seems too simple. We can stop here or we can expand our code to show more data insights." ] }, { "cell_type": "code", "metadata": { "id": "ep8Z1ZA2qc-t" }, "source": [ "# Function that gets book tags and stats\n", "def recommend_stats(target_book_title):\n", " \n", " # Get recommended books\n", " rec_df = tags_recommendations(target_book_title)\n", " \n", " # Get tags of the target book\n", " rec_book_tags = books_with_tags[books_with_tags['title'] == target_book_title]['tag_name'].to_list()\n", " \n", " # Create dictionary of tag lists by book title\n", " book_tag_dict = {}\n", " for title in rec_df['title'].tolist():\n", " book_tag_dict[title] = books_with_tags[books_with_tags['title'] == title]['tag_name'].to_list()\n", " \n", " # Create dictionary of tag statistics by book title\n", " tags_stats = {}\n", " for book, tags in book_tag_dict.items():\n", " tags_stats[book] = {}\n", " tags_stats[book]['total_tags'] = len(tags)\n", " same_tags = set(rec_book_tags).intersection(set(tags)) # Get tags in recommended book that are also in target book\n", " tags_stats[book]['%_common_tags'] = (len(same_tags) / len(tags)) * 100\n", " \n", " # Convert dictionary to dataframe\n", " tags_stats_df = pd.DataFrame.from_dict(tags_stats, orient='index').reset_index().rename(columns={'index': 'title'})\n", " \n", " # Merge tag statistics dataframe to recommended books dataframe\n", " all_stats_df = pd.merge(rec_df, tags_stats_df, on='title')\n", " return all_stats_df" ], "execution_count": 23, "outputs": [] }, { "cell_type": "markdown", "metadata": { "id": "fYJib_JpsCd_" }, "source": [ "Now we input Lord of the Rings into the recommendation engine and see the results." ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 1000 }, "id": "GmZiE-_IsBGY", "outputId": "08f03d81-cffa-4c8d-b18b-4bfd9697f72b" }, "source": [ "# Find book recommendations\n", "lor_recs = recommend_stats('The Fellowship of the Ring (The Lord of the Rings, #1)')\n", "lor_recs" ], "execution_count": 24, "outputs": [ { "output_type": "execute_result", "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlesimilaritytag_nametotal_tags%_common_tags
0The Fellowship of the Ring (The Lord of the Ri...1.000000to-read fantasy favorites currently-reading yo...100100.000000
1The Return of the King (The Lord of the Rings,...0.891312to-read fantasy favorites currently-reading yo...10092.000000
2The Two Towers (The Lord of the Rings, #2)0.862019to-read fantasy favorites currently-reading yo...10090.000000
3The Lord of the Rings (The Lord of the Rings, ...0.788876to-read fantasy favorites currently-reading yo...10084.000000
4The Silmarillion (Middle-Earth Universe)0.742551to-read fantasy favorites currently-reading yo...10077.000000
5The Hobbit0.678304to-read fantasy favorites currently-reading yo...10076.000000
6The Children of Húrin0.670856to-read fantasy favorites currently-reading yo...10067.000000
7Dragons of Autumn Twilight (Dragonlance: Chro...0.658293to-read fantasy favorites currently-reading yo...10065.000000
8Pawn of Prophecy (The Belgariad, #1)0.644427to-read fantasy favorites currently-reading yo...10061.000000
9Castle of Wizardry (The Belgariad, #4)0.642979to-read fantasy favorites currently-reading yo...10059.000000
10A Clash of Kings (A Song of Ice and Fire, #2)0.641631to-read fantasy favorites currently-reading fi...10067.000000
11Unfinished Tales of Númenor and Middle-Earth0.639420to-read fantasy favorites currently-reading fi...10065.000000
12Dragons of Winter Night (Dragonlance: Chronicl...0.636501to-read fantasy favorites currently-reading yo...10058.000000
13Arrow's Fall (Heralds of Valdemar, #3)0.636334to-read fantasy favorites currently-reading yo...10056.000000
14War of the Twins (Dragonlance: Legends, #2)0.631833to-read fantasy favorites currently-reading yo...10057.000000
15Stone of Farewell (Memory, Sorrow, and Thorn, #2)0.630999to-read fantasy favorites currently-reading yo...10056.000000
16Polgara the Sorceress (Malloreon)0.629755to-read fantasy favorites currently-reading yo...10058.000000
17Magician's Gambit (The Belgariad, #3)0.629110to-read fantasy favorites currently-reading yo...10058.000000
18Enchanters' End Game (The Belgariad, #5)0.628748to-read fantasy favorites currently-reading yo...10058.000000
19Sorceress of Darshiva (The Malloreon, #4)0.628412to-read fantasy favorites currently-reading yo...10056.000000
20Queen of Sorcery (The Belgariad, #2)0.627501to-read fantasy favorites currently-reading yo...10058.000000
21Belgarath the Sorcerer0.627036to-read fantasy favorites currently-reading yo...10059.000000
22The Dragon Reborn (Wheel of Time, #3)0.625993to-read fantasy favorites currently-reading yo...10061.000000
23The White Dragon (Pern, #3)0.625795to-read fantasy favorites currently-reading yo...10058.000000
24The Sapphire Rose (The Elenium, #3)0.623826to-read fantasy favorites currently-reading yo...10057.000000
25J.R.R. Tolkien 4-Book Boxed Set: The Hobbit an...0.621966to-read fantasy favorites currently-reading yo...10059.000000
26The Eye of the World (Wheel of Time, #1)0.621135to-read fantasy favorites currently-reading yo...10065.000000
27The Farthest Shore (Earthsea Cycle, #3)0.620351to-read fantasy favorites currently-reading yo...10062.000000
28The Courts of Chaos (The Chronicles of Amber #5)0.619634to-read fantasy favorites currently-reading fi...10054.000000
29The Seeress of Kell (The Malloreon, #5)0.619413to-read fantasy favorites currently-reading yo...10056.000000
30Guardians of the West (The Malloreon, #1)0.619191to-read fantasy favorites currently-reading yo...10056.000000
31The Dragonbone Chair (Memory, Sorrow, and Thor...0.618256to-read fantasy favorites currently-reading yo...10058.000000
32Silverthorn (The Riftwar Saga, #3)0.617223to-read fantasy favorites currently-reading yo...10055.000000
33The Elfstones of Shannara (The Original Shann...0.617196to-read fantasy favorites currently-reading yo...10059.000000
34Dragons of Spring Dawning (Dragonlance: Chroni...0.615865to-read fantasy favorites young-adult fiction ...10058.000000
35A Feast for Crows (A Song of Ice and Fire, #4)0.615426to-read fantasy favorites fiction books-i-own ...10063.000000
36King of the Murgos (The Malloreon, #2)0.612867to-read fantasy favorites currently-reading yo...10056.000000
37A Storm of Swords (A Song of Ice and Fire, #3)0.610582to-read fantasy favorites currently-reading fi...10064.000000
38Domes of Fire (The Tamuli, #1)0.609683to-read fantasy favorites currently-reading yo...10052.000000
39A Wizard of Earthsea (Earthsea Cycle, #1)0.609153to-read fantasy favorites currently-reading yo...10060.000000
40The Fires of Heaven (Wheel of Time, #5)0.608978to-read fantasy favorites currently-reading fi...10058.000000
41Dragonsong (Harper Hall, #1)0.607960to-read fantasy favorites currently-reading yo...10060.000000
42The Ruby Knight (The Elenium, #2)0.607761to-read fantasy favorites currently-reading yo...10056.000000
43Sign of the Unicorn (The Chronicles of Amber #3)0.606445to-read fantasy favorites currently-reading fi...10054.000000
44The Shadow Rising (Wheel of Time, #4)0.606059to-read fantasy favorites currently-reading fi...10056.000000
45The Tombs of Atuan (Earthsea Cycle, #2)0.605894to-read fantasy favorites currently-reading yo...10062.000000
46The Great Hunt (Wheel of Time, #2)0.605737to-read fantasy favorites currently-reading yo...10057.000000
47Test of the Twins (Dragonlance: Legends, #3)0.605672to-read fantasy favorites currently-reading yo...10053.000000
48Dragonflight (Dragonriders of Pern, #1)0.605480to-read fantasy favorites currently-reading yo...10063.000000
49To Green Angel Tower (Memory, Sorrow, and Thor...0.605189to-read fantasy favorites currently-reading yo...10054.000000
50Lord of Chaos (Wheel of Time, #6)0.604537to-read fantasy favorites currently-reading fi...10056.000000
51Sojourn (Forgotten Realms: The Dark Elf Trilog...0.603964to-read fantasy favorites currently-reading yo...10055.000000
52Nine Princes in Amber (The Chronicles of Amber...0.603540to-read fantasy favorites currently-reading fi...10052.000000
53The Earthsea Trilogy0.603462to-read fantasy favorites currently-reading yo...10050.000000
54Time of the Twins (Dragonlance: Legends, #1)0.603051to-read fantasy favorites currently-reading yo...10054.000000
55Golden Fool (Tawny Man, #2)0.602892to-read fantasy favorites currently-reading yo...10059.000000
56The Diamond Throne (The Elenium, #1)0.602859to-read fantasy favorites currently-reading yo...10057.000000
57The Darkest Road (The Fionavar Tapestry, #3)0.602309to-read fantasy favorites currently-reading yo...10052.000000
58The Crystal Shard (Forgotten Realms: Icewind D...0.601993to-read fantasy favorites currently-reading yo...10057.000000
59The Hitchhiker's Guide to the Galaxy (Hitchhik...0.601992to-read fantasy favorites currently-reading yo...10066.000000
60Fool's Errand (Tawny Man, #1)0.600811to-read fantasy favorites currently-reading yo...10058.000000
61The Guns of Avalon (The Chronicles of Amber #2)0.600319to-read fantasy favorites currently-reading fi...10052.000000
62To Green Angel Tower, Part 2 (Memory, Sorrow, ...0.599635to-read fantasy favorites currently-reading yo...10052.000000
63The Wishsong of Shannara (The Original Shannar...0.599613to-read fantasy favorites currently-reading yo...10056.000000
64Crossroads of Twilight (Wheel of Time, #10)0.599454to-read fantasy favorites currently-reading fi...10055.000000
65The Shining Ones (The Tamuli, #2)0.599053to-read fantasy favorites currently-reading yo...10052.000000
66A Dance with Dragons (A Song of Ice and Fire, #5)0.598981to-read fantasy favorites currently-reading fi...10064.000000
67Demon Lord of Karanda (The Malloreon, #3)0.598063to-read fantasy favorites currently-reading yo...10055.000000
68The Dark Elf Trilogy Collector's Edition (Forg...0.597953to-read fantasy favorites currently-reading yo...10054.000000
69The Wise Man's Fear (The Kingkiller Chronicle,...0.596816to-read fantasy favorites currently-reading yo...10062.000000
70A Crown of Swords (Wheel of Time, #7)0.596497to-read fantasy favorites currently-reading fi...10055.000000
71The Talismans of Shannara (Heritage of Shannar...0.596328to-read fantasy favorites currently-reading yo...10053.000000
72By the Sword (Valdemar)0.596315to-read fantasy favorites currently-reading yo...10052.000000
73Dragonquest (Pern, #2)0.596283to-read fantasy favorites currently-reading yo...10057.000000
74The Sword of Shannara (The Original Shannara T...0.595583to-read fantasy favorites currently-reading yo...10060.000000
75Words of Radiance (The Stormlight Archive, #2)0.594626to-read fantasy favorites currently-reading fi...10057.000000
76The Great Book of Amber (The Chronicles of Amb...0.594115to-read fantasy favorites currently-reading fi...10052.000000
77The Hand of Oberon (The Chronicles of Amber #4)0.593671to-read fantasy favorites currently-reading fi...10051.000000
78To Green Angel Tower, Part 1 (Memory, Sorrow, ...0.592273to-read fantasy favorites currently-reading yo...10052.000000
79The Way of Kings (The Stormlight Archive, #1)0.591766to-read fantasy favorites currently-reading fi...10060.000000
80Assassin's Apprentice (Farseer Trilogy, #1)0.591585to-read fantasy favorites currently-reading yo...10063.000000
81The Hidden City (The Tamuli, #3)0.591285to-read fantasy favorites currently-reading yo...10051.000000
82A Darkness At Sethanon (The Riftwar Saga, #4)0.590399to-read fantasy favorites currently-reading fi...10051.000000
83Winter's Heart (Wheel of Time, #9)0.589416to-read fantasy favorites currently-reading fi...10055.000000
84Knife of Dreams (Wheel of Time, #11)0.588527to-read fantasy favorites currently-reading fi...10055.000000
85New Spring (Wheel of Time, #0)0.588027to-read fantasy favorites currently-reading fi...10052.000000
86The Dragonriders of Pern (Dragonriders of Pern...0.586617to-read fantasy favorites currently-reading yo...10056.000000
87Magic's Price (Valdemar: Last Herald-Mage #3)0.586510to-read fantasy favorites currently-reading yo...10054.000000
88Into the Labyrinth (The Death Gate Cycle, #6)0.586419to-read fantasy favorites currently-reading yo...10052.000000
89Wizard's First Rule (Sword of Truth, #1)0.586107to-read fantasy favorites currently-reading yo...10062.000000
90Ogre, Ogre (Xanth #5)0.585584to-read fantasy favorites currently-reading yo...10045.000000
91Magic's Promise (Valdemar: Last Herald-Mage #2)0.585527to-read fantasy favorites currently-reading yo...10054.000000
92Split Infinity (Apprentice Adept #1)0.585037to-read fantasy favorites currently-reading yo...10048.000000
93The Belgariad, Vol. 1: Pawn of Prophecy / Quee...0.584923to-read fantasy favorites currently-reading yo...10050.000000
94Dragons of Summer Flame (Dragonlance: The Seco...0.584862to-read fantasy favorites currently-reading yo...10049.000000
95The Mists of Avalon (Avalon, #1)0.584474to-read fantasy favorites currently-reading yo...10060.000000
96Bearing an Hourglass (Incarnations of Immortal...0.584186to-read fantasy favorites currently-reading yo...10049.000000
97The Black Unicorn (Magic Kingdom of Landover, #2)0.583770to-read fantasy favorites currently-reading yo...10052.000000
98Magician: Master (The Riftwar Saga, #2)0.583447to-read fantasy favorites currently-reading yo...10055.000000
99The Path of Daggers (Wheel of Time, #8)0.583361to-read fantasy favorites currently-reading fi...10054.000000
100Antrax (Voyage of the Jerle Shannara, #2)0.583318to-read fantasy favorites currently-reading yo...10049.000000
101Homeland (Forgotten Realms: The Dark Elf Trilo...0.582801to-read fantasy favorites currently-reading yo...10058.000000
102Exile (Forgotten Realms: The Dark Elf Trilogy,...0.581966to-read fantasy favorites currently-reading yo...10054.000000
103Arrows of the Queen (Heralds of Valdemar, #1)0.581565to-read fantasy favorites currently-reading yo...10056.000000
104Elantris (Elantris, #1)0.581094to-read fantasy favorites currently-reading yo...10056.000000
105First King of Shannara (The Original Shannara ...0.580395to-read fantasy favorites currently-reading yo...10052.000000
106Fire Sea (The Death Gate Cycle, #3)0.579975to-read fantasy favorites currently-reading fi...10054.000000
107The Name of the Wind (The Kingkiller Chronicle...0.579946to-read fantasy favorites currently-reading yo...10065.000000
108Magic's Pawn (Valdemar: Last Herald-Mage #1)0.579900to-read fantasy favorites currently-reading yo...10056.000000
109The Last Unicorn (The Last Unicorn, #1)0.579823to-read fantasy favorites currently-reading yo...10058.000000
110Royal Assassin (Farseer Trilogy, #2)0.579247to-read fantasy favorites currently-reading yo...10058.000000
111Arrow's Flight (Heralds of Valdemar, #2)0.579178to-read fantasy favorites currently-reading yo...10053.000000
112Magician: Apprentice (The Riftwar Saga, #1)0.578618to-read fantasy favorites currently-reading yo...10057.000000
113Fool's Fate (Tawny Man, #3)0.578332to-read fantasy favorites currently-reading yo...10054.000000
114The Mad Ship (Liveship Traders, #2)0.578313to-read fantasy favorites currently-reading yo...10054.000000
115Centaur Aisle (Xanth, #4)0.578278to-read fantasy favorites currently-reading yo...10043.000000
116Fool's Assassin (The Fitz and the Fool, #1)0.577631to-read fantasy favorites currently-reading fi...10054.000000
117The Scions of Shannara (Heritage of Shannara, #1)0.576520to-read fantasy favorites currently-reading yo...10049.000000
118The Elvenbane (Halfblood Chronicles, #1)0.576396to-read fantasy favorites currently-reading yo...10052.000000
119Trumps of Doom (The Chronicles of Amber, #6)0.575730to-read fantasy favorites currently-reading fi...10046.000000
120Stone of Tears (Sword of Truth, #2)0.575054to-read fantasy favorites currently-reading fi...10057.000000
121The Source of Magic (Xanth, #2)0.574869to-read fantasy favorites currently-reading yo...10046.000000
122Dragondrums (Harper Hall, #3)0.573916to-read fantasy favorites currently-reading yo...10053.000000
123Brisingr (The Inheritance Cycle, #3)0.573288to-read fantasy favorites currently-reading yo...10060.000000
124Night Mare (Xanth, #6)0.573262to-read fantasy favorites currently-reading yo...10044.000000
125A Game of Thrones (A Song of Ice and Fire, #1)0.571936to-read fantasy favorites currently-reading fi...10063.000000
126Ship of Destiny (Liveship Traders, #3)0.571206to-read fantasy favorites currently-reading yo...10054.000000
127The Druid of Shannara (Heritage of Shannara, #2)0.570567to-read fantasy favorites currently-reading yo...10051.000000
128A Memory of Light (Wheel of Time, #14)0.570460to-read fantasy favorites currently-reading fi...10056.000000
129The Redemption of Althalus0.570390to-read fantasy favorites currently-reading yo...10056.000000
130Tigana0.569745to-read fantasy favorites currently-reading fi...10056.000000
131Being a Green Mother (Incarnations of Immortal...0.569449to-read fantasy favorites currently-reading yo...10044.000000
132The Wayfarer Redemption (Wayfarer Redemption, #1)0.569222to-read fantasy favorites currently-reading fi...10051.000000
133Abhorsen (Abhorsen, #3)0.569174to-read fantasy favorites currently-reading yo...10056.000000
134The Elf Queen of Shannara (Heritage of Shannar...0.569106to-read fantasy favorites currently-reading yo...10050.000000
135Ship of Magic (Liveship Traders, #1)0.568784to-read fantasy favorites currently-reading fi...10057.000000
136A Spell for Chameleon (Xanth #1)0.567951to-read fantasy favorites currently-reading yo...10050.000000
137Dragonsinger (Harper Hall, #2)0.567130to-read fantasy favorites currently-reading yo...10056.000000
138Last Argument of Kings (The First Law, #3)0.567003to-read fantasy favorites currently-reading fi...10053.000000
139The Gathering Storm (Wheel of Time, #12)0.566825to-read fantasy favorites currently-reading fi...10055.000000
140City of Dragons (Rain Wild Chronicles, #3)0.566523to-read fantasy favorites currently-reading yo...10053.000000
141The Masterharper of Pern (Pern, #15)0.566291to-read fantasy favorites currently-reading yo...10050.000000
142Eldest (The Inheritance Cycle, #2)0.566025to-read fantasy favorites currently-reading yo...10059.000000
143The Forest House (Avalon, #2)0.565448to-read fantasy favorites currently-reading fi...10051.000000
144Wielding a Red Sword (Incarnations of Immortal...0.565397to-read fantasy favorites currently-reading yo...10049.000000
145The Final Empire (Mistborn, #1)0.564919to-read fantasy favorites currently-reading yo...10060.000000
146The Sword of Shannara Trilogy (Shannara, #1-3)0.564728to-read fantasy favorites currently-reading yo...10054.000000
147The Crystal Cave (Arthurian Saga, #1)0.563263to-read fantasy favorites currently-reading yo...10054.000000
148The Icewind Dale Trilogy Collector's Edition (...0.563232to-read fantasy favorites currently-reading yo...10043.000000
149Gardens of the Moon (The Malazan Book of the F...0.562823to-read fantasy favorites currently-reading fi...10058.000000
150The Wounded Land (The Second Chronicles of Tho...0.562564to-read fantasy favorites currently-reading fi...10050.000000
151Krew elfów (Saga o Wiedźminie, #3)0.562169to-read fantasy favorites currently-reading fi...10054.000000
152White Gold Wielder (The Second Chronicles of T...0.561972to-read fantasy favorites currently-reading fi...10047.000000
153Perelandra (Space Trilogy, #2)0.561750to-read fantasy favorites currently-reading yo...10056.000000
154Inheritance (The Inheritance Cycle, #4)0.561557to-read fantasy favorites currently-reading yo...10059.000000
155Dragonlance Chronicles (Dragonlance #1-3)0.561190to-read fantasy favorites currently-reading yo...10049.000000
156The Power That Preserves (The Chronicles of Th...0.561070to-read fantasy favorites currently-reading fi...10049.000000
157Renegade's Magic (Soldier Son, #3)0.561045to-read fantasy favorites currently-reading fi...10048.000000
158The Well of Ascension (Mistborn, #2)0.560642to-read fantasy favorites currently-reading yo...10059.000000
159Towers of Midnight (Wheel of Time, #13)0.560173to-read fantasy favorites currently-reading fi...10053.000000
160The Blade Itself (The First Law, #1)0.560047to-read fantasy favorites currently-reading fi...10056.000000
161Lord Foul's Bane (The Chronicles of Thomas Cov...0.560025to-read fantasy favorites currently-reading fi...10052.000000
162Memories of Ice (The Malazan Book of the Falle...0.560021to-read fantasy favorites currently-reading fi...10055.000000
163Streams of Silver (Forgotten Realms: Icewind D...0.560012to-read fantasy favorites currently-reading yo...10054.000000
164Lirael (Abhorsen, #2)0.559928to-read fantasy favorites currently-reading yo...10056.000000
165Small Gods (Discworld, #13)0.559273to-read fantasy favorites currently-reading fi...10059.000000
166Soul of the Fire (Sword of Truth, #5)0.559265to-read fantasy favorites currently-reading fi...10054.000000
167Shadow of a Dark Queen (The Serpentwar Saga, #1)0.559001to-read fantasy favorites currently-reading fi...10044.000000
168Running with the Demon (Word & Void, #1)0.558879to-read fantasy favorites currently-reading yo...10048.000000
169On a Pale Horse (Incarnations of Immortality, #1)0.558784to-read fantasy favorites currently-reading yo...10052.000000
170For Love of Evil (Incarnations of Immortality,...0.558355to-read fantasy favorites currently-reading yo...10044.000000
171The Wandering Fire (The Fionavar Tapestry, #2)0.558244to-read fantasy favorites currently-reading yo...10055.000000
172With a Tangled Skein (Incarnations of Immortal...0.557641to-read fantasy favorites currently-reading yo...10045.000000
173The Other Wind (Earthsea Cycle, #6)0.557294to-read fantasy favorites currently-reading yo...10053.000000
174Mountain of Black Glass (Otherland, #3)0.557160to-read fantasy favorites currently-reading fi...10046.000000
175The Summer Tree (The Fionavar Tapestry #1)0.557027to-read fantasy favorites currently-reading yo...10057.000000
176The Elves of Cintra (Genesis of Shannara, #2)0.556527to-read fantasy favorites currently-reading yo...10048.000000
177Castle Roogna (Xanth, #3)0.556210to-read fantasy favorites currently-reading yo...10045.000000
178The Seventh Gate (The Death Gate Cycle, #7)0.555800to-read fantasy favorites currently-reading yo...10052.000000
179The Awakened Mage (Kingmaker, Kingbreaker, #2)0.554025to-read fantasy favorites currently-reading fi...10050.000000
180The Restaurant at the End of the Universe (Hit...0.553650to-read fantasy favorites currently-reading yo...10060.000000
181Magic Kingdom For Sale/Sold (Magic Kingdom of ...0.553073to-read fantasy favorites currently-reading yo...10053.000000
182First Lord's Fury (Codex Alera, #6)0.553064to-read fantasy favorites currently-reading yo...10052.000000
183Assassin's Quest (Farseer Trilogy, #3)0.553034to-read fantasy favorites currently-reading yo...10056.000000
184Mistborn Trilogy Boxed Set (Mistborn, #1-3)0.552810to-read fantasy favorites currently-reading yo...10051.000000
185Cursor's Fury (Codex Alera, #3)0.551552to-read fantasy favorites currently-reading yo...10054.000000
186Imajica0.551336to-read fantasy favorites currently-reading fi...10054.000000
187Mistress of the Empire (The Empire Trilogy, #3)0.550696to-read fantasy favorites currently-reading fi...10046.000000
188Forest Mage (Soldier Son, #2)0.550236to-read fantasy favorites currently-reading fi...10049.000000
189The Dragon Keeper (Rain Wild Chronicles, #1)0.550106to-read fantasy favorites currently-reading yo...10050.000000
190The Runelords (Runelords #1)0.549512to-read fantasy favorites currently-reading fi...10047.000000
191Ancestors of Avalon (Avalon, #5)0.549243to-read fantasy favorites currently-reading yo...10046.000000
192The Slow Regard of Silent Things (The Kingkill...0.549198to-read fantasy favorites currently-reading yo...10056.000000
193Chainfire (Sword of Truth, #9)0.548502to-read fantasy favorites currently-reading fi...10050.000000
194The Novice (Black Magician Trilogy, #2)0.548354to-read fantasy favorites currently-reading yo...10057.000000
195Elric of Melniboné (Elric, #1)0.547661to-read fantasy favorites currently-reading fi...10052.000000
196Academ's Fury (Codex Alera, #2)0.547602to-read fantasy favorites currently-reading yo...10053.000000
197Sea of Silver Light (Otherland, #4)0.547288to-read fantasy favorites currently-reading fi...10045.000000
198The Alloy of Law (Mistborn, #4)0.547115to-read fantasy favorites currently-reading yo...10053.000000
199The Once and Future King (The Once and Future ...0.546979to-read fantasy favorites currently-reading yo...10059.000000
200Priestess of Avalon (Avalon, #4)0.546689to-read fantasy favorites currently-reading fi...10045.000000
201Tehanu (Earthsea Cycle, #4)0.545924to-read fantasy favorites currently-reading yo...10053.000000
202Naked Empire (Sword of Truth, #8)0.545896to-read fantasy favorites currently-reading fi...10050.000000
203Morgawr (The Voyage of the Jerle Shannara, #3)0.545738to-read fantasy favorites currently-reading yo...10046.000000
204Out of the Silent Planet (Space Trilogy, #1)0.545576to-read fantasy favorites currently-reading fi...10054.000000
205A Knight of the Word (Word & Void, #2)0.545181to-read fantasy favorites currently-reading yo...10048.000000
206Taliesin (The Pendragon Cycle, #1)0.545142to-read fantasy favorites currently-reading yo...10051.000000
207Dragon Wing (The Death Gate Cycle, #1)0.545011to-read fantasy favorites currently-reading yo...10050.000000
208Green Rider (Green Rider, #1)0.544985to-read fantasy favorites currently-reading yo...10054.000000
209The Illearth War (The Chronicles of Thomas Cov...0.544797to-read fantasy favorites currently-reading fi...10050.000000
210Wizard at Large (Magic Kingdom of Landover, #3)0.544442to-read fantasy favorites currently-reading yo...10049.000000
211Jarka Ruus (High Druid of Shannara, #1)0.544430to-read fantasy favorites currently-reading fi...10044.000000
212Warbreaker (Warbreaker, #1)0.544323to-read fantasy favorites currently-reading yo...10058.000000
213Child of the Prophecy (Sevenwaters, #3)0.543726to-read fantasy favorites currently-reading yo...10056.000000
214Servant of the Empire (The Empire Trilogy, #2)0.543658to-read fantasy favorites currently-reading fi...10046.000000
215The Color of Magic (Discworld, #1; Rincewind #1)0.543284to-read fantasy favorites currently-reading yo...10062.000000
216Temple of the Winds (Sword of Truth, #4)0.543024to-read fantasy favorites currently-reading fi...10052.000000
217All the Weyrs of Pern (Pern, #11)0.542975to-read fantasy favorites currently-reading yo...10050.000000
218Foundation (Foundation #1)0.542856to-read fantasy favorites currently-reading fi...10051.000000
219The Hero of Ages (Mistborn, #3)0.542119to-read fantasy favorites currently-reading yo...10057.000000
220The One Tree (The Second Chronicles of Thomas ...0.541815to-read fantasy favorites currently-reading fi...10044.000000
221The Halfling's Gem (Forgotten Realms: Icewind ...0.541082to-read fantasy favorites currently-reading yo...10052.000000
222Before They Are Hanged (The First Law #2)0.540949to-read fantasy favorites currently-reading fi...10053.000000
223Blood of the Fold (Sword of Truth, #3)0.539646to-read fantasy favorites currently-reading fi...10051.000000
224The Hollow Hills (Arthurian Saga, #2)0.539404to-read fantasy favorites currently-reading yo...10051.000000
225Guards! Guards! (Discworld, #8)0.539018to-read fantasy favorites currently-reading yo...10057.000000
226Rage of a Demon King (The Serpentwar Saga, #3)0.537473to-read fantasy favorites currently-reading fi...10042.000000
227The Shadow of the Torturer (The Book of the Ne...0.537208to-read fantasy favorites currently-reading fi...10053.000000
228Captain's Fury (Codex Alera, #4)0.536655to-read fantasy favorites currently-reading yo...10049.000000
229Midnight Tides (The Malazan Book of the Fallen...0.536629to-read fantasy favorites currently-reading fi...10052.000000
230Children of Dune (Dune Chronicles #3)0.536168to-read fantasy favorites currently-reading fi...10054.000000
231Phantom (Sword of Truth, #10)0.535864to-read fantasy favorites currently-reading fi...10050.000000
232Shards of a Broken Crown (The Serpentwar Saga,...0.535408to-read fantasy favorites currently-reading fi...10042.000000
233Wyrd Sisters (Discworld, #6; Witches #2)0.535083to-read fantasy favorites currently-reading yo...10056.000000
234A Storm of Swords: Steel and Snow (A Song of I...0.534846to-read fantasy favorites currently-reading fi...10056.000000
235Red Seas Under Red Skies (Gentleman Bastard, #2)0.534782to-read fantasy favorites currently-reading fi...10053.000000
236River of Blue Fire (Otherland, #2)0.534591to-read fantasy favorites currently-reading fi...10048.000000
237Mostly Harmless (Hitchhiker's Guide to the Gal...0.534345to-read fantasy favorites currently-reading yo...10057.000000
238Rise of a Merchant Prince (The Serpentwar Saga...0.534323to-read fantasy favorites currently-reading fi...10040.000000
239Dragonsdawn (Pern, #9)0.533985to-read fantasy favorites currently-reading yo...10052.000000
240Armageddon's Children (Genesis of Shannara, #1)0.533670to-read fantasy favorites currently-reading yo...10048.000000
241Ilse Witch (Voyage of the Jerle Shannara, #1)0.533233to-read fantasy favorites currently-reading yo...10048.000000
242Faith of the Fallen (Sword of Truth, #6)0.533017to-read fantasy favorites currently-reading fi...10054.000000
243The Republic of Thieves (Gentleman Bastard, #3)0.532956to-read fantasy favorites currently-reading fi...10051.000000
244The Complete Guide to Middle-Earth0.532867to-read fantasy favorites currently-reading yo...10040.000000
245The Legacy (Forgotten Realms: Legacy of the Dr...0.532832to-read fantasy favorites currently-reading yo...10046.000000
246The Warded Man (Demon Cycle, #1)0.532771to-read fantasy favorites currently-reading yo...10054.000000
247Deadhouse Gates (The Malazan Book of the Falle...0.532571to-read fantasy favorites currently-reading fi...10054.000000
248Hogfather (Discworld, #20; Death, #4)0.532182to-read fantasy favorites currently-reading yo...10060.000000
249Daughter of the Empire (The Empire Trilogy, #1)0.532065to-read fantasy favorites currently-reading fi...10047.000000
250The Magician King (The Magicians, #2)0.532044to-read fantasy favorites currently-reading yo...10056.000000
251Lady of Avalon (Avalon, #3)0.531919to-read fantasy favorites currently-reading fi...10048.000000
252The Renegades of Pern (Pern, #10)0.531882to-read fantasy favorites currently-reading yo...10048.000000
253The Pillars of Creation (Sword of Truth, #7)0.531636to-read fantasy favorites currently-reading fi...10049.000000
254The Curse of Chalion (World of the Five Gods, #1)0.531479to-read fantasy favorites currently-reading fi...10051.000000
255Pani Jeziora (Saga o Wiedźminie, #7)0.529438to-read fantasy favorites currently-reading fi...10047.000000
256The Lions of Al-Rassan0.529149to-read fantasy favorites currently-reading fi...10050.000000
257The King's Buccaneer (Krondor's Sons, #2)0.528931to-read fantasy favorites currently-reading fi...10041.000000
258The Hand of Chaos (The Death Gate Cycle, #5)0.528569to-read fantasy favorites currently-reading fi...10048.000000
259Another Fine Myth (Myth Adventures, #1)0.528298to-read fantasy favorites currently-reading yo...10049.000000
260The Desert Spear (Demon Cycle, #2)0.528169to-read fantasy favorites currently-reading fi...10052.000000
261Neverwhere0.528051to-read fantasy favorites currently-reading yo...10058.000000
262Life, the Universe and Everything (Hitchhiker'...0.528050to-read fantasy favorites currently-reading yo...10058.000000
263Prince of the Blood (Krondor's Sons, #1)0.527937to-read fantasy favorites currently-reading fi...10043.000000
264Serpent Mage (The Death Gate Cycle, #4)0.527413to-read fantasy favorites currently-reading yo...10048.000000
265The Innocent Mage (Kingmaker, Kingbreaker, #1)0.526926to-read fantasy favorites currently-reading yo...10053.000000
266Shaman's Crossing (Soldier Son, #1)0.526905to-read fantasy favorites currently-reading fi...10051.000000
267Elven Star (The Death Gate Cycle, #2)0.526713to-read fantasy favorites currently-reading fi...10049.000000
268Legend (The Drenai Saga, #1)0.526618to-read fantasy favorites currently-reading fi...10048.000000
269Half a War (Shattered Sea, #3)0.526400to-read fantasy favorites currently-reading yo...10049.000000
270The High Lord (Black Magician Trilogy, #3)0.526382to-read fantasy favorites currently-reading yo...10055.000000
271Princeps' Fury (Codex Alera, #5)0.525758to-read fantasy favorites currently-reading yo...10049.000000
272Rhapsody: Child of Blood (Symphony of Ages, #1)0.525642to-read fantasy favorites currently-reading yo...10053.000000
273Dragon Haven (Rain Wild Chronicles, #2)0.525477to-read fantasy favorites currently-reading yo...10052.000000
274The Orc King (Forgotten Realms: Transitions, #...0.525230to-read fantasy favorites currently-reading fi...10045.000000
275The Lies of Locke Lamora (Gentleman Bastard, #1)0.524854to-read fantasy favorites currently-reading yo...10058.000000
276Kushiel's Chosen (Phèdre's Trilogy, #2)0.524779to-read fantasy favorites currently-reading fi...10054.000000
277Kushiel's Justice (Imriel's Trilogy, #2)0.523615to-read fantasy favorites currently-reading fi...10051.000000
278Pyramids (Discworld, #7)0.522943to-read fantasy favorites currently-reading yo...10053.000000
279Dragon Prince (Dragon Prince, #1)0.522703to-read fantasy favorites currently-reading yo...10052.000000
280Krondor: The Betrayal (The Riftwar Legacy, #1)0.522425to-read fantasy favorites currently-reading fi...10042.000000
281Kushiel's Mercy (Imriel's Trilogy, #3)0.522379to-read fantasy favorites currently-reading fi...10049.000000
282Brothers Majere (Dragonlance: Preludes, #3)0.522278to-read fantasy favorites currently-reading fi...10036.000000
283Wicked: The Life and Times of the Wicked Witch...0.522242to-read fantasy favorites currently-reading yo...10056.000000
284Moreta: Dragonlady of Pern (Pern, #7)0.522132to-read fantasy favorites currently-reading yo...10048.000000
285The Magic of Recluce (The Saga of Recluce #1)0.521934to-read fantasy favorites currently-reading yo...10049.000000
286The Ultimate Hitchhiker's Guide to the Galaxy0.521260to-read fantasy favorites currently-reading yo...10060.000000
287Black Sun Rising (The Coldfire Trilogy, #1)0.520746to-read fantasy favorites currently-reading fi...10049.000000
288The Two Swords (Forgotten Realms: Hunter's Bla...0.520686to-read fantasy favorites currently-reading yo...10045.000000
289The Magician's Apprentice (Black Magician, #0.5)0.520552to-read fantasy favorites currently-reading yo...10053.000000
290Nerilka's Story (Pern, #8)0.520010to-read fantasy favorites currently-reading yo...10044.000000
291That Hideous Strength (Space Trilogy, #3)0.520008to-read fantasy favorites young-adult fiction ...10052.000000
292Starless Night (Forgotten Realms: Legacy of th...0.519771to-read fantasy favorites currently-reading yo...10046.000000
293Tales from Earthsea (Earthsea Cycle, #5)0.519533to-read fantasy favorites currently-reading yo...10052.000000
294First Rider's Call (Green Rider, #2)0.519302to-read fantasy favorites currently-reading yo...10054.000000
295Sabriel (Abhorsen, #1)0.518521to-read fantasy favorites young-adult fiction ...10053.000000
296Kushiel's Scion (Imriel's Trilogy, #1)0.517672to-read fantasy favorites currently-reading fi...10051.000000
297Chronicles of the Black Company (The Chronicle...0.517576to-read fantasy favorites currently-reading fi...10047.000000
298Servant of the Shard (Forgotten Realms: Paths ...0.517299to-read fantasy favorites currently-reading yo...10043.000000
299The Hitchhiker's Guide to the Galaxy: A Trilog...0.517212to-read fantasy favorites currently-reading yo...10053.000000
300The Magician's Land (The Magicians, #3)0.517210to-read fantasy favorites currently-reading yo...10051.000000
301Siege of Darkness (Forgotten Realms: Legacy of...0.517094to-read fantasy favorites currently-reading fi...10044.000000
302Reaper Man (Discworld, #11; Death, #2)0.517057to-read fantasy favorites currently-reading fi...10057.000000
303The Foundation Trilogy (Foundation, #1-3)0.516620to-read fantasy favorites currently-reading fi...10050.000000
304Son of the Shadows (Sevenwaters, #2)0.516537to-read fantasy favorites currently-reading yo...10052.000000
305The Magicians' Guild (Black Magician Trilogy, #1)0.516437to-read fantasy favorites currently-reading fi...10052.000000
306The Bonehunters (Malazan Book of the Fallen, #6)0.516086to-read fantasy favorites currently-reading fi...10048.000000
307Stardust0.515560to-read fantasy favorites currently-reading yo...10057.000000
308The Last Wish (The Witcher, #1)0.515555to-read fantasy favorites currently-reading fi...10050.000000
309The Amber Spyglass (His Dark Materials, #3)0.515530to-read fantasy favorites currently-reading yo...10055.000000
310The Long Dark Tea-Time of the Soul (Dirk Gentl...0.515406to-read fantasy favorites currently-reading fi...10051.000000
311Second Foundation (Foundation #3)0.514996to-read fantasy favorites currently-reading fi...10051.000000
312Priestess of the White (Age of the Five, #1)0.514530to-read fantasy favorites currently-reading yo...10052.000000
313So Long, and Thanks for All the Fish (Hitchhik...0.514337to-read fantasy favorites currently-reading yo...10056.000000
314Kushiel's Avatar (Phèdre's Trilogy, #3)0.514061to-read fantasy favorites currently-reading fi...10052.000000
315Furies of Calderon (Codex Alera, #1)0.514051to-read fantasy favorites currently-reading yo...10053.000000
316The Subtle Knife (His Dark Materials, #2)0.513507to-read fantasy favorites currently-reading yo...10058.000000
317The Dolphins of Pern (Pern, #13)0.513254to-read fantasy favorites currently-reading yo...10049.000000
318Queen of the Darkness (The Black Jewels, #3)0.512628to-read fantasy favorites currently-reading yo...10053.000000
319Men at Arms (Discworld, #15; City Watch #2)0.512588to-read fantasy favorites currently-reading yo...10057.000000
320The Wheel of Time: Boxed Set (Wheel of Time, ...0.512505to-read fantasy favorites currently-reading fi...10023.000000
321Foundation and Empire (Foundation #2)0.512192to-read fantasy favorites currently-reading fi...10052.000000
322The Belgariad Boxed Set: Pawn of Prophecy / Qu...0.511813to-read fantasy favorites currently-reading yo...10038.000000
323The Chronicles of Thomas Covenant, the Unbelie...0.511599to-read fantasy favorites currently-reading fi...10040.000000
324The Crimson Campaign (Powder Mage, #2)0.510727to-read fantasy favorites currently-reading fi...10042.000000
325A Song of Ice and Fire (A Song of Ice and Fire...0.510269to-read fantasy favorites currently-reading fi...10053.000000
326Heir to the Shadows (The Black Jewels, #2)0.509696to-read fantasy favorites currently-reading yo...10053.000000
327Blood of Dragons (Rain Wild Chronicles, #4)0.509561to-read fantasy favorites currently-reading yo...10049.000000
328Wieża Jaskółki (Saga o Wiedźminie, #6)0.508712to-read fantasy favorites currently-reading fi...10046.000000
329Equal Rites (Discworld, #3; Witches #1)0.508035to-read fantasy favorites currently-reading yo...10057.000000
330The Great Dune Trilogy0.507765to-read fantasy favorites currently-reading fi...10041.000000
331The Light Fantastic (Discworld, #2; Rincewind #2)0.507376to-read fantasy favorites currently-reading yo...10057.000000
332Alvin Journeyman (Tales of Alvin Maker, #4)0.507067to-read fantasy favorites currently-reading yo...10045.000000
333A Storm of Swords: Blood and Gold (A Song of I...0.506543to-read fantasy favorites currently-reading fi...10056.000000
334Red Prophet (Tales of Alvin Maker, #2)0.506272to-read fantasy favorites currently-reading yo...10050.000000
335Reaper's Gale (The Malazan Book of the Fallen,...0.506185to-read fantasy favorites currently-reading fi...10047.000000
336God Emperor of Dune (Dune Chronicles #4)0.506181to-read fantasy favorites currently-reading fi...10053.000000
337His Dark Materials (His Dark Materials #1-3)0.505914to-read fantasy favorites currently-reading yo...10057.000000
338Daughter of the Blood (The Black Jewels #1)0.505745to-read fantasy favorites currently-reading yo...10052.000000
339The Lone Drow (Forgotten Realms: Hunter's Blad...0.505581to-read fantasy favorites currently-reading fi...10045.000000
340Blood Song (Raven's Shadow, #1)0.504833to-read fantasy favorites currently-reading yo...10052.000000
341The Gunslinger (The Dark Tower, #1)0.503409to-read fantasy favorites currently-reading fi...10058.000000
342The Bands of Mourning (Mistborn, #6)0.502898to-read fantasy favorites currently-reading yo...10047.000000
343The Lost Gate (Mither Mages, #1)0.502535to-read fantasy favorites currently-reading yo...10051.000000
344The Golden Compass (His Dark Materials, #1)0.502051to-read fantasy favorites currently-reading yo...10055.000000
345Lords and Ladies (Discworld, #14; Witches #4)0.501410to-read fantasy favorites currently-reading yo...10055.000000
346House of Chains (The Malazan Book of the Falle...0.501231to-read fantasy favorites currently-reading fi...10050.000000
347The Spine of the World (Forgotten Realms: Path...0.501117to-read fantasy favorites currently-reading fi...10043.000000
348Anansi Boys0.500328to-read fantasy favorites currently-reading yo...10053.000000
349Chrzest ognia (Saga o Wiedźminie, #5)0.500166to-read fantasy favorites currently-reading fi...10045.000000
350Foundation and Earth (Foundation #5)0.499815to-read fantasy favorites currently-reading fi...10049.000000
351The Black Prism (Lightbringer, #1)0.499416to-read fantasy favorites currently-reading fi...10056.000000
352Dirk Gently's Holistic Detective Agency (Dirk ...0.499318to-read fantasy favorites currently-reading fi...10049.000000
353The Broken Eye (Lightbringer, #3)0.499200to-read fantasy favorites currently-reading yo...10050.000000
354From the Two Rivers: The Eye of the World, Par...0.498820to-read fantasy favorites currently-reading yo...10044.000000
355The Dragon's Path (The Dagger and the Coin, #1)0.498798to-read fantasy favorites currently-reading fi...10045.000000
356Kushiel's Dart (Phèdre's Trilogy, #1)0.498506to-read fantasy favorites currently-reading fi...10051.000000
357Magician (The Riftwar Saga, #1-2)0.498206to-read fantasy favorites currently-reading fi...10052.000000
358City of Golden Shadow (Otherland, #1)0.498099to-read fantasy favorites currently-reading fi...10048.000000
3592001: A Space Odyssey (Space Odyssey, #1)0.497662to-read fantasy favorites currently-reading fi...10054.000000
360The Way of Shadows (Night Angel, #1)0.497653to-read fantasy favorites currently-reading yo...10056.000000
361A Princess of Mars (Barsoom, #1)0.497243to-read fantasy favorites currently-reading yo...10045.000000
362Miecz przeznaczenia (Saga o Wiedźminie, #2)0.496600to-read fantasy currently-reading fiction book...10047.000000
363Solaris0.496531to-read fantasy favorites currently-reading fi...10044.000000
364Confessor (Sword of Truth, #11)0.496255to-read fantasy favorites currently-reading fi...10047.000000
365King of Thorns (The Broken Empire, #2)0.495684to-read fantasy favorites currently-reading yo...10053.000000
366Fool's Quest (The Fitz and The Fool, #2)0.495584to-read fantasy favorites currently-reading fi...10047.000000
367Shadow's Edge (Night Angel, #2)0.495444to-read fantasy favorites currently-reading yo...10054.000000
368Dune (Dune Chronicles #1)0.495414to-read fantasy favorites currently-reading fi...10058.000000
369The Wheel of Time: Boxed Set #1 (Wheel of Time...0.495136to-read fantasy favorites currently-reading fi...10028.000000
370Toll the Hounds (The Malazan Book of the Falle...0.494980to-read fantasy favorites currently-reading fi...10046.000000
371Interesting Times (Discworld, #17; Rincewind #5)0.494808to-read fantasy favorites currently-reading yo...10055.000000
372Feet of Clay (Discworld, #19; City Watch, #3)0.494361to-read fantasy favorites currently-reading yo...10054.000000
373The Gate Thief (Mither Mages, #2)0.494158to-read fantasy favorites currently-reading yo...10048.000000
374Night Watch (Watch #1)0.493551to-read fantasy favorites currently-reading yo...10051.000000
375The Blinding Knife (Lightbringer, #2)0.492967to-read fantasy favorites currently-reading fi...10049.000000
376The Farseer Trilogy (Farseer Trilogy #1-3)0.492452to-read fantasy favorites currently-reading fi...10037.000000
377Talon of the Silver Hawk (Conclave of Shadows,...0.491298to-read fantasy favorites currently-reading fi...10040.000000
378The Gods of Mars (Barsoom, #2)0.491260to-read fantasy favorites currently-reading yo...10045.000000
379The War of the Worlds0.491094to-read fantasy favorites currently-reading fi...10052.000000
380Rise of Empire (The Riyria Revelations, #3-4)0.491033to-read fantasy favorites currently-reading fi...10046.000000
381Heretics of Dune (Dune Chronicles #5)0.490641to-read fantasy favorites currently-reading fi...10050.000000
382The Scar (Bas-Lag, #2)0.490459to-read fantasy favorites currently-reading fi...10046.000000
383The Omen Machine (Sword of Truth, #12; Richard...0.490453to-read fantasy favorites currently-reading fi...10045.000000
384The Goblin Emperor0.490427to-read fantasy favorites currently-reading yo...10045.000000
385The Ship Who Sang (Brainship, #1)0.489547to-read fantasy favorites currently-reading yo...10045.000000
386The Heroes (First Law World, #5)0.489002to-read fantasy favorites currently-reading fi...10049.000000
387The Time Machine0.488996to-read fantasy favorites currently-reading yo...10051.000000
388King of Foxes (Conclave of Shadows, #2)0.488949to-read fantasy favorites currently-reading fi...10037.000000
389I, Robot (Robot #0.1)0.487965to-read fantasy favorites currently-reading fi...10048.000000
390Eragon (The Inheritance Cycle, #1)0.487281to-read fantasy favorites currently-reading yo...10059.000000
391The World of Ice & Fire: The Untold History of...0.487111to-read fantasy favorites currently-reading fi...10053.000000
392The Blue Sword (Damar, #1)0.486895to-read fantasy favorites currently-reading yo...10056.000000
393The Chronicles of Narnia (Chronicles of Narnia...0.486626to-read currently-reading young-adult fiction ...10049.000000
394Dune Messiah (Dune Chronicles #2)0.486579to-read fantasy favorites currently-reading fi...10053.000000
395The Night Angel Trilogy (Night Angel, #1-3)0.486320to-read fantasy favorites currently-reading yo...10047.000000
396Shadow & Claw (The Book of the New Sun #1-2)0.486097to-read fantasy favorites currently-reading fi...10045.000000
397The Sworn Sword (The Tales of Dunk and Egg, #2)0.486050to-read fantasy favorites fiction owned series...10038.000000
398The Crippled God (The Malazan Book of the Fall...0.486038to-read fantasy favorites currently-reading fi...10045.000000
399The Thousand Orcs (Forgotten Realms: Hunter's ...0.486009to-read fantasy favorites currently-reading fi...10043.000000
400Sourcery (Discworld, #5; Rincewind #3)0.485998to-read fantasy favorites currently-reading fi...10052.000000
401Debt of Bones (Sword of Truth, #0.5)0.485832to-read fantasy favorites currently-reading fi...10044.000000
402The Black Company (The Chronicles of the Black...0.485694to-read fantasy favorites currently-reading fi...10044.000000
403The Hobbit: Graphic Novel0.485263to-read fantasy favorites currently-reading yo...10059.000000
404The Naming (The Books of Pellinor, #1)0.485214to-read fantasy favorites currently-reading yo...10053.000000
405Fantastic Voyage0.484874to-read fantasy favorites currently-reading yo...10040.000000
406The Broken Kingdoms (Inheritance, #2)0.484869to-read fantasy favorites currently-reading yo...10045.000000
407The Rogue (Traitor Spy Trilogy, #2)0.484760to-read fantasy favorites currently-reading yo...10044.000000
408Castle in the Air (Howl's Moving Castle, #2)0.484339to-read fantasy favorites currently-reading yo...10050.000000
409Emperor of Thorns (The Broken Empire, #3)0.484207to-read fantasy favorites currently-reading yo...10045.000000
410The Daylight War (Demon Cycle, #3)0.483875to-read fantasy favorites currently-reading fi...10050.000000
411Something Wicked This Way Comes (Green Town, #2)0.483864to-read fantasy favorites currently-reading yo...10051.000000
412Prince of Thorns (The Broken Empire, #1)0.483527to-read fantasy favorites currently-reading yo...10053.000000
413The Silent Blade (Forgotten Realms: Paths of D...0.483191to-read fantasy favorites currently-reading fi...10040.000000
414Childhood's End0.483013to-read fantasy favorites currently-reading fi...10048.000000
415The Riddle (The Books of Pellinor, #2)0.482758to-read fantasy favorites currently-reading yo...10048.000000
416Half the World (Shattered Sea, #2)0.482542to-read fantasy favorites currently-reading yo...10048.000000
417Sea of Swords (Forgotten Realms: Paths of Dark...0.482517to-read fantasy favorites currently-reading fi...10040.000000
418Throne of Jade (Temeraire, #2)0.482171to-read fantasy favorites currently-reading yo...10052.000000
419Heir of Novron (The Riyria Revelations, #5-6)0.481995to-read fantasy favorites currently-reading fi...10045.000000
420Best Served Cold0.481862to-read fantasy favorites currently-reading fi...10050.000000
421American Gods (American Gods, #1)0.481258to-read fantasy favorites currently-reading fi...10056.000000
422Prentice Alvin (Tales of Alvin Maker, #3)0.480952to-read fantasy favorites currently-reading yo...10044.000000
423A Dance with Dragons: After the Feast (A Song ...0.480951to-read fantasy favorites currently-reading fi...10050.000000
424The Emperor's Blades (Chronicle of the Unhewn ...0.480934to-read fantasy favorites currently-reading fi...10043.000000
425Shadows of Self (Mistborn, #5)0.480374to-read fantasy favorites currently-reading yo...10045.000000
426Foundation and Chaos (Second Foundation Trilog...0.480035to-read fantasy favorites currently-reading fi...10035.000000
427The White Rose (The Chronicles of the Black Co...0.479144to-read fantasy favorites currently-reading fi...10046.000000
428Day Watch (Watch #2)0.478580to-read fantasy favorites currently-reading yo...10051.000000
429Exile's Return (Conclave of Shadows, #3)0.478504to-read fantasy favorites currently-reading fi...10035.000000
430The Providence of Fire (Chronicle of the Unhew...0.478406to-read fantasy favorites currently-reading fi...10046.000000
431Brilliance of the Moon (Tales of the Otori, #3)0.478105to-read fantasy favorites currently-reading yo...10050.000000
432The Legend of Huma (Dragonlance: Heroes, #1)0.477926to-read fantasy favorites currently-reading fi...10040.000000
433Promise of Blood (Powder Mage, #1)0.477419to-read fantasy favorites currently-reading fi...10043.000000
434Passage to Dawn (Forgotten Realms: Legacy of t...0.476592to-read fantasy favorites currently-reading fi...10042.000000
435His Majesty's Dragon (Temeraire, #1)0.476301to-read fantasy favorites currently-reading yo...10051.000000
436Do Androids Dream of Electric Sheep?0.475927to-read fantasy favorites currently-reading fi...10048.000000
437Brave New World0.475883to-read fantasy favorites currently-reading yo...10055.000000
438Dragonheart (Pern, #21)0.475862to-read fantasy favorites currently-reading yo...10040.000000
439Pathfinder (Pathfinder, #1)0.475788to-read fantasy favorites currently-reading yo...10049.000000
440Red Country (First Law World, #6)0.475772to-read fantasy favorites currently-reading fi...10047.000000
441Waylander (The Drenai Saga, #3)0.475280to-read fantasy favorites currently-reading fi...10045.000000
442The Book of Three (The Chronicles of Prydain, #1)0.474837to-read fantasy favorites currently-reading yo...10048.000000
443Night Watch (Discworld, #29; City Watch, #6)0.474199to-read fantasy favorites currently-reading yo...10053.000000
444Stranger in a Strange Land0.473642to-read fantasy favorites currently-reading fi...10054.000000
445The Darkness That Comes Before (The Prince of ...0.473320to-read fantasy favorites currently-reading fi...10045.000000
446The Autumn Republic (Powder Mage, #3)0.472974to-read fantasy favorites currently-reading fi...10040.000000
447Soul Music (Discworld, #16; Death, #3)0.472790to-read fantasy favorites currently-reading fi...10054.000000
448The Chronicles of Pern: First Fall (Pern, #12)0.472762to-read fantasy favorites currently-reading yo...10046.000000
449A Game of Thrones / A Clash of Kings (A Song o...0.472270to-read fantasy favorites currently-reading fi...10046.000000
450Mort (Death, #1; Discworld, #4)0.472252to-read fantasy favorites currently-reading yo...10055.000000
451The Aeronaut's Windlass (The Cinder Spires, #1)0.472227to-read fantasy favorites currently-reading yo...10045.000000
452The End of Eternity0.471932to-read fantasy favorites currently-reading fi...10046.000000
453Days of Magic, Nights of War (Abarat, #2)0.471847to-read fantasy favorites currently-reading yo...10047.000000
454Contact0.471724to-read fantasy favorites currently-reading fi...10053.000000
455The Rowan (The Tower and the Hive, #1)0.471511to-read fantasy favorites currently-reading yo...10048.000000
456The Butlerian Jihad (Legends of Dune, #1)0.471069to-read fantasy favorites currently-reading fi...10048.000000
457House Harkonnen (Prelude to Dune #2)0.470923to-read fantasy favorites currently-reading fi...10045.000000
458Chapterhouse: Dune (Dune Chronicles #6)0.470767to-read fantasy favorites currently-reading fi...10050.000000
459Ender's Game (Ender's Saga, #1)0.470759to-read fantasy favorites currently-reading yo...10057.000000
460BookRags Summary: A Storm of Swords0.470654to-read fantasy favorites currently-reading fi...10027.000000
461Ptolemy's Gate (Bartimaeus, #3)0.470610to-read fantasy favorites currently-reading yo...10050.000000
462The Invisible Man0.470100to-read fantasy favorites currently-reading fi...10051.000000
463The Magicians (The Magicians #1)0.470064to-read fantasy favorites currently-reading yo...10051.000000
464Jurassic Park (Jurassic Park, #1)0.469720to-read fantasy favorites currently-reading yo...10057.000000
465Weaveworld0.469717to-read fantasy favorites currently-reading fi...10051.000000
466Beyond the Shadows (Night Angel, #3)0.469173to-read fantasy favorites currently-reading yo...10052.000000
46719840.469087to-read fantasy currently-reading young-adult ...10055.000000
468Abarat (Abarat, #1)0.469051to-read fantasy favorites currently-reading yo...10050.000000
469Dust of Dreams (The Malazan Book of the Fallen...0.468854to-read fantasy favorites currently-reading fi...10046.000000
470Jingo (Discworld, #21; City Watch, #4)0.468750to-read fantasy favorites currently-reading yo...10051.000000
471Prelude to Foundation0.468722to-read fantasy favorites currently-reading fi...10044.000000
472Raymond E. Feist's Magician Master0.468458to-read fantasy favorites currently-reading fi...10020.000000
473Anne McCaffrey's Dragonflight #10.468279to-read fantasy favorites currently-reading yo...10036.000000
474Rama II (Rama, #2)0.468224to-read fantasy favorites currently-reading fi...10045.000000
475The Hundred Thousand Kingdoms (Inheritance Tri...0.467880to-read fantasy favorites currently-reading yo...10047.000000
476The Player of Games (Culture, #2)0.467472to-read fantasy favorites currently-reading fi...10045.000000
477The Ambassador's Mission (Traitor Spy Trilogy,...0.466318to-read fantasy favorites currently-reading yo...10046.000000
478The Robots of Dawn (Robot #3)0.466139to-read fantasy favorites currently-reading fi...10047.000000
479The King Beyond the Gate (The Drenai Saga, #2)0.466071to-read fantasy favorites currently-reading fi...10041.000000
480The Midwich Cuckoos0.465991to-read fantasy favorites currently-reading fi...10042.000000
481Theft of Swords (The Riyria Revelations, #1-2)0.465986to-read fantasy favorites currently-reading yo...10047.000000
482The Golem's Eye (Bartimaeus, #2)0.465777to-read fantasy favorites currently-reading yo...10051.000000
483The Dark Is Rising (The Dark is Rising, #2)0.465384to-read fantasy favorites currently-reading yo...10050.000000
484The Stainless Steel Rat (Stainless Steel Rat, #4)0.464641to-read fantasy favorites currently-reading fi...10038.000000
485Street Magic (The Circle Opens, #2)0.463402to-read fantasy favorites currently-reading yo...10045.000000
486The Cat Who Walks Through Walls (The World As ...0.462550to-read fantasy favorites currently-reading fi...10047.000000
487Tower Lord (Raven's Shadow, #2)0.462001to-read fantasy favorites currently-reading fi...10048.000000
488Carpe Jugulum (Discworld #23; Witches #6)0.461644to-read fantasy favorites currently-reading yo...10053.000000
489City of Stairs (The Divine Cities, #1)0.461493to-read fantasy favorites currently-reading fi...10044.000000
490The Realms of the Gods (Immortals, #4)0.461329to-read fantasy favorites currently-reading yo...10044.000000
491House Atreides (Prelude to Dune #1)0.461169to-read fantasy favorites currently-reading fi...10048.000000
492Grass for His Pillow (Tales of the Otori, #2)0.461021to-read fantasy favorites currently-reading yo...10051.000000
493The Law of Nines0.460659to-read fantasy favorites currently-reading fi...10042.000000
494Snow Crash0.460580to-read fantasy favorites currently-reading fi...10049.000000
495Sandry's Book (Circle of Magic, #1)0.460101to-read fantasy favorites currently-reading yo...10043.000000
496Replay0.460075to-read fantasy favorites currently-reading fi...10049.000000
497The Lost World (Professor Challenger, #1)0.459111to-read fantasy favorites currently-reading fi...10050.000000
498The Crown Tower (The Riyria Chronicles, #1)0.458783to-read fantasy favorites currently-reading yo...10044.000000
499Witches Abroad (Discworld, #12; Witches #3)0.458732to-read fantasy favorites currently-reading yo...10053.000000
500A Dance with Dragons: Dreams and Dust (A Song ...0.458556to-read fantasy favorites currently-reading fi...10049.000000
501Across the Nightingale Floor (Tales of the Oto...0.458315to-read fantasy favorites currently-reading yo...10054.000000
502A Knight of the Seven Kingdoms (The Tales of D...0.458292to-read fantasy favorites currently-reading fi...10050.000000
503Thud! (Discworld, #34; City Watch #7)0.458082to-read fantasy favorites currently-reading fi...10050.000000
504The Lathe of Heaven0.457218to-read fantasy favorites currently-reading fi...10045.000000
505Luck in the Shadows (Nightrunner, #1)0.456720to-read fantasy favorites currently-reading yo...10049.000000
506The Crown Conspiracy (The Riyria Revelations, #1)0.456026to-read fantasy favorites currently-reading yo...10040.000000
507Making Money (Discworld, #36; Moist Von Lipwig...0.455971to-read fantasy favorites currently-reading yo...10050.000000
508The First Confessor (The Legend of Magda Searu...0.455967to-read fantasy favorites currently-reading yo...10040.000000
509Crystal Singer (Crystal Singer, #1)0.455286to-read fantasy favorites currently-reading yo...10043.000000
510Eragon, Eldest & Brisingr (Inheritance, #1-3)0.455064to-read fantasy favorites currently-reading yo...10045.000000
511The Sirens of Titan0.454283to-read fantasy favorites currently-reading fi...10050.000000
512Robots and Empire (Robot #4)0.454198to-read fantasy favorites currently-reading fi...10043.000000
513Good Omens: The Nice and Accurate Prophecies o...0.454194to-read fantasy favorites currently-reading yo...10057.000000
514The Machine Crusade (Legends of Dune, #2)0.453909to-read fantasy favorites currently-reading fi...10042.000000
515Seventh Son (Tales of Alvin Maker, #1)0.453450to-read fantasy favorites currently-reading yo...10050.000000
516The Mystery Knight (The Tales of Dunk and Egg,...0.453447to-read fantasy favorites fiction books-i-own ...10039.000000
517Black Powder War (Temeraire, #3)0.453087to-read fantasy favorites currently-reading yo...10050.000000
518Caliban's War (The Expanse, #2)0.452787to-read fantasy favorites currently-reading fi...10043.000000
519The Caves of Steel (Robot #1)0.452530to-read fantasy favorites currently-reading fi...10048.000000
520Victory of Eagles (Temeraire, #5)0.452325to-read fantasy favorites currently-reading yo...10048.000000
521The Day of the Triffids0.452033to-read fantasy favorites currently-reading fi...10047.000000
522Perdido Street Station (Bas-Lag, #1)0.451850to-read fantasy favorites currently-reading fi...10044.000000
523Interview with the Vampire (The Vampire Chroni...0.451145to-read fantasy favorites currently-reading fi...10054.000000
524And Another Thing...0.451030to-read fantasy favorites currently-reading yo...10047.000000
525The Rise of Endymion (Hyperion Cantos, #4)0.450934to-read fantasy favorites currently-reading fi...10051.000000
526Half a King (Shattered Sea, #1)0.450914to-read fantasy favorites currently-reading yo...10047.000000
527The Lives of Christopher Chant (Chrestomanci, #2)0.449570to-read fantasy favorites currently-reading yo...10044.000000
528Going Postal (Discworld, #33; Moist von Lipwig...0.449315to-read fantasy favorites currently-reading yo...10050.000000
529The Black Cauldron (The Chronicles of Prydain #2)0.449132to-read fantasy favorites currently-reading yo...10048.000000
530Invasion of the Body Snatchers0.449090to-read fantasy favorites currently-reading fi...10042.000000
531More Than Human0.448843to-read fantasy favorites currently-reading fi...10042.000000
532Journey to the Center of the Earth (Extraordin...0.448820to-read fantasy favorites currently-reading yo...10049.000000
533Better than Life (Red Dwarf #2)0.448785to-read fantasy favorites currently-reading fi...10040.000000
534Forward the Foundation (Foundation: Prequel #2)0.448777to-read fantasy favorites currently-reading fi...10042.000000
535Cold Fire (The Circle Opens, #3)0.447986to-read fantasy favorites currently-reading yo...10042.000000
536Dandelion Wine (Green Town, #1)0.447887to-read fantasy favorites currently-reading yo...10053.000000
537The Stars My Destination0.447430to-read fantasy favorites currently-reading fi...10043.000000
538Brave New World / Brave New World Revisited0.447278to-read fantasy favorites currently-reading fi...10047.000000
539Lost in a Good Book (Thursday Next, #2)0.447172to-read fantasy favorites currently-reading fi...10044.000000
540Empire of Ivory (Temeraire, #4)0.446960to-read fantasy favorites currently-reading yo...10048.000000
541The Island of Dr. Moreau0.446259to-read fantasy favorites fiction books-i-own ...10043.000000
542The Three Stigmata of Palmer Eldritch0.445962to-read fantasy favorites currently-reading fi...10043.000000
543Nightfall0.445885to-read fantasy favorites currently-reading fi...10042.000000
544Skin Game (The Dresden Files, #15)0.445874to-read fantasy favorites fiction books-i-own ...10039.000000
545The Blood Mirror (Lightbringer, #4)0.445692to-read fantasy favorites currently-reading fi...10038.000000
546The Lost Years (The Lost Years of Merlin, #1)0.445451to-read fantasy favorites currently-reading yo...10038.000000
547Hunters of Dune (Dune Chronicles #7)0.445232to-read fantasy favorites currently-reading fi...10041.000000
548Czas pogardy (Saga o Wiedźminie, #4)0.445198to-read fantasy favorites currently-reading fi...10042.000000
549The Fifth Elephant (Discworld, #24; City Watch...0.444452to-read fantasy favorites currently-reading yo...10049.000000
550Fool Moon (The Dresden Files, #2)0.444426to-read fantasy favorites currently-reading fi...10042.000000
551Cold Days (The Dresden Files, #14)0.444333to-read fantasy favorites currently-reading fi...10040.000000
552White Night (The Dresden Files, #9)0.444247to-read fantasy favorites currently-reading fi...10040.000000
553Maskerade (Discworld, #18; Witches #5)0.444107to-read fantasy favorites currently-reading yo...10050.000000
554Consider Phlebas (Culture, #1)0.443899to-read fantasy favorites currently-reading fi...10047.000000
555Use of Weapons (Culture, #3)0.443522to-read fantasy favorites currently-reading fi...10045.000000
556Storm Front (The Dresden Files, #1)0.443334to-read fantasy favorites currently-reading fi...10043.000000
557Howl's Moving Castle (Howl's Moving Castle, #1)0.442964to-read fantasy favorites currently-reading yo...10049.000000
558The Woman Who Rides Like a Man (Song of the Li...0.442938to-read fantasy favorites currently-reading yo...10049.000000
559Pastwatch: The Redemption of Christopher Columbus0.442862to-read fantasy favorites currently-reading yo...10045.000000
560Shadows Linger (The Chronicles of the Black Co...0.442852to-read fantasy favorites currently-reading fi...10040.000000
561A Scanner Darkly0.442626to-read fantasy favorites currently-reading fi...10044.000000
562The Left Hand of God (The Left Hand of God, #1)0.442551to-read fantasy favorites currently-reading yo...10049.000000
563Dawn of Wonder (The Wakening, #1)0.442519to-read fantasy favorites currently-reading yo...10041.000000
564Sundiver (The Uplift Saga, #1)0.442514to-read fantasy favorites currently-reading fi...10038.000000
565The Rithmatist (The Rithmatist, #1)0.442315to-read fantasy favorites currently-reading yo...10045.000000
566The Neutronium Alchemist (Night's Dawn, #2)0.442280to-read fantasy favorites currently-reading fi...10038.000000
567The Voyage of the Dawn Treader (Chronicles of ...0.442154to-read fantasy favorites young-adult owned ya...10052.000000
568Children of the Mind (Ender's Saga, #4)0.442152to-read fantasy favorites currently-reading yo...10048.000000
569Have Space Suit—Will Travel0.440881to-read fantasy favorites currently-reading yo...10044.000000
570All Tomorrow's Parties (Bridge, #3)0.440835to-read fantasy favorites currently-reading fi...10040.000000
571Count Zero (Sprawl, #2)0.440687to-read fantasy favorites currently-reading fi...10045.000000
572The Mummy (Ramses the Damned #1)0.440581to-read fantasy favorites currently-reading fi...10043.000000
573Snuff (Discworld, #39; City Watch #8)0.440554to-read fantasy favorites currently-reading yo...10049.000000
574Time Enough for Love0.440356to-read fantasy favorites currently-reading fi...10046.000000
575The Red Knight (The Traitor Son Cycle, #1)0.440264to-read fantasy favorites fiction books-i-own ...10042.000000
576The Last Continent (Discworld, #22; Rincewind #6)0.440232to-read fantasy favorites currently-reading yo...10050.000000
577Thief of Time (Discworld, #26; Death, #5)0.440228to-read fantasy favorites currently-reading yo...10049.000000
578The Truth (Discworld, #25; Industrial Revoluti...0.440052to-read fantasy favorites currently-reading fi...10047.000000
579The Way of Kings, Part 1 (The Stormlight Archi...0.439978to-read fantasy favorites currently-reading fi...10043.000000
580The Emperor's Soul0.439813to-read fantasy favorites currently-reading yo...10048.000000
581Cibola Burn (The Expanse, #4)0.439729to-read fantasy favorites currently-reading fi...10045.000000
582The Rose and the Thorn (The Riyria Chronicles,...0.439680to-read fantasy favorites currently-reading fi...10045.000000
583The Last Battle (Chronicles of Narnia, #7)0.439636to-read fantasy favorites currently-reading yo...10055.000000
584Moving Pictures (Discworld, #10; Industrial Re...0.438950to-read fantasy favorites fiction books-i-own ...10048.000000
585Mattimeo (Redwall, #3)0.438936to-read fantasy favorites currently-reading yo...10046.000000
586The Castle of Llyr (The Chronicles of Prydain #3)0.438859to-read fantasy favorites currently-reading yo...10048.000000
587Flow My Tears, the Policeman Said0.438695to-read fantasy favorites currently-reading fi...10042.000000
588Judas Unchained0.438656to-read fantasy favorites currently-reading fi...10044.000000
589Job: A Comedy of Justice0.438312to-read fantasy favorites currently-reading fi...10039.000000
590Blood Rites (The Dresden Files, #6)0.438265to-read fantasy favorites currently-reading fi...10041.000000
591Raising Steam (Discworld, #40, Moist von Lipwi...0.438245to-read fantasy favorites currently-reading yo...10050.000000
592Slaughterhouse-Five0.438062to-read fantasy favorites currently-reading fi...10053.000000
593The Door Into Summer0.438058to-read fantasy favorites currently-reading yo...10042.000000
594The Will of the Empress (Circle Reforged, #1)0.438022to-read fantasy favorites currently-reading yo...10046.000000
595Infinity Welcomes Careful Drivers (Red Dwarf #1)0.438012to-read fantasy favorites currently-reading fi...10048.000000
596Cat's Cradle0.437992to-read fantasy favorites currently-reading fi...10051.000000
597Changes (The Dresden Files, #12)0.437845to-read fantasy favorites currently-reading fi...10042.000000
598Martin the Warrior (Redwall, #6)0.437825to-read fantasy favorites currently-reading yo...10044.000000
599Tarzan of the Apes (Tarzan, #1)0.437722to-read fantasy favorites currently-reading yo...10048.000000
600Ender's Shadow (Ender's Shadow, #1)0.437649to-read fantasy favorites currently-reading yo...10051.000000
601The Burning Bridge (Ranger's Apprentice, #2)0.437573to-read fantasy favorites currently-reading yo...10047.000000
602Harry Potter and the Goblet of Fire (Harry Pot...0.437237to-read fantasy young-adult fiction harry-pott...10052.000000
603Endymion (Hyperion Cantos, #3)0.437113to-read fantasy favorites currently-reading fi...10048.000000
604Sir Thursday (The Keys to the Kingdom, #4)0.436655to-read fantasy favorites currently-reading yo...10046.000000
605The City and the Stars0.436567to-read fantasy favorites currently-reading fi...10046.000000
606The Shepherd's Crown (Discworld, #41; Tiffany ...0.436295to-read fantasy favorites currently-reading yo...10044.000000
607Eragon & Eldest (Inheritance, #1-2)0.436287to-read fantasy favorites currently-reading yo...10040.000000
608Silver on the Tree (The Dark is Rising, #5)0.435995to-read fantasy favorites currently-reading yo...10045.000000
609The Puppet Masters0.435829to-read fantasy favorites currently-reading fi...10043.000000
610The Mote in God's Eye0.435168to-read fantasy favorites currently-reading fi...10042.000000
611A Swiftly Tilting Planet (A Wrinkle in Time Qu...0.435109to-read fantasy favorites currently-reading yo...10046.000000
612Olympos (Ilium, #2)0.434840to-read fantasy favorites currently-reading fi...10042.000000
613The Drawing of the Three (The Dark Tower, #2)0.434616to-read fantasy favorites currently-reading fi...10055.000000
614The Waste Lands (The Dark Tower, #3)0.434341to-read fantasy favorites currently-reading fi...10052.000000
615The Memory of Earth (Homecoming, #1)0.434336to-read fantasy favorites currently-reading yo...10044.000000
616Briar's Book (Circle of Magic, #4)0.434142to-read fantasy favorites currently-reading yo...10045.000000
617Magician: Apprentice (Raymond E. Feist's Magi...0.434052to-read fantasy favorites currently-reading yo...10033.000000
618Fevre Dream0.433953to-read fantasy favorites currently-reading fi...10045.000000
619The Siege of Macindaw (Ranger's Apprentice, #6)0.433928to-read fantasy favorites currently-reading yo...10046.000000
620Redwall (Redwall, #1)0.433818to-read fantasy favorites currently-reading yo...10048.000000
621The Martian Chronicles0.433196to-read fantasy favorites currently-reading yo...10052.000000
622The Wind Singer (Wind on Fire, #1)0.433142to-read fantasy favorites currently-reading yo...10039.000000
623The Harry Potter Collection 1-4 (Harry Potter,...0.433024to-read fantasy favorites currently-reading yo...10046.000000
624Unseen Academicals (Discworld, #37; Rincewind #8)0.433024to-read fantasy favorites currently-reading yo...10048.000000
625Battlefield Earth: A Saga of the Year 30000.432795to-read fantasy favorites currently-reading fi...10049.000000
626Shattered (The Iron Druid Chronicles, #7)0.432751to-read fantasy favorites currently-reading yo...10037.000000
627The Ringworld Engineers (Ringworld #2)0.432669to-read fantasy favorites currently-reading fi...10042.000000
628VALIS (VALIS Trilogy, #1)0.432576to-read fantasy favorites currently-reading fi...10045.000000
629The Fall of Hyperion (Hyperion Cantos, #2)0.432196to-read fantasy favorites currently-reading fi...10052.000000
630The Sparrow (The Sparrow, #1)0.431763to-read fantasy favorites currently-reading fi...10048.000000
631Footfall0.431511to-read fantasy favorites currently-reading fi...10036.000000
632Cryptonomicon0.431449to-read fantasy favorites currently-reading fi...10045.000000
633The Salmon of Doubt (Dirk Gently, #3)0.431430to-read fantasy favorites currently-reading fi...10047.000000
634Shadow of the Giant (Ender's Shadow, #4)0.431038to-read fantasy favorites currently-reading yo...10048.000000
635Death Masks (The Dresden Files, #5)0.430640to-read fantasy favorites currently-reading fi...10040.000000
636The Skull Throne (Demon Cycle, #4)0.430528to-read fantasy favorites currently-reading fi...10041.000000
637Friday0.430105to-read fantasy favorites currently-reading fi...10041.000000
638The Dark Is Rising Sequence (The Dark Is Risi...0.430095to-read fantasy favorites currently-reading yo...10045.000000
639Proven Guilty (The Dresden Files, #8)0.430082to-read fantasy favorites currently-reading fi...10039.000000
640Abaddon's Gate (The Expanse, #3)0.430002to-read fantasy favorites currently-reading fi...10044.000000
641Turn Coat (The Dresden Files, #11)0.429644to-read fantasy favorites currently-reading fi...10040.000000
642A Hat Full of Sky (Discworld, #32; Tiffany Ach...0.429311to-read fantasy favorites currently-reading yo...10048.000000
643Grave Peril (The Dresden Files, #3)0.429082to-read fantasy favorites currently-reading fi...10042.000000
644Dead Beat (The Dresden Files, #7)0.429048to-read fantasy favorites currently-reading fi...10040.000000
645The Amulet of Samarkand (Bartimaeus, #1)0.429002to-read fantasy favorites currently-reading yo...10049.000000
646The Naked Sun (Robot #2)0.428640to-read fantasy favorites currently-reading fi...10046.000000
647The Prestige0.428522to-read fantasy favorites currently-reading fi...10045.000000
648Eric (Discworld, #9; Rincewind #4)0.428400to-read fantasy favorites currently-reading yo...10048.000000
649Seraphina (Seraphina, #1)0.428247to-read fantasy favorites currently-reading yo...10047.000000
650Shadow Puppets (Ender's Shadow, #3)0.428216to-read fantasy favorites currently-reading yo...10047.000000
651Virtual Light (Bridge, #1)0.428186to-read fantasy favorites currently-reading fi...10042.000000
652The Dragon Heir (The Heir Chronicles, #3)0.427822to-read fantasy favorites currently-reading yo...10044.000000
653The Ocean at the End of the Lane0.427223to-read fantasy favorites currently-reading yo...10048.000000
654Ilium (Ilium, #1)0.427185to-read fantasy favorites currently-reading fi...10042.000000
655Queen of Fire (Raven's Shadow, #3)0.426767to-read fantasy favorites currently-reading fi...10044.000000
656Many Waters (A Wrinkle in Time Quintet, #4)0.426763to-read fantasy favorites currently-reading yo...10046.000000
657Taran Wanderer (The Chronicles of Prydain #4)0.426307to-read fantasy favorites currently-reading yo...10046.000000
658Shadow of the Hegemon (Ender's Shadow, #2)0.426232to-read fantasy favorites currently-reading yo...10047.000000
659Monstrous Regiment (Discworld, #31; Industrial...0.426061to-read fantasy favorites currently-reading yo...10049.000000
6602010: Odyssey Two (Space Odyssey, #2)0.425905to-read fantasy favorites currently-reading fi...10046.000000
661Prince Caspian (Chronicles of Narnia, #2)0.425825to-read fantasy favorites books-i-own owned ya...10048.000000
662Xenocide (Ender's Saga, #3)0.425203to-read fantasy favorites currently-reading yo...10052.000000
663Storm Glass (Glass, #1)0.424853to-read fantasy favorites currently-reading yo...10045.000000
664Sea Glass (Glass, #2)0.424831to-read fantasy favorites currently-reading yo...10045.000000
665Lady Friday (The Keys to the Kingdom, #5)0.424792to-read fantasy favorites currently-reading yo...10045.000000
666Small Favor (The Dresden Files, #10)0.424619to-read fantasy favorites currently-reading fi...10040.000000
667Daja's Book (Circle of Magic, #3)0.424558to-read fantasy favorites currently-reading yo...10043.000000
668The Hedge Knight (The Tales of Dunk and Egg, #1)0.424264to-read fantasy favorites currently-reading fi...10041.000000
669The Quantum Thief (Jean le Flambeur, #1)0.424211to-read fantasy favorites currently-reading fi...10041.000000
670Summer Knight (The Dresden Files, #4)0.423762to-read fantasy favorites currently-reading fi...10039.000000
671Against a Dark Background0.423551to-read fantasy favorites currently-reading fi...10041.000000
672Pebble in the Sky (Galactic Empire #3)0.423249to-read fantasy favorites currently-reading fi...10043.000000
673High-Rise0.423106to-read fantasy favorites currently-reading fi...10045.000000
674Methuselah's Children0.422463to-read fantasy favorites currently-reading fi...10037.000000
675Over Sea, Under Stone (The Dark Is Rising, #1)0.422458to-read fantasy favorites currently-reading yo...10042.000000
676The Queen of the Tearling (The Queen of the Te...0.421864to-read fantasy favorites currently-reading yo...10047.000000
677Lioness Rampant (Song of the Lioness, #4)0.421488to-read fantasy favorites currently-reading yo...10047.000000
678The Thousand Names (The Shadow Campaigns, #1)0.421450to-read fantasy favorites currently-reading fi...10040.000000
679Kurt Vonnegut's Cat's Cradle (Modern Critical ...0.421263to-read fantasy favorites currently-reading fi...10036.000000
680Planet of the Apes0.421024to-read fantasy favorites currently-reading fi...10047.000000
681Drowned Wednesday (The Keys to the Kingdom, #3)0.420550to-read fantasy favorites currently-reading yo...10045.000000
682House Corrino (Prelude to Dune #3)0.420526to-read fantasy favorites currently-reading fi...10042.000000
683Men at Arms: The Play0.420515to-read fantasy favorites currently-reading fi...10033.000000
684Grim Tuesday (The Keys to the Kingdom, #2)0.420200to-read fantasy favorites currently-reading yo...10044.000000
685Sunshine0.419559to-read fantasy favorites currently-reading yo...10048.000000
686The Amazing Maurice and His Educated Rodents (...0.419482to-read fantasy favorites currently-reading yo...10044.000000
687Kraken0.419286to-read fantasy favorites currently-reading fi...10042.000000
688Secret History (Mistborn, #3.5)0.419223to-read fantasy favorites young-adult fiction ...10040.000000
689The Last Dragonslayer (The Chronicles of Kazam...0.419131to-read fantasy favorites currently-reading yo...10041.000000
690Poison Study (Study, #1)0.419123to-read fantasy currently-reading young-adult ...10045.000000
691The Martian0.418789to-read fantasy favorites currently-reading bo...10049.000000
692The Minority Report0.418616to-read fantasy favorites fiction books-i-own ...10039.000000
693Wintersmith (Discworld, #35; Tiffany Aching, #3)0.418397to-read fantasy favorites currently-reading yo...10047.000000
694The Evolutionary Void0.418334to-read fantasy favorites currently-reading fi...10038.000000
695A Wind in the Door (A Wrinkle in Time Quintet,...0.418211to-read fantasy favorites currently-reading yo...10047.000000
696Mona Lisa Overdrive (Sprawl, #3)0.418204to-read fantasy favorites currently-reading fi...10041.000000
697The Lion, the Witch, and the Wardrobe (Chronic...0.418114to-read fantasy favorites currently-reading yo...10052.000000
698Fated (Alex Verus, #1)0.417276to-read fantasy favorites currently-reading yo...10041.000000
699Inversions (Culture, #6)0.417275to-read fantasy favorites currently-reading fi...10044.000000
700Shadow of Night (All Souls Trilogy, #2)0.416622to-read fantasy favorites currently-reading yo...10044.000000
701The Sorcerer in the North (Ranger's Apprentice...0.416523to-read fantasy favorites currently-reading yo...10043.000000
702Ghost Story (The Dresden Files, #13)0.416521to-read fantasy favorites currently-reading fi...10039.000000
703The Magician's Nephew (Chronicles of Narnia, #6)0.416465to-read fantasy currently-reading young-adult ...10049.000000
704The Wee Free Men (Discworld, #30; Tiffany Achi...0.416366to-read fantasy favorites currently-reading yo...10049.000000
705Mister Monday (The Keys to the Kingdom, #1)0.416150to-read fantasy favorites currently-reading yo...10044.000000
706Fahrenheit 4510.416082to-read fantasy favorites currently-reading yo...10051.000000
707Squire (Protector of the Small, #3)0.416052to-read fantasy favorites currently-reading yo...10044.000000
708Harry Potter and the Chamber of Secrets (Harry...0.415904to-read fantasy favorites currently-reading yo...10055.000000
709Mort: The Play0.415842to-read fantasy favorites currently-reading yo...10039.000000
710Chasm City0.415559to-read fantasy favorites currently-reading fi...10041.000000
711Children of God (The Sparrow, #2)0.415519to-read fantasy favorites currently-reading fi...10047.000000
712Rama Revealed (Rama, #4)0.415179to-read fantasy favorites currently-reading fi...10043.000000
713William Shakespeare's Star Wars: Verily, A New...0.415137to-read fantasy favorites currently-reading yo...10048.000000
714Tris's Book (Circle of Magic, #2)0.414815to-read fantasy favorites currently-reading yo...10043.000000
715Trickster's Choice (Daughter of the Lioness, #1)0.414781to-read fantasy favorites currently-reading yo...10046.000000
716The Rook (The Checquy Files, #1)0.414780to-read fantasy favorites currently-reading yo...10044.000000
717Salamandastron (Redwall, #5)0.414736to-read fantasy favorites currently-reading yo...10041.000000
718Lady Knight (Protector of the Small, #4)0.414498to-read fantasy favorites currently-reading yo...10045.000000
719The Rise of Nine (Lorien Legacies, #3)0.414147to-read fantasy favorites currently-reading yo...10044.000000
720Jonathan Strange & Mr Norrell0.413834to-read fantasy favorites currently-reading fi...10050.000000
721Terrier (Beka Cooper, #1)0.413605to-read fantasy favorites currently-reading yo...10044.000000
722Son of a Witch (The Wicked Years, #2)0.413502to-read fantasy favorites currently-reading yo...10049.000000
723Shatterglass (The Circle Opens, #4)0.413359to-read fantasy favorites currently-reading yo...10041.000000
724Lyra's Oxford (His Dark Materials, #3.5)0.412618to-read fantasy favorites currently-reading yo...10045.000000
725The Garden of Rama (Rama, #3)0.411974to-read fantasy favorites currently-reading fi...10042.000000
726Sphere0.411817to-read fantasy favorites currently-reading fi...10050.000000
727Nemesis0.411803to-read fantasy favorites currently-reading fi...10038.000000
728The Atrocity Archives (Laundry Files, #1)0.411385to-read fantasy favorites currently-reading fi...10042.000000
729Talking to Dragons (Enchanted Forest Chronicle...0.410363to-read fantasy favorites currently-reading yo...10043.000000
730Leviathan Wakes (The Expanse, #1)0.409778to-read fantasy favorites currently-reading fi...10045.000000
731The Wizard Heir (The Heir Chronicles, #2)0.409574to-read fantasy favorites currently-reading yo...10043.000000
732The Horse and His Boy (Chronicles of Narnia, #5)0.409540to-read fantasy favorites young-adult fiction ...10051.000000
733The Invasion of the Tearling (The Queen of the...0.409507to-read fantasy favorites currently-reading yo...10046.000000
734The Neverending Story0.409303to-read fantasy favorites currently-reading yo...10053.000000
735A Song of Ice and Fire (A Song of Ice and Fire...0.409290to-read fantasy favorites currently-reading fi...10046.000000
736Lord Brocktree (Redwall, #13)0.408809to-read fantasy favorites currently-reading yo...10038.000000
737Servant of the Bones0.408620to-read fantasy favorites currently-reading fi...10041.000000
738The Passage (The Passage, #1)0.408607to-read fantasy favorites currently-reading fi...10038.000000
739The Reality Dysfunction (Night's Dawn, #1)0.408204to-read fantasy favorites currently-reading fi...10041.000000
740The Kings of Clonmel (Ranger's Apprentice, #8)0.407978to-read fantasy favorites currently-reading yo...10046.000000
741The Andromeda Strain0.407726to-read fantasy favorites currently-reading fi...10049.000000
742Idoru (Bridge #2)0.407623to-read fantasy favorites currently-reading fi...10038.000000
743The Well of Lost Plots (Thursday Next #3)0.407434to-read fantasy favorites currently-reading fi...10048.000000
744Great North Road0.407362to-read fantasy favorites currently-reading fi...10040.000000
745The Warrior's Apprentice (Vorkosigan Saga, #2)0.407334to-read fantasy favorites currently-reading yo...10044.000000
746Alanna: The First Adventure (Song of the Lione...0.407206to-read fantasy favorites currently-reading yo...10045.000000
747The Long Way to a Small, Angry Planet (Wayfare...0.407190to-read fantasy favorites currently-reading yo...10045.000000
748Red Rising (Red Rising, #1)0.407142to-read fantasy favorites currently-reading yo...10050.000000
749So You Want to Be a Wizard (Young Wizards, #1)0.407094to-read fantasy favorites currently-reading yo...10046.000000
750Never Let Me Go0.407022to-read fantasy favorites currently-reading yo...10046.000000
751The Soldiers of Halla (Pendragon, #10)0.406950to-read fantasy favorites currently-reading yo...10042.000000
752An Acceptable Time (A Wrinkle in Time Quintet,...0.406909to-read fantasy favorites currently-reading yo...10045.000000
753Spell or High Water (Magic 2.0, #2)0.406845to-read fantasy favorites currently-reading fi...10035.000000
754The Lost City of Faar (Pendragon, #2)0.406822to-read fantasy favorites currently-reading yo...10040.000000
755Greenwitch (The Dark Is Rising, #3)0.406662to-read fantasy favorites currently-reading yo...10047.000000
756The Dreaming Void0.406112to-read fantasy favorites currently-reading fi...10044.000000
757Revelation Space0.405948to-read fantasy favorites currently-reading fi...10044.000000
758Steelheart (The Reckoners, #1)0.405896to-read fantasy favorites currently-reading yo...10045.000000
759A Darker Shade of Magic (Shades of Magic, #1)0.405877to-read fantasy favorites currently-reading yo...10045.000000
760A Clockwork Orange0.405748to-read fantasy favorites currently-reading yo...10046.000000
761Something from the Nightside (Nightside, #1)0.405580to-read fantasy favorites currently-reading yo...10040.000000
762Pandora's Star0.405566to-read fantasy favorites currently-reading fi...10045.000000
763Ready Player One0.404636to-read fantasy favorites currently-reading yo...10048.000000
764In the Hand of the Goddess (Song of the Liones...0.404136to-read fantasy favorites currently-reading yo...10047.000000
765The Invisible Library (The Invisible Library, #1)0.403917to-read fantasy favorites currently-reading yo...10041.000000
766The Host (The Host, #1)0.403669to-read fantasy favorites currently-reading yo...10049.000000
767Page (Protector of the Small, #2)0.403228to-read fantasy favorites currently-reading yo...10045.000000
768The Long Earth (The Long Earth, #1)0.403164to-read fantasy favorites currently-reading fi...10046.000000
769The Lost World (Jurassic Park, #2)0.403150to-read fantasy favorites currently-reading fi...10048.000000
770Playing with Fire (Skulduggery Pleasant, #2)0.402880to-read fantasy favorites currently-reading yo...10044.000000
771Mossflower (Redwall, #2)0.402723to-read fantasy favorites currently-reading yo...10046.000000
772The Princess Bride0.402092to-read currently-reading ya favourites childr...10043.000000
773Off to Be the Wizard (Magic 2.0, #1)0.401467to-read fantasy favorites currently-reading yo...10038.000000
774Twilight Watch (Watch #3)0.401435to-read fantasy favorites currently-reading fi...10043.000000
775Graceling (Graceling Realm, #1)0.401361to-read fantasy favorites currently-reading yo...10048.000000
776Wild Magic (Immortals, #1)0.401296to-read fantasy favorites currently-reading yo...10044.000000
777Trickster's Queen (Daughter of the Lioness, #2)0.401050to-read fantasy favorites currently-reading yo...10045.000000
778Crown Duel (Crown & Court #1-2)0.400903to-read fantasy favorites currently-reading yo...10041.000000
779The Emperor of Nihon-Ja (Ranger's Apprentice, ...0.400798to-read fantasy favorites currently-reading yo...10042.000000
780The Eternity Code (Artemis Fowl, #3)0.400346to-read fantasy favorites currently-reading yo...10045.000000
781Leven Thumps and the Eyes of the Want (Leven T...0.400331to-read fantasy favorites currently-reading yo...10041.000000
782The Library at Mount Char0.400005to-read fantasy favorites currently-reading fi...10038.000000
783The Time Machine/The Invisible Man0.399522to-read fantasy favorites currently-reading fi...10040.000000
784House of Many Ways (Howl's Moving Castle, #3)0.399455to-read fantasy favorites currently-reading fi...10045.000000
785Magic Study (Study, #2)0.399183to-read fantasy favorites currently-reading yo...10047.000000
786Enchantment0.399102to-read fantasy favorites currently-reading yo...10053.000000
787The Temporal Void0.398896to-read fantasy favorites currently-reading fi...10041.000000
788Fire (Graceling Realm, #2)0.398884to-read fantasy favorites currently-reading yo...10049.000000
789I Shall Wear Midnight (Discworld, #38; Tiffany...0.398870to-read fantasy favorites currently-reading yo...10043.000000
790The Chrysalids0.398807to-read fantasy favorites currently-reading yo...10047.000000
791The Time Paradox (Artemis Fowl, #6)0.398675to-read fantasy favorites currently-reading yo...10044.000000
792The Hydrogen Sonata (Culture #10)0.398336to-read fantasy favorites currently-reading fi...10041.000000
793Armor0.398217to-read fantasy favorites currently-reading fi...10046.000000
794A World Without Heroes (Beyonders, #1)0.397960to-read fantasy favorites currently-reading yo...10044.000000
795The System of the World (The Baroque Cycle, #3)0.397743to-read fantasy favorites currently-reading fi...10037.000000
796The Fifth Season (The Broken Earth, #1)0.397672to-read fantasy favorites currently-reading fi...10041.000000
797Matter (Culture, #8)0.397464to-read fantasy favorites currently-reading fi...10042.000000
798The Peripheral0.397422to-read fantasy favorites currently-reading fi...10039.000000
799Prince of Fools (The Red Queen's War, #1)0.397089to-read fantasy favorites currently-reading fi...10042.000000
800The Naked God (Night's Dawn, #3)0.396998to-read fantasy favorites currently-reading fi...10039.000000
801Smoke and Mirrors: Short Fiction and Illusions0.396770to-read fantasy favorites currently-reading yo...10047.000000
802Starship Troopers0.396304to-read fantasy favorites currently-reading yo...10052.000000
803Frankenstein0.396158to-read fantasy favorites currently-reading fi...10048.000000
804Pattern Recognition (Blue Ant, #1)0.395975to-read fantasy favorites currently-reading fi...10042.000000
805Emperor Mage (Immortals, #3)0.395722to-read fantasy favorites currently-reading yo...10045.000000
806Under the Skin0.395554to-read fantasy favorites currently-reading fi...10041.000000
807Wolf-Speaker (Immortals, #2)0.395534to-read fantasy favorites currently-reading yo...10043.000000
808Wizard and Glass (The Dark Tower, #4)0.395104to-read fantasy favorites currently-reading fi...10052.000000
809Calling on Dragons (Enchanted Forest Chronicle...0.394992to-read fantasy favorites currently-reading yo...10043.000000
810Black Water (Pendragon, #5)0.394180to-read fantasy favorites currently-reading yo...10039.000000
811A Civil Campaign (Vorkosigan Saga, #12)0.394156to-read fantasy favorites currently-reading fi...10041.000000
812Red Mars (Mars Trilogy, #1)0.394001to-read fantasy favorites currently-reading fi...10049.000000
813Mastiff (Beka Cooper, #3)0.393954to-read fantasy favorites currently-reading yo...10041.000000
814Red: The Heroic Rescue (The Circle, #2)0.393903to-read fantasy favorites currently-reading yo...10045.000000
815Eon (The Way, #1)0.393411to-read fantasy favorites currently-reading fi...10038.000000
816Erak's Ransom (Ranger's Apprentice, #7)0.393371to-read fantasy favorites currently-reading yo...10046.000000
817Nemesis Games (The Expanse, #5)0.393362to-read fantasy favorites currently-reading fi...10041.000000
818Surface Detail (Culture #9)0.393325to-read fantasy favorites currently-reading fi...10044.000000
819The Illustrated Man0.393132to-read fantasy favorites currently-reading fi...10050.000000
820Harry Potter and the Sorcerer's Stone (Harry P...0.393062to-read fantasy favorites currently-reading yo...10054.000000
821Hunted (The Iron Druid Chronicles, #6)0.392501to-read fantasy favorites young-adult fiction ...10037.000000
822Timeline0.392199to-read fantasy favorites currently-reading fi...10046.000000
823The Rivers of Zadaa (Pendragon, #6)0.392010to-read fantasy favorites currently-reading yo...10042.000000
824White: The Great Pursuit (The Circle, #3)0.392000to-read fantasy favorites currently-reading yo...10045.000000
825The Fold0.391695to-read fantasy favorites currently-reading fi...10030.000000
826Practical Demonkeeping (Pine Cove, #1)0.391677to-read fantasy favorites currently-reading fi...10041.000000
827The Reality Bug (Pendragon, #4)0.391629to-read fantasy favorites currently-reading yo...10037.000000
828Flowers for Algernon0.391338to-read fantasy favorites currently-reading yo...10052.000000
829The Never War (Pendragon, #3)0.391271to-read fantasy favorites currently-reading yo...10042.000000
830Daughter of the Forest (Sevenwaters, #1)0.390672to-read fantasy favorites currently-reading yo...10048.000000
831The Merchant of Death (Pendragon, #1)0.390236to-read fantasy favorites currently-reading yo...10043.000000
832The Lost Stories (Ranger's Apprentice, #11)0.390100to-read fantasy favorites currently-reading yo...10043.000000
8333001: The Final Odyssey (Space Odyssey, #4)0.390044to-read fantasy favorites currently-reading fi...10046.000000
834The Exiled Queen (Seven Realms, #2)0.389930to-read fantasy favorites currently-reading yo...10046.000000
835Anathem0.389893to-read fantasy favorites currently-reading fi...10043.000000
836The Android's Dream0.389754to-read fantasy favorites currently-reading fi...10041.000000
837The Last Hero (Discworld, #27; Rincewind #7)0.389541to-read fantasy favorites currently-reading yo...10045.000000
838Tricked (The Iron Druid Chronicles, #4)0.389454to-read fantasy favorites currently-reading yo...10036.000000
839First Among Sequels (Thursday Next, #5)0.389304to-read fantasy favorites currently-reading fi...10046.000000
840Ubik0.389167to-read fantasy favorites currently-reading fi...10037.000000
841The Crimson Crown (Seven Realms, #4)0.389140to-read fantasy favorites currently-reading yo...10044.000000
842Gregor and the Code of Claw (Underland Chronic...0.389055to-read fantasy favorites currently-reading yo...10040.000000
843The Faceless Ones (Skulduggery Pleasant, #3)0.388727to-read fantasy favorites currently-reading yo...10046.000000
844The King of Attolia (The Queen's Thief, #3)0.388481to-read fantasy favorites currently-reading yo...10043.000000
845Finnikin of the Rock (Lumatere Chronicles, #1)0.388454to-read fantasy favorites currently-reading yo...10041.000000
846Shards of Honour (Vorkosigan Saga, #1)0.388431to-read fantasy favorites currently-reading fi...10039.000000
847Monster Hunter Vendetta (Monster Hunter Intern...0.388402to-read fantasy favorites currently-reading fi...10032.000000
8482061: Odyssey Three (Space Odyssey, #3)0.388271to-read fantasy favorites currently-reading fi...10045.000000
849Seeds of Rebellion (Beyonders, #2)0.388264to-read fantasy favorites currently-reading yo...10042.000000
850The Power of Six (Lorien Legacies, #2)0.388140to-read fantasy favorites currently-reading yo...10044.000000
851The Handmaid's Tale0.388092to-read fantasy favorites currently-reading fi...10048.000000
852The Silver Chair (Chronicles of Narnia, #4)0.387961to-read fantasy favorites currently-reading yo...10052.000000
853The Quillan Games (Pendragon, #7)0.387871to-read fantasy favorites currently-reading yo...10041.000000
854Flyte (Septimus Heap, #2)0.387822to-read fantasy favorites currently-reading yo...10044.000000
855Hexed (The Iron Druid Chronicles, #2)0.387814to-read fantasy favorites currently-reading yo...10040.000000
856Harry Potter Boxset (Harry Potter, #1-7)0.387690to-read fantasy favorites currently-reading yo...10048.000000
857Artemis Fowl (Artemis Fowl, #1)0.387609to-read fantasy favorites currently-reading yo...10044.000000
858The Sea of Trolls (Sea of Trolls, #1)0.387581to-read fantasy favorites currently-reading yo...10041.000000
859Secrets of the Dragon Sanctuary (Fablehaven, #4)0.387574to-read fantasy favorites currently-reading yo...10044.000000
860The Atlantis Complex (Artemis Fowl, #7)0.387532to-read fantasy favorites currently-reading yo...10041.000000
861The Sword in the Stone (The Once and Future Ki...0.387530to-read fantasy favorites currently-reading yo...10050.000000
862Breakfast of Champions0.387378to-read fantasy favorites currently-reading fi...10050.000000
863Bloodhound (Beka Cooper, #2)0.387340to-read fantasy favorites currently-reading yo...10044.000000
864Searching for Dragons (Enchanted Forest Chroni...0.387287to-read fantasy favorites currently-reading yo...10042.000000
865Johannes Cabal the Necromancer (Johannes Cabal...0.387073to-read fantasy favorites currently-reading yo...10040.000000
866Cloud Atlas0.386676to-read fantasy favorites currently-reading fi...10049.000000
867Grip of the Shadow Plague (Fablehaven, #3)0.386408to-read fantasy favorites currently-reading yo...10042.000000
868The Big Over Easy (Nursery Crime, #1)0.386111to-read fantasy favorites currently-reading yo...10045.000000
869Hyperion (Hyperion Cantos, #1)0.386064to-read fantasy favorites currently-reading fi...10049.000000
870Harry Potter and the Prisoner of Azkaban (Harr...0.385757to-read fantasy favorites currently-reading yo...10053.000000
871The Warrior Heir (The Heir Chronicles, #1)0.385503to-read fantasy favorites currently-reading yo...10041.000000
872Eon: Dragoneye Reborn (Eon, #1)0.385457to-read fantasy favorites currently-reading yo...10046.000000
873Outlander (Outlander, #1)0.385364to-read fantasy favorites currently-reading fi...10050.000000
874Monster Hunter International (Monster Hunter I...0.385068to-read fantasy favorites currently-reading fi...10036.000000
875Alice in Wonderland0.384958to-read fantasy favorites currently-reading yo...10052.000000
876The Opal Deception (Artemis Fowl, #4)0.384615to-read fantasy favorites currently-reading yo...10043.000000
877Seveneves0.384578to-read fantasy favorites currently-reading fi...10040.000000
878Radiance (Wraith Kings, #1)0.384558to-read fantasy favorites currently-reading yo...10037.000000
879Look to Windward (Culture, #7)0.384550to-read fantasy favorites currently-reading fi...10042.000000
880The Algebraist0.384460to-read fantasy favorites currently-reading fi...10039.000000
881The Long War (The Long Earth, #2)0.384407to-read fantasy favorites currently-reading fi...10044.000000
882The Eyes of the Dragon0.384398to-read fantasy favorites currently-reading yo...10051.000000
883The Ring of Solomon (Bartimaeus, #0.5)0.384374to-read fantasy favorites currently-reading yo...10040.000000
884Behemoth (Leviathan, #2)0.384303to-read fantasy favorites currently-reading yo...10046.000000
885The Difference Engine0.384223to-read fantasy favorites currently-reading fi...10041.000000
886The Dark Forest (Remembrance of Earth’s Past...0.384071to-read fantasy favorites currently-reading fi...10040.000000
887Woken Furies (Takeshi Kovacs, #3)0.383969to-read fantasy favorites currently-reading fi...10033.000000
888Something Rotten (Thursday Next, #4)0.383620to-read fantasy favorites currently-reading fi...10041.000000
889Clariel (Abhorsen, #4)0.383477to-read fantasy favorites currently-reading yo...10040.000000
890Mortal Engines (The Hungry City Chronicles, #1)0.383151to-read fantasy favorites currently-reading yo...10038.000000
891All the Birds in the Sky0.382930to-read fantasy favorites currently-reading yo...10039.000000
892Mariel of Redwall (Redwall, #4)0.382794to-read fantasy favorites currently-reading yo...10043.000000
893Breaking Dawn (Twilight, #4)0.382677to-read fantasy favorites currently-reading yo...10041.000000
894Chasing the Prophecy (Beyonders, #3)0.382587to-read fantasy favorites currently-reading yo...10041.000000
895Hammered (The Iron Druid Chronicles, #3)0.382328to-read fantasy favorites currently-reading yo...10038.000000
896Lucifer's Hammer0.382311to-read fantasy favorites currently-reading fi...10044.000000
897Magyk (Septimus Heap, #1)0.382192to-read fantasy favorites currently-reading yo...10045.000000
898Uprooted0.382155to-read fantasy favorites currently-reading yo...10041.000000
899Harry Potter and the Half-Blood Prince (Harry ...0.382077to-read fantasy favorites currently-reading yo...10053.000000
900The Bone Season (The Bone Season, #1)0.381924to-read fantasy favorites currently-reading yo...10044.000000
901Sleeping Giants (Themis Files, #1)0.381709to-read fantasy favorites currently-reading yo...10039.000000
902Artemis Fowl Boxed Set, Bks 1-5 (Artemis Fowl,...0.381570to-read fantasy favorites currently-reading yo...10026.000000
903Broken Angels (Takeshi Kovacs, #2)0.381513to-read fantasy favorites currently-reading fi...10038.000000
904Old Man's War (Old Man's War, #1)0.381372to-read fantasy favorites currently-reading fi...10045.000000
905The Gray Wolf Throne (Seven Realms, #3)0.381190to-read fantasy favorites currently-reading yo...10044.000000
906Fire Study (Study, #3)0.381167to-read fantasy favorites currently-reading yo...10047.000000
907Altered Carbon (Takeshi Kovacs, #1)0.381153to-read fantasy favorites currently-reading fi...10041.000000
908Night of the Soul Stealer (The Last Apprentice...0.380945to-read fantasy favorites currently-reading yo...10041.000000
909The Paper Magician (The Paper Magician Trilogy...0.380940to-read fantasy favorites currently-reading yo...10038.000000
910Raven Rise (Pendragon, #9)0.380739to-read fantasy favorites currently-reading yo...10041.000000
911The Glass Magician (The Paper Magician Trilogy...0.380561to-read fantasy favorites currently-reading yo...10037.000000
912The Human Division (Old Man's War, #5)0.380363to-read fantasy favorites currently-reading fi...10039.000000
913Rise of the Evening Star (Fablehaven, #2)0.380353to-read fantasy favorites currently-reading yo...10042.000000
914Physik (Septimus Heap, #3)0.380331to-read fantasy favorites currently-reading yo...10042.000000
915The Diamond Age: or, A Young Lady's Illustrate...0.380314to-read fantasy favorites currently-reading fi...10043.000000
916Lock In (Lock In, #1)0.380172to-read fantasy favorites currently-reading fi...10040.000000
917Roadside Picnic0.380095to-read favorites currently-reading fiction bo...10035.000000
918Hounded (The Iron Druid Chronicles, #1)0.379700to-read fantasy favorites currently-reading yo...10038.000000
919The Icebound Land (Ranger's Apprentice, #3)0.379695to-read fantasy favorites currently-reading yo...10044.000000
920The Book of Life (All Souls Trilogy, #3)0.379673to-read fantasy favorites currently-reading yo...10042.000000
921The Last Colony (Old Man's War #3)0.379610to-read fantasy favorites currently-reading fi...10042.000000
922The Queen of Attolia (The Queen's Thief, #2)0.379482to-read fantasy favorites currently-reading yo...10042.000000
923Redemption Ark0.379176to-read fantasy favorites currently-reading fi...10039.000000
924Alif the Unseen0.379162to-read fantasy favorites currently-reading yo...10040.000000
925The Moon is a Harsh Mistress0.378971to-read fantasy favorites currently-reading fi...10045.000000
926Close Encounters Of The Third Kind0.378837to-read fantasy favorites currently-reading fi...10029.000000
927Timequake0.377637to-read fantasy favorites currently-reading fi...10045.000000
928Keys to the Demon Prison (Fablehaven, #5)0.377609to-read fantasy favorites currently-reading yo...10043.000000
929The Fiery Cross (Outlander, #5)0.377342to-read fantasy favorites currently-reading fi...10049.000000
930A Gathering of Shadows (Shades of Magic, #2)0.377114to-read fantasy favorites currently-reading yo...10044.000000
931The Pilgrims of Rayne (Pendragon, #8)0.377033to-read fantasy favorites currently-reading yo...10042.000000
932Excession (Culture, #5)0.377027to-read fantasy favorites currently-reading fi...10043.000000
933Lines of Departure (Frontlines, #2)0.376635to-read fantasy favorites currently-reading fi...10035.000000
934Harry Potter and the Deathly Hallows (Harry Po...0.376494to-read fantasy favorites young-adult fiction ...10052.000000
935At the Mountains of Madness0.376329to-read fantasy favorites currently-reading fi...10043.000000
936The Battle for Skandia (Ranger's Apprentice, #4)0.375982to-read fantasy favorites currently-reading yo...10043.000000
937Zodiac0.375810to-read fantasy favorites currently-reading fi...20024.000000
938Zodiac0.101699to-read favorites currently-reading fiction bo...20024.000000
939Blue Noon (Midnighters, #3)0.375663to-read fantasy favorites currently-reading yo...10033.000000
940Lexicon0.375592to-read fantasy favorites currently-reading yo...10043.000000
941We0.375428to-read fantasy favorites currently-reading fi...10046.000000
942Vicious (Villains, #1)0.375084to-read fantasy favorites currently-reading yo...10044.000000
943The Long Patrol (Redwall, #10)0.374828to-read fantasy favorites currently-reading yo...10043.000000
944Bitterblue (Graceling Realm, #3)0.374745to-read fantasy favorites currently-reading yo...10042.000000
945Dawn (Xenogenesis, #1)0.374430to-read fantasy favorites currently-reading fi...10039.000000
946Quicksilver (The Baroque Cycle, #1)0.373757to-read fantasy favorites currently-reading fi...10045.000000
947The Demon King (Seven Realms, #1)0.373573to-read fantasy favorites currently-reading yo...10046.000000
948Horus Rising0.373525to-read fantasy favorites currently-reading fi...10036.000000
949Guards! Guards!: The Play0.373421to-read fantasy favorites currently-reading yo...10028.000000
950Agents of Light and Darkness (Nightside, #2)0.373186to-read fantasy favorites currently-reading fi...10037.000000
951Trapped (The Iron Druid Chronicles, #5)0.373132to-read fantasy favorites currently-reading yo...10037.000000
952Magic Steps (The Circle Opens, #1)0.372969to-read fantasy favorites currently-reading yo...10041.000000
953Charlie Bone and the Hidden King (The Children...0.372823to-read fantasy favorites currently-reading yo...10040.000000
954Timebound (The Chronos Files, #1)0.372779to-read fantasy favorites currently-reading yo...10035.000000
955On Basilisk Station (Honor Harrington, #1)0.372770to-read fantasy favorites currently-reading fi...10040.000000
956Saphirblau (Edelstein-Trilogie, #2)0.372760to-read fantasy favorites currently-reading yo...10043.000000
957Outcast of Redwall (Redwall, #8)0.372497to-read fantasy favorites currently-reading yo...10042.000000
958The History of the Hobbit, Part One: Mr. Baggins0.372221to-read fantasy favorites currently-reading yo...10031.000000
959The Wretched of Muirwood (Legends of Muirwood,...0.372041to-read fantasy favorites currently-reading yo...10036.000000
960The Sorceress (The Secrets of the Immortal Nic...0.372006to-read fantasy favorites currently-reading yo...10041.000000
961Zero History (Blue Ant, #3)0.371952to-read fantasy favorites currently-reading fi...10037.000000
962Wuthering Heights0.371650to-read favorites currently-reading fiction bo...10057.000000
963The Arctic Incident (Artemis Fowl, #2)0.371254to-read fantasy favorites currently-reading yo...10043.000000
964The Dark Tower (The Dark Tower, #7)0.370889to-read fantasy favorites currently-reading fi...10049.000000
965First Test (Protector of the Small, #1)0.370690to-read fantasy favorites currently-reading yo...10039.000000
966The Vampire Lestat (The Vampire Chronicles, #2)0.370513to-read fantasy favorites currently-reading fi...10050.000000
967Golden Son (Red Rising, #2)0.370331to-read fantasy favorites currently-reading yo...10050.000000
968The Ghost Brigades (Old Man's War, #2)0.370325to-read fantasy favorites currently-reading fi...10043.000000
969Jennifer Government0.370242to-read fantasy favorites currently-reading yo...10044.000000
970The Man in the High Castle0.370084to-read fantasy favorites currently-reading fi...10046.000000
971Alice's Adventures in Wonderland & Through the...0.370079to-read fantasy favorites currently-reading yo...10054.000000
972Harry Potter and the Order of the Phoenix (Har...0.369532to-read fantasy favorites currently-reading yo...10041.000000
973Twenty Thousand Leagues Under the Sea0.369399to-read fantasy favorites currently-reading yo...10049.000000
974Fuzzy Nation0.369394to-read fantasy favorites currently-reading yo...10041.000000
975The Witching Hour (Lives of the Mayfair Witche...0.369241to-read fantasy favorites currently-reading fi...10046.000000
976The Legend of Luke (Redwall, #12)0.369235to-read fantasy favorites currently-reading yo...10036.000000
977Authority (Southern Reach, #2)0.368963to-read fantasy favorites currently-reading fi...10039.000000
978Skulduggery Pleasant (Skulduggery Pleasant, #1)0.368852to-read fantasy favorites currently-reading yo...10042.000000
979The Fall of Five (Lorien Legacies, #4)0.368843to-read fantasy favorites currently-reading yo...10042.000000
980The Past Through Tomorrow (Future History, #1-21)0.368686to-read fantasy favorites currently-reading fi...10033.000000
981The Lost Colony (Artemis Fowl, #5)0.368370to-read fantasy favorites currently-reading yo...10041.000000
982The Complete Robot (Robot #0.3)0.368258to-read fantasy favorites currently-reading fi...10040.000000
983Harry Potter Collection (Harry Potter, #1-6)0.368135to-read fantasy favorites currently-reading yo...10042.000000
984Trigger Warning: Short Fictions and Disturbances0.368077to-read fantasy favorites currently-reading fi...10043.000000
985Scent of Magic (Healer, #2)0.367962to-read fantasy favorites currently-reading yo...10047.000000
986The Prefect (Prefect Dreyfus Emergency, #1)0.367960to-read fantasy favorites currently-reading fi...10035.000000
987Red Queen (Red Queen, #1)0.367682to-read fantasy favorites currently-reading yo...10046.000000
988Harry Potter Boxed Set, Books 1-5 (Harry Potte...0.367531to-read fantasy favorites currently-reading yo...10039.000000
989Armada0.366827to-read fantasy favorites currently-reading yo...10042.000000
990The Alchemyst (The Secrets of the Immortal Nic...0.366651to-read fantasy favorites currently-reading yo...10045.000000
991A Canticle for Leibowitz0.366572to-read fantasy favorites currently-reading fi...10044.000000
992The Confusion (The Baroque Cycle, #2)0.366240to-read fantasy favorites currently-reading fi...10039.000000
993Sandman Slim (Sandman Slim, #1)0.366070to-read fantasy favorites currently-reading fi...10038.000000
994The Secret Hour (Midnighters, #1)0.365872to-read fantasy favorites currently-reading yo...10035.000000
995An Ember in the Ashes (An Ember in the Ashes, #1)0.365812to-read fantasy favorites currently-reading yo...10044.000000
996The Second Ship (The Rho Agenda, #1)0.365418to-read fantasy favorites currently-reading yo...10034.000000
997The Golem and the Jinni (The Golem and the Jin...0.365324to-read fantasy favorites currently-reading yo...10043.000000
998The Book of Lost Things0.365306to-read fantasy favorites currently-reading yo...10049.000000
999Terms of Enlistment (Frontlines #1)0.365270to-read fantasy favorites currently-reading fi...10033.000000
1000Staked (The Iron Druid Chronicles, #8)0.365262to-read fantasy favorites currently-reading fi...10031.000000
1001The Ruins of Gorlan (Ranger's Apprentice, #1)0.365237to-read fantasy favorites currently-reading yo...10043.000000
1002Embassytown0.365074to-read fantasy favorites currently-reading fi...10040.000000
1003A Discovery of Witches (All Souls Trilogy, #1)0.364969to-read fantasy favorites currently-reading yo...10044.000000
1004Sapphique (Incarceron, #2)0.364944to-read fantasy favorites currently-reading yo...10042.000000
1005Falling Kingdoms (Falling Kingdoms, #1)0.364888to-read fantasy young-adult fiction books-i-ow...10040.000000
1006Leviathan (Leviathan, #1)0.364699to-read fantasy favorites currently-reading yo...10046.000000
1007Touching Darkness (Midnighters, #2)0.364527to-read fantasy favorites currently-reading yo...10035.000000
1008I Am Legend and Other Stories0.364471to-read fantasy favorites currently-reading fi...10045.000000
1009Animal Farm0.364284to-read fantasy favorites young-adult fiction ...10051.000000
1010The Obelisk Gate (The Broken Earth, #2)0.363971to-read fantasy favorites currently-reading fi...10037.000000
1011InterWorld (InterWorld, #1)0.363834to-read fantasy favorites currently-reading yo...10046.000000
1012City of Masks (Stravaganza, #1)0.363771to-read fantasy favorites currently-reading yo...10042.000000
1013Aurora0.363586to-read fantasy favorites currently-reading fi...10037.000000
1014Oryx and Crake (MaddAddam, #1)0.363488to-read fantasy favorites currently-reading fi...10043.000000
1015The Water Knife0.363432to-read fantasy favorites currently-reading fi...10035.000000
1016Hollow City (Miss Peregrine’s Peculiar Child...0.363394to-read fantasy favorites young-adult fiction ...10045.000000
1017The Revenge of Seven (Lorien Legacies, #5)0.363113to-read fantasy favorites currently-reading yo...10039.000000
1018The Eyre Affair (Thursday Next, #1)0.362833to-read fantasy favorites currently-reading yo...10047.000000
1019Out of Oz (The Wicked Years, #4)0.362722to-read fantasy favorites currently-reading yo...10045.000000
1020Syren (Septimus Heap, #5)0.362720to-read fantasy favorites currently-reading yo...10043.000000
1021Smaragdgrün (Edelstein-Trilogie, #3)0.362693to-read fantasy favorites currently-reading yo...10042.000000
1022Player Piano0.361964to-read fantasy favorites currently-reading fi...10045.000000
1023The Enchantress (The Secrets of the Immortal N...0.361816to-read fantasy favorites currently-reading yo...10044.000000
1024Acceptance (Southern Reach, #3)0.361813to-read fantasy favorites currently-reading fi...10040.000000
1025Leven Thumps and the Gateway to Foo (Leven Thu...0.361786to-read fantasy favorites currently-reading yo...10038.000000
1026The Strange Case of Dr. Jekyll and Mr. Hyde0.360801to-read fantasy favorites currently-reading fi...10044.000000
1027Ancillary Mercy (Imperial Radch #3)0.360646to-read fantasy favorites fiction books-i-own ...10036.000000
1028Shadowland (The Mediator, #1)0.360468to-read fantasy favorites currently-reading yo...10045.000000
1029Dealing with Dragons (Enchanted Forest Chronic...0.360134to-read fantasy favorites currently-reading yo...10041.000000
1030Absolution Gap0.360094to-read fantasy favorites currently-reading fi...10040.000000
1031Earth Unaware (The First Formic War, #1)0.359898to-read fantasy favorites currently-reading yo...10041.000000
1032Watership Down (Watership Down, #1)0.359813to-read fantasy favorites currently-reading yo...10053.000000
1033The Thief (The Queen's Thief, #1)0.359662to-read fantasy favorites currently-reading yo...10040.000000
1034City of Glass (The Mortal Instruments, #3)0.359635to-read fantasy favorites currently-reading yo...10044.000000
1035Fragile Things: Short Fictions and Wonders0.359619to-read fantasy favorites currently-reading fi...10045.000000
1036Reamde0.359430to-read fantasy favorites currently-reading fi...10041.000000
1037A Wrinkle in Time (A Wrinkle in Time Quintet, #1)0.359381to-read fantasy favorites currently-reading yo...10045.000000
1038Firefight (The Reckoners, #2)0.359208to-read fantasy favorites currently-reading yo...10042.000000
1039Lord of the Flies0.359035to-read fantasy favorites currently-reading yo...10053.000000
1040I Am Number Four (Lorien Legacies, #1)0.358930to-read fantasy favorites currently-reading yo...10044.000000
1041Pride and Prejudice0.358438to-read favorites young-adult fiction books-i-...10057.000000
1042Perfect Shadow (Night Angel, #0.5)0.358349to-read fantasy favorites currently-reading yo...10032.000000
1043Agent to the Stars0.357903to-read fantasy favorites currently-reading fi...10037.000000
1044Parable of the Sower (Earthseed, #1)0.357829to-read fantasy favorites currently-reading yo...10040.000000
1045New Moon (Twilight, #2)0.357416to-read fantasy favorites currently-reading yo...10046.000000
1046Dark Days (Skulduggery Pleasant, #4)0.357393to-read fantasy favorites currently-reading yo...10043.000000
1047Touch of Power (Healer, #1)0.357321to-read fantasy favorites currently-reading yo...10040.000000
1048Gregor and the Marks of Secret (Underland Chro...0.357214to-read fantasy favorites currently-reading yo...10040.000000
1049City of Ashes (The Mortal Instruments, #2)0.357204to-read fantasy favorites currently-reading yo...10047.000000
1050The Mysterious Island (Extraordinary Voyages, ...0.357018to-read fantasy favorites currently-reading yo...10043.000000
1051Spook Country (Blue Ant, #2)0.357006to-read fantasy favorites currently-reading fi...10041.000000
1052Un Lun Dun0.356842to-read fantasy favorites currently-reading yo...10039.000000
1053Alcatraz Versus the Evil Librarians (Alcatraz,...0.356583to-read fantasy favorites currently-reading yo...10040.000000
1054God Bless You, Mr. Rosewater0.356433to-read fantasy favorites currently-reading fi...10046.000000
1055A War of Gifts (Ender's Saga, #1.1)0.356256to-read fantasy favorites currently-reading yo...10043.000000
1056The Outcasts (Brotherband Chronicles, #1)0.356162to-read fantasy favorites currently-reading yo...10039.000000
1057Rise of the Elgen (Michael Vey, #2)0.355888to-read fantasy favorites currently-reading yo...10043.000000
1058The Forever War (The Forever War, #1)0.355884to-read fantasy favorites currently-reading fi...10040.000000
1059The Royal Ranger (Ranger's Apprentice, #12)0.355850to-read fantasy favorites currently-reading yo...10041.000000
1060Foundation's Edge (Foundation #4)0.355491to-read fantasy favorites currently-reading fi...10042.000000
1061A Lion Among Men (The Wicked Years, #3)0.355389to-read fantasy favorites currently-reading yo...10045.000000
1062Animal Farm / 19840.355260to-read fantasy favorites currently-reading yo...10049.000000
1063Shift (Silo, #2)0.355192to-read fantasy favorites currently-reading yo...10045.000000
1064Marlfox (Redwall, #11)0.355144to-read fantasy favorites currently-reading yo...10041.000000
1065The Left Hand of Darkness0.354956to-read fantasy favorites currently-reading fi...10044.000000
1066The Queen of the Damned (The Vampire Chronicle...0.354751to-read fantasy favorites currently-reading fi...10043.000000
1067Charmed Life (Chrestomanci, #1)0.354632to-read fantasy favorites currently-reading yo...10042.000000
1068Zoe's Tale (Old Man's War, #4)0.354493to-read fantasy favorites currently-reading fi...10042.000000
1069Deerskin0.354488to-read fantasy favorites currently-reading yo...10046.000000
1070Queste (Septimus Heap, #4)0.354398to-read fantasy favorites currently-reading yo...10042.000000
1071Eona: The Last Dragoneye (Eon, #2)0.354383to-read fantasy favorites currently-reading yo...10047.000000
1072Babylon's Ashes (The Expanse, #6)0.354262to-read fantasy favorites currently-reading fi...10036.000000
1073The Magician (The Secrets of the Immortal Nich...0.354047to-read fantasy favorites currently-reading yo...10041.000000
1074Alien0.353889to-read fantasy favorites currently-reading fi...10042.000000
1075Micro0.353854to-read fantasy favorites currently-reading fi...10042.000000
1076The Bird and the Sword (The Bird and the Sword...0.353803to-read fantasy favorites currently-reading yo...10037.000000
1077Voyager (Outlander, #3)0.353500to-read fantasy favorites currently-reading fi...10048.000000
1078Don't Panic: The Official Hitchhiker's Guide t...0.353452to-read fantasy favorites currently-reading fi...10031.000000
1079Shades of Grey0.353275to-read fantasy favorites currently-reading yo...10048.000000
1080Curse of the Bane (The Last Apprentice / Wards...0.353113to-read fantasy favorites currently-reading yo...10041.000000
1081Midnight Riot (Peter Grant, #1)0.352996to-read fantasy favorites currently-reading fi...10033.000000
1082A Christmas Carol0.352982to-read fantasy favorites currently-reading yo...10046.000000
1083Fablehaven (Fablehaven, #1)0.352686to-read fantasy favorites currently-reading yo...10041.000000
1084The Humans0.352641to-read fantasy favorites currently-reading fi...10041.000000
1085Lord of Light0.352595to-read fantasy favorites currently-reading fi...10043.000000
1086The Queen's Poisoner (Kingfountain, #1)0.351954to-read fantasy favorites currently-reading yo...10033.000000
1087The Virgin Suicides0.351838to-read favorites currently-reading young-adul...10052.000000
1088Heir of Fire (Throne of Glass, #3)0.351729to-read fantasy favorites currently-reading yo...10045.000000
1089Interesting Times: The Play0.351538to-read fantasy favorites currently-reading yo...10038.000000
1090Crown of Midnight (Throne of Glass, #2)0.351528to-read fantasy favorites currently-reading yo...10045.000000
1091Wolves of the Calla (The Dark Tower, #5)0.351111to-read fantasy favorites currently-reading fi...10046.000000
1092Throne of Glass (Throne of Glass, #1)0.350904to-read fantasy favorites currently-reading yo...10043.000000
1093House of Suns0.350826to-read fantasy favorites currently-reading fi...10037.000000
1094Broken Homes (Peter Grant, #4)0.350719to-read fantasy favorites currently-reading fi...10036.000000
1095Dragonfly in Amber (Outlander, #2)0.350479to-read fantasy favorites currently-reading fi...10048.000000
1096Darkest Hour (The Mediator, #4)0.350383to-read fantasy favorites currently-reading yo...10042.000000
1097Eclipse (Twilight, #3)0.350208to-read fantasy favorites currently-reading yo...10045.000000
1098Hawksong (The Kiesha'ra, #1)0.350194to-read fantasy favorites currently-reading yo...10039.000000
1099Twilight (Twilight, #1)0.350112to-read fantasy favorites currently-reading yo...10044.000000
1100Ninth Key (The Mediator, #2)0.350003to-read fantasy favorites currently-reading yo...10043.000000
1101The Last Guardian (Artemis Fowl, #8)0.349963to-read fantasy favorites currently-reading yo...10038.000000
1102Ruby Red (Precious Stone Trilogy, #1)0.349821to-read fantasy favorites currently-reading yo...10043.000000
1103Dracula0.349669to-read fantasy favorites currently-reading fi...10052.000000
1104Gregor and the Prophecy of Bane (Underland Chr...0.349566to-read fantasy favorites currently-reading yo...10041.000000
1105Rendezvous with Rama (Rama, #1)0.349271to-read fantasy favorites currently-reading fi...10049.000000
1106Mockingjay (The Hunger Games, #3)0.349039to-read fantasy favorites currently-reading yo...10047.000000
1107The Strange Case of Dr. Jekyll and Mr. Hyde an...0.349014to-read fantasy favorites currently-reading fi...10043.000000
1108Field of Dishonor (Honor Harrington, #4)0.348921to-read fantasy favorites currently-reading fi...10038.000000
1109Glass Sword (Red Queen, #2)0.348851to-read fantasy favorites young-adult fiction ...10043.000000
1110Emma0.348779to-read favorites currently-reading fiction bo...10052.000000
1111City of Fallen Angels (The Mortal Instruments,...0.348577to-read fantasy favorites currently-reading yo...10044.000000
1112The Winter King (The Warlord Chronicles, #1)0.348515to-read fantasy favorites currently-reading fi...10043.000000
1113Sense and Sensibility0.348242to-read favorites fiction books-i-own owned fa...10048.000000
1114Calamity (The Reckoners, #3)0.348192to-read fantasy favorites currently-reading yo...10041.000000
1115City of Bones (The Mortal Instruments, #1)0.347992to-read fantasy favorites currently-reading yo...10046.000000
1116Truthwitch (The Witchlands, #1)0.347906to-read fantasy favorites currently-reading yo...10036.000000
1117The Bellmaker (Redwall, #7)0.347879to-read fantasy favorites currently-reading yo...10041.000000
1118Airborn (Matt Cruse, #1)0.347795to-read fantasy favorites currently-reading yo...10036.000000
1119The Invaders (Brotherband Chronicles, #2)0.347567to-read fantasy favorites currently-reading yo...10039.000000
1120The High King (The Chronicles of Prydain #5)0.347535to-read fantasy favorites currently-reading yo...10049.000000
1121Gulliver's Travels0.347449to-read fantasy favorites currently-reading yo...10047.000000
1122Annihilation (Southern Reach, #1)0.347399to-read fantasy favorites currently-reading fi...10038.000000
1123Goliath (Leviathan, #3)0.346766to-read fantasy favorites currently-reading yo...10043.000000
1124The Devil You Know (Felix Castor, #1)0.346531to-read fantasy favorites currently-reading fi...10036.000000
1125The Forge of God (Forge of God, #1)0.346378to-read fantasy favorites currently-reading fi...10036.000000
1126The Necromancer (The Secrets of the Immortal ...0.346341to-read fantasy favorites currently-reading yo...10039.000000
1127Side Jobs: Stories from the Dresden Files (The...0.345893to-read fantasy favorites currently-reading fi...10034.000000
1128Seeing Redd (The Looking Glass Wars, #2)0.345855to-read fantasy favorites currently-reading yo...10043.000000
1129Twilight (The Mediator, #6)0.345760to-read fantasy favorites currently-reading yo...10042.000000
1130The Dispossessed0.345661to-read fantasy favorites currently-reading fi...10045.000000
1131The Picture of Dorian Gray0.345318to-read fantasy favorites currently-reading fi...10051.000000
1132The Assassin's Blade (Throne of Glass, #0.1-0.5)0.345140to-read fantasy favorites currently-reading yo...10044.000000
1133Library of Souls (Miss Peregrine's Peculiar Ch...0.345057to-read fantasy favorites currently-reading yo...10044.000000
1134Inkheart (Inkworld, #1)0.345048to-read fantasy favorites currently-reading yo...10049.000000
1135Whispers Under Ground (Peter Grant, #3)0.344632to-read fantasy favorites currently-reading fi...10038.000000
1136The Shining (The Shining #1)0.344575to-read fantasy currently-reading fiction owne...10049.000000
1137Gregor and the Curse of the Warmbloods (Underl...0.344434to-read fantasy favorites currently-reading yo...10041.000000
1138Catching Fire (The Hunger Games, #2)0.344402to-read fantasy currently-reading young-adult ...10044.000000
1139Pushing Ice0.344390to-read fantasy favorites currently-reading fi...10038.000000
1140Drums of Autumn (Outlander, #4)0.344287to-read fantasy favorites currently-reading fi...10048.000000
1141Ancillary Sword (Imperial Radch, #2)0.344264to-read fantasy favorites currently-reading fi...10042.000000
1142The First Fifteen Lives of Harry August0.344111to-read fantasy favorites currently-reading yo...10042.000000
114311/22/630.343848to-read fantasy favorites currently-reading fi...10047.000000
1144Darke (Septimus Heap, #6)0.343435to-read fantasy favorites currently-reading yo...10041.000000
1145Lost0.343321to-read fantasy favorites currently-reading yo...10041.000000
1146Miss Peregrine’s Home for Peculiar Children ...0.342872to-read fantasy favorites young-adult fiction ...10044.000000
1147The Wind Through the Keyhole (The Dark Tower, ...0.342795to-read fantasy favorites currently-reading fi...10048.000000
1148Foxglove Summer (Peter Grant, #5)0.342759to-read fantasy favorites currently-reading fi...10037.000000
1149Black: The Birth of Evil (The Circle, #1)0.342665to-read fantasy favorites currently-reading yo...10044.000000
1150The Magic Thief (Magic Thief, #1)0.342627to-read fantasy favorites currently-reading yo...10037.000000
1151River Secrets (The Books of Bayern, #3)0.342453to-read fantasy favorites currently-reading yo...10038.000000
1152Pandora (New Tales of the Vampires, #1)0.342079to-read fantasy favorites currently-reading fi...10042.000000
1153The 13½ Lives of Captain Bluebear (Zamonia, #1)0.342019to-read fantasy favorites currently-reading yo...10046.000000
1154The Master Magician (The Paper Magician Trilog...0.341972to-read fantasy favorites currently-reading yo...10038.000000
1155The Tale of the Body Thief (The Vampire Chroni...0.341864to-read fantasy favorites currently-reading fi...10041.000000
1156Atonement0.341801to-read favorites currently-reading fiction bo...10049.000000
1157The Supernaturalist0.341704to-read fantasy favorites currently-reading yo...10039.000000
1158Kindred0.341685to-read fantasy favorites currently-reading yo...10040.000000
1159Specials (Uglies, #3)0.341598to-read fantasy favorites currently-reading yo...10045.000000
1160Moon Over Soho (Peter Grant, #2)0.341465to-read fantasy favorites currently-reading fi...10036.000000
1161An Echo in the Bone (Outlander, #7)0.341190to-read fantasy favorites currently-reading fi...10047.000000
1162Ever After (The Hollows, #11)0.340951to-read fantasy favorites currently-reading fi...10037.000000
1163Flag in Exile (Honor Harrington, #5)0.340887to-read fantasy favorites currently-reading fi...10041.000000
1164The Honor of the Queen (Honor Harrington, #2)0.340793to-read fantasy favorites currently-reading fi...10039.000000
1165The Witch With No Name (The Hollows, #13)0.340747to-read fantasy favorites currently-reading fi...10034.000000
1166Dawn of the Dreadfuls (Pride and Prejudice and...0.340260to-read fantasy favorites currently-reading yo...10042.000000
1167Heir to the Empire (Star Wars: The Thrawn Tril...0.340015to-read fantasy favorites currently-reading yo...10053.000000
1168Prey0.339886to-read fantasy favorites currently-reading fi...10042.000000
1169Soon I Will Be Invincible0.339869to-read fantasy favorites currently-reading yo...10043.000000
1170The Crown of Embers (Fire and Thorns, #2)0.339832to-read fantasy favorites currently-reading yo...10040.000000
1171Quidditch Through the Ages0.339797to-read fantasy favorites currently-reading yo...10045.000000
1172Wool Omnibus (Silo, #1)0.339572to-read fantasy favorites currently-reading yo...10047.000000
1173Dead Until Dark (Sookie Stackhouse, #1)0.339302to-read fantasy favorites currently-reading yo...10041.000000
1174The Fate of Ten (Lorien Legacies, #6)0.339268to-read fantasy favorites currently-reading yo...10036.000000
1175The Illuminatus! Trilogy0.339120to-read fantasy favorites currently-reading fi...10034.000000
1176Underground Airlines0.338499to-read fantasy favorites currently-reading fi...10030.000000
1177Pearls of Lutra (Redwall, #9)0.338416to-read fantasy favorites currently-reading yo...10040.000000
1178Harry Potter and the Order of the Phoenix (Har...0.338264to-read fantasy favorites currently-reading yo...10039.000000
1179Skin Deep (Legion, #2)0.338182to-read fantasy favorites currently-reading yo...10037.000000
1180Song of Susannah (The Dark Tower, #6)0.337856to-read fantasy favorites currently-reading fi...10043.000000
1181Black Magic Sanction (The Hollows, #8)0.337842to-read fantasy favorites currently-reading fi...10038.000000
1182The Last Werewolf (The Last Werewolf, #1)0.337799to-read fantasy favorites currently-reading fi...10041.000000
1183Stand on Zanzibar0.337761to-read fantasy favorites currently-reading fi...10041.000000
1184Sand Omnibus (Sand, #1-5)0.337592to-read fantasy favorites currently-reading yo...10044.000000
1185Shadow and Bone (Shadow and Bone, #1)0.337477to-read fantasy favorites currently-reading yo...10042.000000
1186The Time Traveler's Wife0.337344to-read fantasy favorites currently-reading fi...10046.000000
1187Lost Horizon0.337331to-read favorites currently-reading young-adul...10044.000000
1188Morning Star (Red Rising, #3)0.337207to-read fantasy favorites currently-reading yo...10043.000000
1189The Trial0.337149to-read fantasy favorites currently-reading fi...10044.000000
1190The Three-Body Problem (Remembrance of Earthâ€...0.337097to-read fantasy favorites currently-reading fi...10040.000000
1191Dead Witch Walking (The Hollows, #1)0.336794to-read fantasy favorites currently-reading fi...10038.000000
1192The Atlantis World (The Origin Mystery, #3)0.336556to-read fantasy favorites currently-reading yo...10036.000000
1193Paladin of Souls (World of the Five Gods, #2)0.336518to-read fantasy favorites currently-reading fi...10047.000000
1194Froi of the Exiles (Lumatere Chronicles, #2)0.336433to-read fantasy favorites currently-reading yo...10038.000000
1195At the Mountains of Madness and Other Tales of...0.336291to-read fantasy favorites currently-reading fi...10037.000000
1196Infected (Infected, #1)0.336150to-read fantasy favorites currently-reading yo...10036.000000
1197The Great and Secret Show (Book of the Art #1)0.335719to-read fantasy favorites currently-reading fi...10042.000000
1198Illuminae (The Illuminae Files, #1)0.335636to-read fantasy favorites currently-reading yo...10040.000000
1199Dust (Silo, #3)0.335635to-read fantasy favorites currently-reading yo...10042.000000
1200Aloha from Hell (Sandman Slim, #3)0.335518to-read fantasy favorites currently-reading fi...10035.000000
1201Wild Seed (Patternmaster, #1)0.335502to-read fantasy favorites currently-reading fi...10036.000000
1202Accelerando (Singularity)0.335405to-read fantasy favorites currently-reading fi...10033.000000
1203The Children of Men0.335266to-read fantasy favorites currently-reading fi...10043.000000
1204Slapstick, or Lonesome No More!0.334900to-read fantasy favorites currently-reading fi...10046.000000
1205All You Need Is Kill0.334792to-read fantasy favorites currently-reading yo...10041.000000
1206The Hunger Games Trilogy Boxset (The Hunger Ga...0.334685to-read fantasy favorites currently-reading yo...10045.000000
1207The Battle of the Labyrinth (Percy Jackson and...0.334614to-read fantasy favorites currently-reading yo...10047.000000
1208Beautiful Chaos (Caster Chronicles, #3)0.333801to-read fantasy favorites currently-reading yo...10041.000000
1209Saving the World and Other Extreme Sports (Max...0.333476to-read fantasy favorites currently-reading yo...10043.000000
1210Neuromancer0.333453to-read fantasy favorites currently-reading fi...10044.000000
1211The Count of Monte Cristo0.333450to-read fantasy favorites currently-reading fi...10048.000000
1212Definitely Dead (Sookie Stackhouse, #6)0.333340to-read fantasy favorites currently-reading yo...10039.000000
1213Torn (Trylle, #2)0.333071to-read fantasy favorites currently-reading yo...10040.000000
1214White Cat (Curse Workers, #1)0.333003to-read fantasy favorites currently-reading yo...10040.000000
1215Rogues0.332974to-read fantasy favorites currently-reading fi...10044.000000
1216Switched (Trylle, #1)0.332570to-read fantasy favorites currently-reading yo...10039.000000
1217The Monstrumologist (The Monstrumologist, #1)0.332191to-read fantasy favorites currently-reading yo...10041.000000
1218The Bitter Kingdom (Fire and Thorns, #3)0.331722to-read fantasy favorites currently-reading yo...10034.000000
1219Snow Like Ashes (Snow Like Ashes, #1)0.331527to-read fantasy favorites currently-reading yo...10041.000000
1220A Better World (Brilliance Saga, #2)0.331412to-read fantasy favorites currently-reading fi...10034.000000
1221Half Way Home0.331229to-read fantasy favorites currently-reading yo...10033.000000
1222Evil Star (The Gatekeepers, #2)0.331099to-read fantasy favorites currently-reading yo...10041.000000
1223School's Out—Forever (Maximum Ride, #2)0.330844to-read fantasy favorites currently-reading yo...10044.000000
1224The Short Victorious War (Honor Harrington, #3)0.330664to-read fantasy favorites currently-reading fi...10039.000000
1225Mrs. Dalloway0.330522to-read favorites currently-reading fiction bo...10045.000000
1226The Fourth Bear (Nursery Crime, #2)0.330324to-read fantasy favorites currently-reading yo...10041.000000
1227Ascend (Trylle, #3)0.330321to-read fantasy favorites currently-reading yo...10040.000000
1228Siege and Storm (Shadow and Bone, #2)0.330220to-read fantasy favorites currently-reading yo...10043.000000
1229Six's Legacy (Lorien Legacies: The Lost Files,...0.330190to-read fantasy favorites currently-reading yo...10033.000000
1230Grendel0.330156to-read fantasy favorites currently-reading yo...10043.000000
1231Fantastic Beasts and Where to Find Them0.330069to-read fantasy favorites young-adult fiction ...10042.000000
1232Blindsight (Firefall, #1)0.330010to-read fantasy favorites currently-reading fi...10039.000000
1233Inkdeath (Inkworld, #3)0.329969to-read fantasy favorites currently-reading yo...10046.000000
1234A Great and Terrible Beauty (Gemma Doyle, #1)0.329808to-read fantasy favorites currently-reading yo...10044.000000
1235The Bone Clocks0.329609to-read fantasy favorites currently-reading fi...10042.000000
1236The Ladies of Grace Adieu and Other Stories0.329578to-read fantasy favorites currently-reading fi...10037.000000
1237Daughter of Smoke & Bone (Daughter of Smoke & ...0.329490to-read fantasy favorites currently-reading yo...10042.000000
1238Charlie Bone and the Invisible Boy (The Childr...0.329339to-read fantasy favorites currently-reading yo...10038.000000
1239The Line (Witching Savannah, #1)0.329209to-read fantasy favorites currently-reading yo...10031.000000
1240Oliver Twist0.329202to-read favorites currently-reading young-adul...10050.000000
1241Gregor the Overlander (Underland Chronicles, #1)0.329019to-read fantasy favorites currently-reading yo...10038.000000
1242One Flew Over the Cuckoo's Nest0.328888to-read favorites currently-reading fiction bo...20025.500000
1243One Flew Over the Cuckoo's Nest0.174731to-read favorites currently-reading fiction bo...20025.500000
1244Dragon Rider (Dragon Rider, #1)0.328687to-read fantasy favorites currently-reading yo...10043.000000
1245The Undead Pool (The Hollows, #12)0.328637to-read fantasy favorites fiction books-i-own ...10034.000000
1246Congo0.328589to-read fantasy favorites currently-reading fi...10041.000000
1247The Night Circus0.328467to-read fantasy favorites currently-reading yo...10047.000000
1248Peeps (Peeps, #1)0.328413to-read fantasy favorites currently-reading yo...10034.000000
1249Halt's Peril (Ranger's Apprentice, #9)0.328226to-read fantasy favorites currently-reading yo...10039.000000
1250Revenge of the Witch (The Last Apprentice / Wa...0.328103to-read fantasy favorites currently-reading yo...10038.000000
1251The Mortal Instruments Boxed Set: City of Bone...0.327935to-read fantasy favorites currently-reading yo...10037.000000
1252Shadows in Flight (Ender's Shadow, #5)0.327769to-read fantasy favorites currently-reading yo...10039.000000
1253Born of Night (The League, #1)0.327693to-read fantasy favorites currently-reading fi...10041.000000
1254The False Prince (The Ascendance Trilogy #1)0.327608to-read fantasy favorites currently-reading yo...10038.000000
1255The Titan's Curse (Percy Jackson and the Olymp...0.327530to-read fantasy favorites currently-reading yo...10047.000000
1256Inkspell (Inkworld, #2)0.327253to-read fantasy favorites currently-reading yo...10047.000000
1257Charlie Bone and the Time Twister (The Childre...0.326993to-read fantasy favorites currently-reading yo...10037.000000
1258Franny and Zooey0.326937to-read favorites currently-reading young-adul...10045.000000
1259World War Z: An Oral History of the Zombie War0.326885to-read fantasy favorites young-adult fiction ...10044.000000
1260The Hunger Games (The Hunger Games, #1)0.326872to-read fantasy favorites currently-reading yo...10044.000000
1261The Stand0.326819to-read fantasy favorites currently-reading fi...10054.000000
1262Legion (Legion, #1)0.326769to-read fantasy favorites currently-reading yo...10037.000000
1263The Buried Giant0.326684to-read fantasy favorites currently-reading fi...10040.000000
1264Queen of Shadows (Throne of Glass, #4)0.326388to-read fantasy favorites currently-reading yo...10042.000000
1265Abraham Lincoln: Vampire Hunter0.325902to-read fantasy favorites young-adult fiction ...10042.000000
1266Haunted (The Mediator, #5)0.325798to-read fantasy favorites currently-reading yo...10040.000000
1267Rebecca0.325747to-read favorites currently-reading fiction bo...10048.000000
1268Reunion (The Mediator, #3)0.325711to-read fantasy favorites currently-reading yo...10040.000000
1269Enna Burning (The Books of Bayern, #2)0.325703to-read fantasy favorites currently-reading yo...10043.000000
1270Kill the Dead (Sandman Slim, #2)0.325658to-read fantasy favorites currently-reading fi...10036.000000
1271Fledgling0.325515to-read fantasy favorites currently-reading yo...10038.000000
1272A Connecticut Yankee in King Arthur's Court0.325244to-read fantasy favorites currently-reading yo...10044.000000
1273Stolen (Women of the Otherworld, #2)0.325177to-read fantasy favorites currently-reading yo...10041.000000
1274The Warlock (The Secrets of the Immortal Nicho...0.325158to-read fantasy favorites currently-reading yo...10042.000000
1275The 5th Wave (The 5th Wave, #1)0.325027to-read fantasy favorites currently-reading yo...10047.000000
1276To Your Scattered Bodies Go (Riverworld, #1)0.324387to-read fantasy favorites currently-reading fi...10043.000000
1277Stolen Songbird (The Malediction Trilogy, #1)0.324213to-read fantasy favorites currently-reading yo...10034.000000
1278Red Glove (Curse Workers, #2)0.323928to-read fantasy favorites currently-reading yo...10036.000000
1279The Kiss of Deception (The Remnant Chronicles,...0.323913to-read fantasy favorites currently-reading yo...10041.000000
1280140.323875to-read fantasy favorites currently-reading fi...10038.000000
1281Brave New World Revisited0.323746to-read fantasy favorites currently-reading fi...10044.000000
1282Disney after Dark (Kingdom Keepers, #1)0.323681to-read fantasy favorites currently-reading yo...10041.000000
1283Living Dead in Dallas (Sookie Stackhouse, #2)0.323623to-read fantasy favorites currently-reading yo...10040.000000
1284The Grey King (The Dark Is Rising, #4)0.323536to-read fantasy favorites currently-reading yo...10045.000000
1285I Am Legend0.323422to-read fantasy favorites currently-reading fi...10045.000000
1286Forest Born (The Books of Bayern, #4)0.323209to-read fantasy favorites currently-reading yo...10037.000000
1287Six of Crows (Six of Crows, #1)0.322857to-read fantasy favorites currently-reading yo...10042.000000
1288The Last Olympian (Percy Jackson and the Olymp...0.322805to-read fantasy favorites currently-reading yo...10048.000000
1289The Outlaw Demon Wails (The Hollows, #6)0.322460to-read fantasy favorites currently-reading fi...10037.000000
1290Tithe (Modern Faerie Tales, #1)0.322448to-read fantasy favorites currently-reading yo...10038.000000
1291Honor Among Enemies (Honor Harrington, #6)0.322423to-read fantasy favorites currently-reading fi...10037.000000
1292Ruin and Rising (Shadow and Bone, #3)0.322334to-read fantasy favorites currently-reading yo...10041.000000
1293MaddAddam (MaddAddam, #3)0.322289to-read fantasy favorites currently-reading fi...10039.000000
1294Dauntless (The Lost Fleet, #1)0.322164to-read fantasy favorites currently-reading fi...10038.000000
1295The Angel Experiment (Maximum Ride, #1)0.322089to-read fantasy favorites currently-reading yo...10043.000000
1296Departure0.322041to-read fantasy favorites currently-reading yo...10033.000000
1297The Lord of the Rings: Weapons and Warfare0.322001to-read fantasy favorites currently-reading fi...10033.000000
1298Every Which Way But Dead (The Hollows, #3)0.321963to-read fantasy favorites currently-reading fi...10037.000000
1299King Solomon's Mines (Allan Quatermain, #1)0.321772to-read fantasy favorites currently-reading yo...10044.000000
1300Singularity Sky (Eschaton, #1)0.321736to-read fantasy favorites currently-reading fi...10034.000000
1301The Mime Order (The Bone Season, #2)0.321642to-read fantasy favorites currently-reading yo...10041.000000
1302Boneshaker (The Clockwork Century, #1)0.321457to-read fantasy favorites young-adult fiction ...10038.000000
1303Haunted (Women of the Otherworld, #5)0.321259to-read fantasy favorites currently-reading fi...10034.000000
1304Beacon 23: The Complete Novel (Beacon 23, #1-5)0.321208to-read fantasy favorites currently-reading fi...10036.000000
1305A Tale of Two Cities0.320957to-read favorites currently-reading young-adul...10049.000000
1306A Room with a View0.320577to-read favorites currently-reading fiction bo...10045.000000
1307Around the World in Eighty Days0.320460to-read fantasy favorites currently-reading yo...10048.000000
1308Two Ravens and One Crow (The Iron Druid Chroni...0.320392to-read fantasy favorites currently-reading fi...10035.000000
1309Airman0.320150to-read fantasy favorites currently-reading yo...10042.000000
1310Great Expectations0.320085to-read favorites currently-reading young-adul...10051.000000
1311Time and Again (Time, #1)0.320028to-read fantasy favorites currently-reading fi...10046.000000
1312The Heart Goes Last0.319731fantasy favorites currently-reading fiction bo...10034.000000
1313Divergent Series Complete Box Set (Divergent, ...0.319635to-read fantasy favorites currently-reading yo...10040.000000
1314Rebel Spring (Falling Kingdoms, #2)0.319410to-read fantasy favorites currently-reading yo...10040.000000
1315Soulless (Parasol Protectorate, #1)0.319296to-read fantasy favorites currently-reading yo...10038.000000
1316For a Few Demons More (The Hollows, #5)0.318811to-read fantasy favorites currently-reading fi...10038.000000
1317Johnny Mnemonic0.318698to-read fantasy favorites currently-reading fi...10033.000000
1318Courageous (The Lost Fleet, #3)0.318665to-read fantasy favorites currently-reading fi...10036.000000
1319Moby-Dick or, The Whale0.318515to-read fantasy favorites currently-reading fi...10048.000000
1320The Sea of Monsters (Percy Jackson and the Oly...0.318399to-read fantasy favorites currently-reading yo...10046.000000
1321City of Lost Souls (The Mortal Instruments, #5)0.318041to-read fantasy favorites currently-reading yo...10046.000000
1322Changeless (Parasol Protectorate, #2)0.317989to-read fantasy favorites currently-reading yo...10038.000000
1323The Princess and the Goblin (Princess Irene a...0.317895to-read fantasy favorites currently-reading yo...10042.000000
1324The Lord of the Rings: The Art of The Fellowsh...0.317890to-read fantasy favorites currently-reading fi...10032.000000
1325Lasher (Lives of the Mayfair Witches, #2)0.317829to-read fantasy favorites currently-reading fi...10041.000000
1326Bitten (Women of the Otherworld, #1)0.317485to-read fantasy favorites currently-reading yo...10041.000000
1327A Dirty Job (Grim Reaper, #1)0.317309to-read fantasy favorites currently-reading fi...10044.000000
1328The Clan of the Cave Bear (Earth's Children, #1)0.317290to-read fantasy favorites currently-reading yo...10051.000000
1329The Book of Strange New Things0.316961to-read favorites currently-reading fiction bo...10034.000000
1330The Sweet Far Thing (Gemma Doyle, #3)0.316946to-read fantasy favorites currently-reading yo...10041.000000
1331The Lightning Thief (Percy Jackson and the Oly...0.316785to-read fantasy favorites currently-reading yo...10044.000000
1332Hard Magic (Grimnoir Chronicles, #1)0.316724to-read fantasy favorites currently-reading fi...10032.000000
1333The Ear, the Eye, and the Arm0.316580to-read fantasy favorites currently-reading yo...10033.000000
1334Days of Blood & Starlight (Daughter of Smoke &...0.316291to-read fantasy favorites currently-reading yo...10042.000000
1335Virals (Virals, #1)0.316270to-read fantasy favorites currently-reading yo...10040.000000
1336Beautiful Darkness (Caster Chronicles, #2)0.316239to-read fantasy favorites currently-reading yo...10041.000000
1337David Copperfield0.316091to-read favorites currently-reading young-adul...10050.000000
1338Catch-220.315875to-read favorites currently-reading fiction bo...10049.000000
1339Dragon Slippers (Dragon Slippers, #1)0.315801to-read fantasy favorites currently-reading yo...10035.000000
1340Horns0.315474to-read fantasy favorites currently-reading fi...10043.000000
1341Coyote Blue0.315449to-read fantasy favorites currently-reading fi...10036.000000
1342Incarceron (Incarceron, #1)0.315250to-read fantasy favorites currently-reading yo...10038.000000
1343The Knife of Never Letting Go (Chaos Walking, #1)0.315195to-read fantasy favorites currently-reading yo...10043.000000
1344The Uglies Trilogy (Uglies, #1-3)0.314919to-read fantasy favorites currently-reading yo...10036.000000
1345Attack of the Fiend (The Last Apprentice / War...0.314585to-read fantasy favorites currently-reading yo...10040.000000
1346Ender's Game, Volume 1: Battle School (Ender's...0.314527to-read fantasy favorites currently-reading yo...10037.000000
1347Into the Land of the Unicorns (Unicorn Chronic...0.314422to-read favorites young-adult fiction books-i-...10039.000000
1348Fearless (The Lost Fleet, #2)0.314301to-read fantasy favorites currently-reading fi...10037.000000
1349The Bees0.313941to-read fantasy favorites currently-reading fi...10036.000000
1350Memnoch the Devil (The Vampire Chronicles, #5)0.313902to-read fantasy favorites currently-reading fi...10040.000000
1351To Say Nothing of the Dog (Oxford Time Travel,...0.313875to-read fantasy favorites currently-reading fi...10048.000000
1352Charlie Bone and the Beast (The Children of th...0.313752to-read fantasy favorites currently-reading yo...10038.000000
1353Metro 2033 (METRO, #1)0.313636to-read fantasy favorites currently-reading fi...10046.000000
1354The Stepford Wives0.313563to-read fantasy favorites currently-reading fi...10040.000000
1355Pride and Prejudice and Zombies (Pride and Pre...0.313486to-read fantasy favorites young-adult fiction ...10047.000000
1356The Looking Glass Wars (The Looking Glass Wars...0.313350to-read fantasy favorites currently-reading yo...10044.000000
1357The Heart of Betrayal (The Remnant Chronicles,...0.313230to-read fantasy favorites currently-reading yo...10040.000000
1358Keep the Aspidistra Flying0.313032to-read favorites currently-reading fiction ow...10044.000000
1359Persuasion0.312673to-read favorites currently-reading fiction bo...10052.000000
1360Secondhand Souls (Grim Reaper, #2)0.312438to-read fantasy favorites currently-reading fi...10035.000000
1361The Catcher in the Rye0.312343to-read favorites currently-reading young-adul...10048.000000
1362The Hero and the Crown (Damar, #2)0.312313to-read fantasy favorites currently-reading yo...10046.000000
1363The Godfather0.312121to-read favorites currently-reading fiction bo...10046.000000
1364Coraline0.312035to-read fantasy favorites currently-reading yo...10041.000000
1365Island of the Sequined Love Nun0.311718to-read fantasy favorites currently-reading fi...10039.000000
1366The Young Elites (The Young Elites, #1)0.311424to-read fantasy favorites currently-reading yo...10039.000000
1367Ozma of Oz (Oz, #3)0.311311to-read fantasy favorites young-adult fiction ...10041.000000
1368The Mark of Athena (The Heroes of Olympus, #3)0.311278to-read fantasy favorites currently-reading yo...10045.000000
1369This Savage Song (Monsters of Verity, #1)0.311201to-read fantasy favorites currently-reading yo...10037.000000
1370Magonia (Magonia, #1)0.311083to-read fantasy favorites currently-reading yo...10038.000000
1371A Fistful of Charms (The Hollows, #4)0.311069to-read fantasy favorites currently-reading fi...10036.000000
1372Gathering Darkness (Falling Kingdoms, #3)0.311043to-read fantasy favorites currently-reading yo...10042.000000
1373The Throne of Fire (Kane Chronicles, #2)0.311009to-read fantasy favorites currently-reading yo...10043.000000
1374Of Mice and Men0.310976to-read favorites currently-reading young-adul...10046.000000
1375The Great Gatsby0.310809to-read favorites currently-reading young-adul...10050.000000
1376The Prisoner of Cell 25 (Michael Vey, #1)0.310531to-read fantasy favorites currently-reading yo...10037.000000
1377Rebel Angels (Gemma Doyle, #2)0.310515to-read fantasy favorites currently-reading yo...10042.000000
1378The Postman0.310250to-read fantasy favorites currently-reading fi...10040.000000
13791Q840.310186to-read fantasy favorites currently-reading fi...10044.000000
1380Bluebeard0.310130to-read fantasy favorites currently-reading fi...10046.000000
1381Winter's Tale0.309970to-read fantasy favorites fiction books-i-own ...10041.000000
1382Heart of Darkness0.309918to-read favorites currently-reading fiction bo...10046.000000
1383Burning Chrome (Sprawl, #0)0.309915to-read fantasy favorites currently-reading fi...10039.000000
1384The Twilight Saga (Twilight, #1-4)0.309791to-read fantasy favorites currently-reading yo...10040.000000
1385The Hedge Knight (The Hedge Knight Graphic Nov...0.309717to-read fantasy favorites currently-reading yo...10038.000000
1386Divergent (Divergent, #1)0.309675to-read fantasy favorites currently-reading yo...10045.000000
1387Stories of Your Life and Others0.309389to-read fantasy favorites currently-reading fi...10042.000000
1388House of Leaves0.309378to-read fantasy favorites currently-reading fi...10045.000000
1389Lady Chatterley's Lover0.309319to-read favorites currently-reading fiction bo...10041.000000
1390Taltos (Lives of the Mayfair Witches, #3)0.309292to-read fantasy favorites currently-reading fi...10037.000000
1391Rosemary and Rue (October Daye, #1)0.309099to-read fantasy favorites currently-reading yo...10035.000000
1392The Raven Boys (The Raven Cycle, #1)0.309086to-read fantasy favorites currently-reading yo...10040.000000
1393The Witch's Daughter (The Witch's Daughter, #1)0.309038to-read fantasy favorites currently-reading yo...10036.000000
1394Timeless (Parasol Protectorate, #5)0.308929to-read fantasy favorites currently-reading yo...10039.000000
1395CyberStorm0.308839to-read fantasy favorites currently-reading fi...10033.000000
1396Alice's Adventures in Wonderland0.308671to-read fantasy favorites currently-reading yo...10049.000000
1397Falling Free (Vorkosigan Saga, #4)0.308662to-read fantasy favorites currently-reading fi...10042.000000
1398The Vampire Armand (The Vampire Chronicles, #6)0.308652to-read fantasy favorites currently-reading fi...10038.000000
1399Midnight for Charlie Bone (The Children of the...0.308470to-read fantasy favorites currently-reading yo...10035.000000
1400The Mammoth Hunters (Earth's Children, #3)0.307967to-read fantasy favorites fiction books-i-own ...10044.000000
1401Vanity Fair0.307964to-read favorites currently-reading fiction bo...10043.000000
1402A Living Nightmare (Cirque Du Freak, #1)0.307921to-read fantasy favorites currently-reading yo...10039.000000
1403Messenger (The Giver, #3)0.307856to-read fantasy favorites currently-reading yo...10040.000000
1404Wool (Wool, #1)0.307470to-read fantasy favorites currently-reading yo...10042.000000
1405Welcome to Night Vale0.307287to-read fantasy favorites currently-reading yo...10042.000000
1406The Emerald Atlas (The Books of Beginning, #1)0.307274to-read fantasy favorites currently-reading bo...10035.000000
1407The Girl with All the Gifts0.307265to-read fantasy favorites currently-reading yo...10041.000000
140823120.306963to-read fantasy favorites currently-reading fi...10035.000000
1409Dime Store Magic (Women of the Otherworld, #3)0.306954to-read fantasy favorites currently-reading fi...10037.000000
1410To Kill a Mockingbird0.306861to-read favorites currently-reading young-adul...10050.000000
1411The Tales of Beedle the Bard0.306859to-read fantasy favorites currently-reading yo...10044.000000
1412A Fire Upon the Deep (Zones of Thought, #1)0.306791to-read fantasy favorites currently-reading fi...10042.000000
1413Daemon (Daemon, #1)0.306712to-read fantasy favorites currently-reading fi...10035.000000
1414Relentless (The Lost Fleet, #5)0.306672to-read fantasy favorites currently-reading fi...10033.000000
1415No Humans Involved (Women of the Otherworld, #7)0.306601to-read fantasy favorites currently-reading fi...10036.000000
1416Slade House0.306563to-read fantasy favorites currently-reading fi...10039.000000
1417Written in My Own Heart's Blood (Outlander, #8)0.306434to-read fantasy favorites currently-reading fi...10045.000000
1418Nexus (Nexus, #1)0.306396to-read fantasy favorites currently-reading yo...10036.000000
1419The Atlantis Plague (The Origin Mystery, #2)0.306364to-read fantasy favorites currently-reading fi...10034.000000
1420The Girl of Fire and Thorns (Fire and Thorns, #1)0.306219to-read fantasy favorites currently-reading yo...10035.000000
1421War and Peace0.306098to-read favorites currently-reading fiction bo...10047.000000
1422Dark Matter0.306065to-read fantasy favorites currently-reading fi...10035.000000
1423Fluke: Or, I Know Why the Winged Whale Sings0.305934to-read fantasy favorites currently-reading fi...10038.000000
1424Fear and Loathing in Las Vegas0.305926to-read favorites currently-reading fiction bo...10043.000000
1425Excalibur (The Warlord Chronicles, #3)0.305789to-read fantasy favorites currently-reading fi...10043.000000
1426A Breath of Snow and Ashes (Outlander, #6)0.305779to-read fantasy favorites currently-reading fi...10043.000000
1427You Suck (A Love Story, #2)0.305745to-read fantasy favorites currently-reading yo...10038.000000
1428Empire of Storms (Throne of Glass, #5)0.305734to-read fantasy favorites currently-reading yo...10038.000000
1429The Maze Runner (Maze Runner, #1)0.305712to-read fantasy favorites currently-reading yo...10047.000000
1430Pale Demon (The Hollows, #9)0.305700to-read fantasy favorites currently-reading fi...10036.000000
1431Green Mars (Mars Trilogy, #2)0.305678to-read fantasy favorites currently-reading fi...10046.000000
1432The Inkheart Trilogy: Inkheart, Inkspell, Inkd...0.305590to-read fantasy currently-reading young-adult ...10028.000000
1433Practical Magic0.305396to-read fantasy favorites currently-reading yo...10042.000000
1434Brighton Rock0.305342to-read favorites currently-reading fiction bo...10040.000000
1435This Book Is Full of Spiders: Seriously, Dude,...0.305302to-read fantasy favorites currently-reading fi...10041.000000
1436Dragon Flight (Dragon Slippers, #2)0.305287to-read fantasy favorites currently-reading yo...10038.000000
1437The Abyss0.305231to-read fantasy favorites currently-reading fi...10032.000000
1438The Twelve (The Passage, #2)0.305224to-read fantasy favorites currently-reading fi...10044.000000
1439Club Dead (Sookie Stackhouse, #3)0.305025to-read fantasy favorites currently-reading yo...10040.000000
1440The Sun Also Rises0.305024to-read favorites currently-reading fiction bo...10043.000000
1441In Cold Blood0.304903to-read favorites currently-reading fiction bo...10045.000000
1442Written in Red (The Others, #1)0.304870to-read fantasy favorites currently-reading yo...10036.000000
1443The Atlantis Gene (The Origin Mystery, #1)0.304830to-read fantasy favorites currently-reading yo...10037.000000
1444Tunnels of Blood (Cirque Du Freak, #3)0.304706to-read fantasy favorites currently-reading yo...10042.000000
1445Bloodsucking Fiends (A Love Story, #1)0.304435to-read fantasy favorites currently-reading fi...10034.000000
1446The Good, the Bad, and the Undead (The Hollows...0.304420to-read fantasy favorites currently-reading fi...10035.000000
1447Bone Crossed (Mercy Thompson, #4)0.304286to-read fantasy favorites currently-reading fi...10041.000000
1448Blameless (Parasol Protectorate, #3)0.304220to-read fantasy favorites currently-reading yo...10038.000000
1449Kitty Goes to Washington (Kitty Norville, #2)0.304143to-read fantasy favorites currently-reading fi...10032.000000
1450Ancillary Justice (Imperial Radch #1)0.304128to-read fantasy favorites currently-reading fi...10040.000000
1451The Terminal Man0.304111to-read fantasy favorites currently-reading fi...10035.000000
1452The Candy Shop War (The Candy Shop War, #1)0.303865to-read fantasy favorites currently-reading yo...10037.000000
1453The Lust Lizard of Melancholy Cove (Pine Cove,...0.303800to-read fantasy favorites currently-reading fi...10034.000000
1454Anna Karenina0.303797to-read favorites currently-reading fiction bo...10047.000000
1455Ironside (Modern Faerie Tales, #3)0.303506to-read fantasy favorites currently-reading yo...10035.000000
1456Crash0.303259to-read favorites currently-reading fiction bo...10035.000000
1457The Plains of Passage (Earth's Children, #4)0.303182to-read fantasy favorites currently-reading fi...10048.000000
1458Station Eleven0.303173to-read fantasy favorites currently-reading yo...10038.000000
1459A Kiss of Shadows (Merry Gentry, #1)0.303149to-read fantasy favorites currently-reading fi...10033.000000
1460Vittorio, The Vampire (New Tales of the Vampir...0.303060to-read fantasy favorites currently-reading fi...10037.000000
1461The Year of the Flood (MaddAddam, #2)0.303046to-read fantasy favorites currently-reading fi...10041.000000
1462The Hunchback of Notre-Dame0.302949to-read fantasy favorites currently-reading fi...10046.000000
1463Clockwork Angel (The Infernal Devices, #1)0.302804to-read fantasy favorites currently-reading yo...10047.000000
1464A Quest of Heroes (The Sorcerer's Ring, #1)0.302504to-read fantasy favorites currently-reading yo...10034.000000
1465Cinder (The Lunar Chronicles, #1)0.302479to-read fantasy favorites currently-reading yo...10043.000000
1466The Girl Who Circumnavigated Fairyland in a Sh...0.302458to-read fantasy favorites currently-reading yo...10040.000000
1467Valiant (Modern Faerie Tales #2)0.302417to-read fantasy favorites currently-reading yo...10039.000000
1468Insurgent (Divergent, #2)0.302118to-read fantasy favorites currently-reading yo...10048.000000
1469The Returned0.302063to-read fantasy favorites currently-reading fi...10035.000000
1470Necronomicon: The Best Weird Tales0.302052to-read fantasy favorites currently-reading fi...10042.000000
1471Three Dark Crowns (Three Dark Crowns, #1)0.302011to-read fantasy favorites currently-reading yo...10037.000000
1472Curtsies & Conspiracies (Finishing School, #2)0.301943to-read fantasy favorites currently-reading yo...10033.000000
1473Monsters of Men (Chaos Walking, #3)0.301884to-read fantasy favorites currently-reading yo...10042.000000
1474Hocus Pocus0.301865to-read fantasy favorites currently-reading fi...10049.000000
1475Linger (The Wolves of Mercy Falls, #2)0.301736to-read fantasy favorites currently-reading yo...10036.000000
1476The Kill Order (Maze Runner, #0.5)0.301722to-read fantasy favorites currently-reading yo...10044.000000
1477The Thief of Always0.301567to-read fantasy favorites currently-reading yo...10037.000000
1478Harry Potter Schoolbooks Box Set: Two Classic ...0.301515to-read fantasy favorites currently-reading yo...10036.000000
1479Defy (Defy, #1)0.301465to-read fantasy favorites currently-reading yo...10036.000000
1480The Dream Thieves (The Raven Cycle, #2)0.301450to-read fantasy favorites currently-reading yo...10039.000000
1481The Master and Margarita0.301435to-read fantasy favorites fiction books-i-own ...10045.000000
1482Mitosis (The Reckoners, #1.5)0.301422to-read fantasy favorites currently-reading yo...10035.000000
1483Gone with the Wind0.301335to-read favorites currently-reading fiction bo...10050.000000
1484The Son of Neptune (The Heroes of Olympus, #2)0.301229to-read fantasy favorites currently-reading yo...10044.000000
1485The City of Mirrors (The Passage, #3)0.301079to-read fantasy favorites currently-reading fi...10038.000000
1486All Together Dead (Sookie Stackhouse, #7)0.301006to-read fantasy favorites currently-reading yo...10039.000000
1487Crime and Punishment0.300853to-read favorites currently-reading fiction bo...10045.000000
1488The Akhenaten Adventure (Children of the Lamp,...0.300745to-read fantasy favorites currently-reading yo...10036.000000
1489Iron Kissed (Mercy Thompson, #3)0.300234to-read fantasy favorites currently-reading yo...10041.000000
1490Blood and Chocolate0.300112to-read fantasy favorites currently-reading yo...10038.000000
1491Clockwork Prince (The Infernal Devices, #2)0.300022to-read fantasy favorites currently-reading yo...10046.000000
1492Dreams of Gods & Monsters (Daughter of Smoke &...0.299978to-read fantasy favorites currently-reading yo...10040.000000
1493Dark Force Rising0.299840to-read fantasy favorites currently-reading yo...10050.000000
1494Everything Is Illuminated0.299701to-read favorites currently-reading fiction bo...10044.000000
1495Bloodfever (Fever, #2)0.299503to-read fantasy favorites currently-reading yo...10041.000000
1496Everlost (Skinjacker, #1)0.299476to-read fantasy favorites currently-reading yo...10042.000000
1497The Awakening (Darkest Powers, #2)0.299328to-read fantasy favorites currently-reading yo...10038.000000
1498The Ask and the Answer (Chaos Walking, #2)0.299298to-read fantasy favorites currently-reading yo...10041.000000
1499Harry Potter and the Cursed Child - Parts One ...0.299244to-read fantasy favorites currently-reading yo...10039.000000
1500Mortal Coil (Skulduggery Pleasant, #5)0.299233to-read fantasy favorites currently-reading yo...10043.000000
1501The Scorpio Races0.299206to-read fantasy favorites currently-reading yo...10040.000000
1502Guilty Pleasures (Anita Blake, Vampire Hunter,...0.298897to-read fantasy favorites currently-reading fi...10037.000000
1503The Wonderful Wizard of Oz (Oz, #1)0.298819to-read fantasy favorites currently-reading yo...10044.000000
1504The End of the Affair0.298772to-read favorites currently-reading fiction bo...10042.000000
1505Bite Me (A Love Story, #3)0.298768to-read fantasy favorites currently-reading yo...10035.000000
1506Robopocalypse (Robopocalypse, #1)0.298752to-read fantasy favorites currently-reading yo...10042.000000
1507Vampire Chronicles: Interview with the Vampire...0.298528to-read fantasy favorites currently-reading fi...10036.000000
1508The Vor Game (Vorkosigan Saga, #6)0.298248to-read fantasy favorites currently-reading fi...10041.000000
1509The Mermaid's Sister0.298230to-read fantasy favorites currently-reading yo...10032.000000
1510Allegiant (Divergent, #3)0.298119to-read fantasy favorites currently-reading yo...10044.000000
1511Time's Arrow0.298119to-read fantasy favorites currently-reading fi...10038.000000
1512Uglies (Uglies, #1)0.297703to-read fantasy favorites currently-reading yo...10046.000000
1513The Windup Girl0.297557to-read fantasy favorites currently-reading yo...10040.000000
1514Northanger Abbey0.297315to-read favorites currently-reading fiction bo...10043.000000
1515Halo: The Fall of Reach0.297139to-read fantasy favorites currently-reading yo...10044.000000
1516The Scorch Trials (Maze Runner, #2)0.297134to-read fantasy young-adult fiction books-i-ow...10043.000000
1517Mister B. Gone0.297054to-read fantasy favorites currently-reading yo...10040.000000
1518A Torch Against the Night (An Ember in the Ash...0.296935to-read fantasy favorites currently-reading yo...10038.000000
1519The Metamorphosis, In the Penal Colony, and Ot...0.296931to-read fantasy favorites currently-reading fi...10028.000000
1520Shiver (The Wolves of Mercy Falls, #1)0.296822to-read fantasy favorites currently-reading yo...10039.000000
1521The Shadow Throne (The Ascendance Trilogy, #3)0.296791to-read fantasy favorites currently-reading yo...10035.000000
1522Silver Borne (Mercy Thompson, #5)0.296687to-read fantasy favorites currently-reading fi...10040.000000
1523The Third Policeman0.296666to-read fantasy favorites currently-reading fi...10040.000000
1524On the Road0.296614to-read favorites currently-reading fiction bo...10047.000000
1525Merrick (The Vampire Chronicles #7)0.296463to-read fantasy favorites currently-reading fi...10035.000000
1526The Night Eternal (The Strain Trilogy, #3)0.296170to-read fantasy favorites currently-reading fi...10038.000000
1527Scarlet (The Lunar Chronicles, #2)0.296095to-read fantasy favorites currently-reading yo...10035.000000
1528Tender Is the Night0.295884to-read favorites currently-reading fiction bo...10044.000000
1529The Vampire's Assistant (Cirque Du Freak, #2)0.295858to-read fantasy favorites currently-reading yo...10039.000000
1530Midnight Crossroad (Midnight, Texas, #1)0.295851to-read fantasy favorites currently-reading fi...10033.000000
1531Parable of the Talents (Earthseed, #2)0.295791to-read fantasy favorites currently-reading fi...10038.000000
1532The Serpent's Shadow (Kane Chronicles, #3)0.295599to-read fantasy favorites currently-reading yo...10043.000000
1533Blood Bound (Mercy Thompson, #2)0.295587to-read fantasy favorites currently-reading yo...10040.000000
1534Industrial Magic (Women of the Otherworld, #4)0.295402to-read fantasy favorites currently-reading fi...10035.000000
1535The Beach0.295367to-read fantasy favorites currently-reading fi...10047.000000
1536Dead to the World (Sookie Stackhouse, #4)0.295238to-read fantasy favorites currently-reading yo...10039.000000
1537Plague (Gone, #4)0.295207to-read fantasy favorites currently-reading yo...10039.000000
1538Raven's Gate (The Gatekeepers, #1)0.295116to-read fantasy favorites currently-reading yo...10041.000000
1539The Iron Queen (The Iron Fey, #3)0.294852to-read fantasy favorites currently-reading yo...10040.000000
1540Heartless (Parasol Protectorate, #4)0.294756to-read fantasy favorites currently-reading yo...10038.000000
1541For Whom the Bell Tolls0.294593to-read favorites currently-reading fiction bo...10051.000000
1542Nation0.294516to-read fantasy favorites currently-reading yo...10043.000000
1543Rebel of the Sands (Rebel of the Sands, #1)0.294371to-read fantasy favorites currently-reading yo...10034.000000
1544Orlando0.294122to-read fantasy favorites currently-reading fi...10043.000000
1545The Fountainhead0.294105to-read favorites currently-reading fiction bo...10047.000000
1546Eaters of the Dead0.294081to-read fantasy favorites currently-reading fi...10040.000000
1547Deadline (Newsflesh Trilogy, #2)0.293978to-read fantasy favorites currently-reading yo...10043.000000
1548Through the Looking-Glass, and What Alice Foun...0.293506to-read fantasy favorites currently-reading yo...10035.000000
1549Mirror Dance (Vorkosigan Saga, #8)0.293420to-read fantasy favorites currently-reading fi...10039.000000
1550Robinson Crusoe0.293272to-read fantasy favorites currently-reading yo...10048.000000
1551Beautiful Creatures (Caster Chronicles, #1)0.293031to-read fantasy favorites currently-reading yo...10039.000000
1552The Runaway King (The Ascendance Trilogy, #2)0.292854to-read fantasy favorites currently-reading yo...10036.000000
1553Ethan Frome0.292807to-read favorites currently-reading young-adul...10042.000000
1554A Certain Slant of Light (Light, #1)0.292781to-read fantasy favorites currently-reading yo...10039.000000
1555Little Brother0.292520to-read fantasy favorites currently-reading yo...10036.000000
1556From the Earth to the Moon (Extraordinary Voya...0.292317to-read fantasy favorites currently-reading yo...10036.000000
1557Influx0.291820to-read fantasy favorites currently-reading fi...10034.000000
1558Beautiful Redemption (Caster Chronicles, #4)0.291620to-read fantasy favorites young-adult fiction ...10040.000000
1559Prince Lestat (The Vampire Chronicles, #11)0.291513to-read fantasy favorites currently-reading fi...10038.000000
1560Feed0.291476to-read fantasy favorites currently-reading yo...10035.000000
1561Gnomes0.291457to-read fantasy favorites currently-reading yo...10029.000000
1562Don Quixote0.291356to-read fantasy favorites currently-reading fi...10043.000000
1563Faefever (Fever, #3)0.291074to-read fantasy favorites currently-reading yo...10040.000000
1564The Razor's Edge0.290992to-read favorites currently-reading fiction bo...10040.000000
1565Blood And Gold (The Vampire Chronicles, #8)0.290968to-read fantasy favorites currently-reading fi...10036.000000
1566Hunger (Gone, #2)0.290815to-read fantasy favorites currently-reading yo...10041.000000
1567Angelology (Angelology, #1)0.290696to-read fantasy favorites currently-reading yo...10042.000000
1568The Blood of Olympus (The Heroes of Olympus, #5)0.290597to-read fantasy favorites currently-reading yo...10043.000000
1569The Iron Trial (Magisterium, #1)0.290565to-read fantasy favorites currently-reading yo...10041.000000
1570Pretties (Uglies, #2)0.290553to-read fantasy favorites currently-reading yo...10043.000000
1571Fantastic Beasts and Where to Find Them: The O...0.290480to-read fantasy favorites currently-reading yo...10041.000000
1572Green: The Beginning and the End (The Circle, #0)0.290266to-read fantasy favorites currently-reading yo...10039.000000
1573Ivanhoe0.289986to-read fantasy favorites currently-reading yo...10047.000000
1574Bayou Moon (The Edge, #2)0.289944to-read fantasy favorites currently-reading fi...10034.000000
1575Charlie Bone and the Shadow (The Children of t...0.289888to-read fantasy favorites currently-reading yo...10037.000000
1576North and South0.289876to-read favorites currently-reading fiction bo...10047.000000
1577Grave Mercy (His Fair Assassin, #1)0.289748to-read fantasy favorites currently-reading yo...10038.000000
1578The Collector0.289747to-read favorites currently-reading fiction bo...20023.500000
1579The Collector0.098483to-read favorites currently-reading fiction bo...20023.500000
1580Ex-Heroes (Ex-Heroes, #1)0.289528to-read fantasy favorites currently-reading fi...10037.000000
1581The Unbearable Lightness of Being0.289497to-read favorites currently-reading fiction bo...10043.000000
1582Next0.289450to-read fantasy favorites currently-reading fi...10042.000000
1583These Broken Stars (Starbound, #1)0.289432to-read fantasy favorites currently-reading yo...10038.000000
1584Little Women (Little Women, #1)0.289432to-read favorites currently-reading young-adul...10047.000000
1585Trainspotting0.289403to-read favorites currently-reading fiction bo...10043.000000
1586Narcissus in Chains (Anita Blake, Vampire Hunt...0.289345to-read fantasy favorites currently-reading fi...10034.000000
1587Elsewhere0.289151to-read fantasy favorites currently-reading yo...10040.000000
1588Brilliance (Brilliance Saga, #1)0.289141to-read fantasy favorites currently-reading yo...10037.000000
1589Siddhartha0.289073to-read favorites currently-reading fiction bo...10042.000000
1590The Diviners (The Diviners, #1)0.288665to-read fantasy favorites currently-reading yo...10037.000000
1591Murder of Crows (The Others, #2)0.288592to-read fantasy favorites currently-reading yo...10034.000000
1592Hard-Boiled Wonderland and the End of the World0.288509to-read fantasy favorites currently-reading fi...10045.000000
1593The Gods Themselves0.288494to-read fantasy favorites currently-reading fi...10044.000000
1594The Name of the Rose0.288486to-read fantasy favorites currently-reading fi...10041.000000
1595Shadow Kiss (Vampire Academy, #3)0.288410to-read fantasy favorites currently-reading yo...10045.000000
1596The Wind-Up Bird Chronicle0.288384to-read fantasy favorites currently-reading fi...10049.000000
1597The City & the City0.288098to-read fantasy favorites currently-reading fi...10037.000000
1598The Dark Hills Divide (The Land of Elyon, #1)0.287837to-read fantasy favorites currently-reading yo...10040.000000
1599Ghostwritten0.287832to-read fantasy favorites currently-reading fi...10046.000000
1600The Cider House Rules0.287827to-read favorites currently-reading fiction bo...10041.000000
1601Ringworld (Ringworld, #1)0.287775to-read fantasy favorites currently-reading fi...10041.000000
1602Freedom™ (Daemon, #2)0.287725to-read fantasy favorites currently-reading fi...10033.000000
1603Moon Called (Mercy Thompson, #1)0.287624to-read fantasy favorites currently-reading yo...10042.000000
1604Lord of the Shadows (Cirque Du Freak, #11)0.287570to-read fantasy favorites currently-reading yo...10038.000000
1605Trials of Death (Cirque Du Freak, #5)0.287494to-read fantasy favorites currently-reading yo...10038.000000
1606The Waves0.287411to-read favorites currently-reading fiction bo...10040.000000
1607The Last Question0.287397to-read fantasy favorites currently-reading fi...10034.000000
1608Twilight: The Complete Illustrated Movie Compa...0.287351to-read fantasy favorites currently-reading yo...10033.000000
1609Gathering Blue (The Giver, #2)0.287188to-read fantasy favorites currently-reading yo...10039.000000
1610A Caress of Twilight (Merry Gentry, #2)0.287117to-read fantasy favorites currently-reading fi...10032.000000
1611Extras (Uglies, #4)0.287083to-read fantasy favorites currently-reading yo...10042.000000
1612White Witch, Black Curse (The Hollows, #7)0.287069to-read fantasy favorites currently-reading fi...10034.000000
1613The Raw Shark Texts0.286956to-read fantasy favorites currently-reading fi...10036.000000
1614Untamed (House of Night, #4)0.286949to-read fantasy favorites currently-reading yo...10037.000000
1615Uncle Tom's Cabin0.286778to-read favorites currently-reading young-adul...10041.000000
1616Alas, Babylon0.286755to-read fantasy favorites currently-reading yo...10043.000000
1617Feed (Newsflesh Trilogy, #1)0.286611to-read fantasy favorites currently-reading yo...10043.000000
1618Blue Lily, Lily Blue (The Raven Cycle, #3)0.286481to-read fantasy favorites currently-reading yo...10040.000000
1619The Satanic Verses0.286318to-read fantasy favorites currently-reading fi...10044.000000
1620The House of the Scorpion (Matteo Alacran, #1)0.286116to-read fantasy favorites currently-reading yo...10039.000000
1621The Outsiders0.285975to-read favorites currently-reading young-adul...10044.000000
1622Blue Mars (Mars Trilogy, #3)0.285806to-read fantasy favorites currently-reading fi...10042.000000
1623Island0.285406to-read fantasy favorites currently-reading fi...10041.000000
1624Passenger (Passenger, #1)0.285263to-read fantasy favorites young-adult fiction ...10035.000000
1625The Jungle0.285157to-read favorites currently-reading fiction bo...10037.000000
1626An Ice Cold Grave (Harper Connelly, #3)0.285083to-read fantasy favorites currently-reading yo...10035.000000
1627Battle Royale0.284997to-read fantasy favorites currently-reading yo...10044.000000
1628Nicholas Nickleby0.284538to-read favorites currently-reading fiction bo...10040.000000
1629The Quiet American0.284538to-read favorites currently-reading fiction bo...10038.000000
1630Waterfall (River of Time, #1)0.284505to-read fantasy favorites currently-reading yo...10037.000000
1631Lies (Gone, #3)0.284338to-read fantasy favorites currently-reading yo...10040.000000
1632Allies of the Night (Cirque du Freak, #8)0.284325to-read fantasy favorites currently-reading yo...10038.000000
16331Q84 BOOK 1 (1Q84, #1)0.284288to-read fantasy favorites currently-reading fi...10043.000000
1634Jane Eyre0.284208to-read favorites currently-reading young-adul...10044.000000
1635Faeries0.284206to-read fantasy favorites currently-reading yo...10031.000000
1636Captive Prince (Captive Prince, #1)0.284188to-read fantasy favorites currently-reading yo...10035.000000
1637The Three Musketeers0.284086to-read fantasy favorites currently-reading yo...10048.000000
1638Wicked Lovely (Wicked Lovely, #1)0.284033to-read fantasy favorites currently-reading yo...10033.000000
1639A Modern Witch (A Modern Witch, #1)0.283925to-read fantasy favorites currently-reading yo...10028.000000
1640The Adoration of Jenna Fox (Jenna Fox Chronicl...0.283886to-read fantasy favorites currently-reading yo...10030.000000
1641Ink Exchange (Wicked Lovely, #2)0.283686to-read fantasy favorites currently-reading yo...10037.000000
1642The Red Pyramid (Kane Chronicles, #1)0.283572to-read fantasy favorites currently-reading yo...10045.000000
1643Second Shift: Order (Shift, #2)0.283519to-read fantasy favorites currently-reading fi...10034.000000
1644Blackout (Newsflesh Trilogy, #3)0.283376to-read fantasy favorites currently-reading yo...10041.000000
1645Under the Dome0.283288to-read fantasy currently-reading fiction book...10043.000000
1646Fear (Gone, #5)0.283232to-read fantasy favorites currently-reading yo...10037.000000
1647Kitty and the Silver Bullet (Kitty Norville, #4)0.283030to-read fantasy favorites currently-reading fi...10030.000000
1648Spin (Spin, #1)0.282998to-read fantasy favorites currently-reading fi...10037.000000
1649Son (The Giver, #4)0.282695to-read fantasy favorites currently-reading yo...10038.000000
1650Redshirts0.282565to-read fantasy favorites currently-reading fi...10037.000000
1651Charlie Bone and the Castle of Mirrors (The Ch...0.282557to-read fantasy favorites currently-reading yo...10036.000000
1652Radiant Shadows (Wicked Lovely, #4)0.282478to-read fantasy favorites currently-reading yo...10035.000000
1653The Awakening0.282440to-read favorites currently-reading young-adul...10041.000000
1654Barrayar (Vorkosigan Saga, #7)0.282399to-read fantasy favorites currently-reading fi...10041.000000
1655Einstein's Dreams0.282387to-read fantasy favorites currently-reading fi...10042.000000
1656A Tree Grows in Brooklyn0.282366to-read favorites currently-reading young-adul...10048.000000
1657The Infinite Sea (The 5th Wave, #2)0.282314to-read fantasy favorites currently-reading yo...10042.000000
1658Neil Gaiman's Neverwhere0.282311to-read fantasy favorites currently-reading yo...10040.000000
1659Night Broken (Mercy Thompson, #8)0.282131to-read fantasy favorites currently-reading fi...10035.000000
1660Short Stories from Hogwarts of Heroism, Hardsh...0.282119to-read fantasy favorites currently-reading yo...10026.000000
1661Haroun and the Sea of Stories (Khalifa Brother...0.282002to-read fantasy favorites currently-reading yo...10029.000000
1662Dark Visions (Dark Visions, #1-3)0.281862to-read fantasy favorites currently-reading yo...10042.000000
1663A Tale of Two Cities / Great Expectations0.281690to-read favorites currently-reading young-adul...10044.000000
1664The Death Cure (Maze Runner, #3)0.281544to-read fantasy favorites currently-reading yo...10044.000000
1665Madame Bovary0.281536to-read favorites currently-reading fiction bo...10041.000000
1666A Perfect Blood (The Hollows, #10)0.281533to-read fantasy favorites currently-reading fi...10035.000000
1667A Passage to India0.281446to-read favorites currently-reading fiction bo...10041.000000
1668The Eye of Minds (The Mortality Doctrine, #1)0.281430to-read fantasy favorites currently-reading yo...10041.000000
1669Percy Jackson and the Olympians (Percy Jackson...0.281076to-read fantasy favorites currently-reading yo...10038.000000
1670Les Misérables0.281029to-read favorites currently-reading fiction bo...10051.000000
1671The Rose Society (The Young Elites, #2)0.280980to-read fantasy favorites currently-reading yo...10037.000000
1672The Fire Eternal (The Last Dragon Chronicles, #4)0.280935to-read fantasy favorites currently-reading yo...10033.000000
1673Fragile Eternity (Wicked Lovely, #3)0.280833to-read fantasy favorites currently-reading yo...10035.000000
1674Lady Cottington's Pressed Fairy Book0.280712to-read fantasy favorites currently-reading yo...10033.000000
1675Peter Pan0.280534to-read fantasy favorites currently-reading yo...10050.000000
1676Among Others0.280429to-read fantasy favorites currently-reading yo...10039.000000
1677The House of Hades (The Heroes of Olympus, #4)0.280429to-read fantasy favorites currently-reading yo...10043.000000
1678John Dies at the End (John Dies at the End, #1)0.280242to-read fantasy favorites currently-reading yo...10043.000000
1679The Darkest Minds (The Darkest Minds, #1)0.280111to-read fantasy favorites currently-reading yo...10040.000000
1680Less Than Zero0.280106to-read favorites currently-reading young-adul...10037.000000
1681The Sword of Summer (Magnus Chase and the Gods...0.279878to-read fantasy favorites currently-reading yo...10041.000000
1682Ender in Exile (Ender's Saga, #1.2)0.279794to-read fantasy favorites currently-reading yo...10039.000000
1683Heart of Darkness and The Secret Sharer0.279763to-read favorites currently-reading young-adul...10041.000000
1684The Short Second Life of Bree Tanner: An Eclip...0.279727to-read fantasy favorites currently-reading yo...10041.000000
1685Wired (Wired, #1)0.279700to-read fantasy favorites currently-reading fi...10029.000000
1686Tuck Everlasting0.279688to-read fantasy favorites currently-reading yo...10041.000000
1687The Marvelous Land of Oz (Oz, #2)0.279626to-read fantasy currently-reading young-adult ...10036.000000
1688Mansfield Park0.279418to-read favorites currently-reading fiction bo...10045.000000
1689Halo: Ghosts of Onyx0.279047to-read fantasy favorites currently-reading yo...10037.000000
1690The Age of Miracles0.279002to-read fantasy favorites young-adult fiction ...10034.000000
1691The Graveyard Book0.278984to-read fantasy favorites currently-reading yo...10041.000000
1692The Fire Within (The Last Dragon Chronicles, #1)0.278850to-read fantasy favorites currently-reading yo...10037.000000
1693The Forbidden Game (The Forbidden Game, #1-3)0.278843to-read fantasy favorites currently-reading yo...10042.000000
1694Rose Daughter0.278747to-read fantasy favorites currently-reading yo...10043.000000
1695The Zombie Survival Guide: Complete Protection...0.278726to-read fantasy favorites currently-reading yo...10042.000000
1696All Our Yesterdays0.278720to-read fantasy favorites currently-reading yo...10036.000000
1697Crooked Kingdom (Six of Crows, #2)0.278650to-read fantasy favorites currently-reading yo...10037.000000
1698It0.278521to-read fantasy favorites currently-reading fi...10057.000000
1699The Winner's Curse (The Winner's Trilogy, #1)0.278521to-read fantasy favorites currently-reading yo...10042.000000
1700When She Woke0.278512to-read fantasy favorites currently-reading yo...10035.000000
1701The Wasp Factory0.278421to-read fantasy favorites currently-reading yo...10042.000000
1702The Unwanteds (Unwanteds, #1)0.278363to-read fantasy favorites currently-reading yo...10038.000000
1703The Firebird (Slains, #2)0.278272to-read fantasy favorites currently-reading fi...10036.000000
1704Sookie Stackhouse 7-copy Boxed Set (Sookie Sta...0.278107to-read fantasy favorites currently-reading fi...10028.000000
1705Darkfever (Fever, #1)0.277982to-read fantasy favorites currently-reading yo...10038.000000
1706Halo: First Strike0.277720to-read fantasy favorites currently-reading yo...10039.000000
1707The Iron Daughter0.277313to-read fantasy favorites currently-reading yo...10038.000000
1708My Name Is Memory0.277226to-read fantasy favorites currently-reading yo...10043.000000
1709The Call of Cthulhu0.277119to-read fantasy favorites currently-reading fi...10038.000000
1710Necroscope (Necroscope, #1)0.276946to-read fantasy favorites currently-reading fi...10039.000000
1711Dies the Fire (Emberverse, #1)0.276922to-read fantasy favorites currently-reading fi...10044.000000
1712Life As We Knew It (Last Survivors, #1)0.276834to-read fantasy favorites currently-reading yo...10040.000000
1713Breakfast at Tiffany's0.276821to-read favorites currently-reading fiction bo...10043.000000
1714Walden0.276638to-read favorites currently-reading fiction bo...10041.000000
1715The House of the Spirits0.276538to-read fantasy favorites currently-reading fi...10039.000000
1716Martin Eden0.276362to-read favorites currently-reading books-i-ow...10040.000000
1717Perfume: The Story of a Murderer0.276321to-read fantasy favorites currently-reading fi...10045.000000
1718Dreamfever (Fever, #4)0.276274to-read fantasy favorites currently-reading fi...10038.000000
1719Memoirs of a Geisha0.276260to-read favorites currently-reading fiction bo...10047.000000
1720The Demolished Man0.276113to-read fantasy favorites currently-reading fi...10035.000000
1721Blue is for Nightmares (Blue is for Nightmares...0.276029to-read fantasy favorites currently-reading yo...10035.000000
1722Dead as a Doornail (Sookie Stackhouse, #5)0.275958to-read fantasy favorites currently-reading yo...10036.000000
1723Forever (The Wolves of Mercy Falls, #3)0.275757to-read fantasy favorites currently-reading yo...10043.000000
1724The Twilight Saga Complete Collection (Twilig...0.275675to-read fantasy currently-reading young-adult ...10027.000000
1725Shadowfever (Fever, #5)0.275624to-read fantasy favorites currently-reading yo...10040.000000
1726One Hundred Years of Solitude0.275572to-read favorites currently-reading fiction bo...10042.000000
1727Afterworlds (Afterworlds #1)0.275541to-read fantasy favorites young-adult fiction ...10039.000000
1728Welcome to the Jungle (The Dresden Files, #0.5)0.275149to-read fantasy favorites currently-reading fi...10025.000000
1729Every Day (Every Day, #1)0.275135to-read fantasy favorites currently-reading yo...10042.000000
1730The City of Ember (Book of Ember, #1)0.275132to-read fantasy favorites currently-reading yo...10036.000000
1731The Cement Garden0.274936to-read favorites currently-reading young-adul...10039.000000
1732Blood Meridian, or the Evening Redness in the ...0.274926to-read favorites currently-reading fiction bo...10046.000000
1733If on a Winter's Night a Traveler0.274890to-read fantasy favorites currently-reading bo...10039.000000
1734Ella Enchanted0.274680to-read fantasy favorites currently-reading yo...10042.000000
1735Broken (Women of the Otherworld, #6)0.274607to-read fantasy favorites currently-reading fi...10036.000000
1736Carry On0.274602to-read fantasy favorites currently-reading yo...10039.000000
1737The Twilight Collection (Twilight, #1-3)0.274573to-read fantasy favorites currently-reading yo...10033.000000
1738Midnight Sun (Twilight, #1.5)0.274500to-read fantasy favorites currently-reading yo...10029.000000
1739The Final Warning (Maximum Ride, #4)0.273945to-read fantasy favorites currently-reading yo...10043.000000
1740Dead and Gone (Sookie Stackhouse, #9)0.273908to-read fantasy favorites currently-reading yo...10036.000000
1741Labyrinth (Languedoc, #1)0.273814to-read fantasy favorites currently-reading fi...10040.000000
1742Enemy of God (The Warlord Chronicles, #2)0.273802to-read fantasy favorites currently-reading fi...10043.000000
1743Wake (Wake, #1)0.273737to-read fantasy favorites currently-reading yo...10040.000000
1744Hunting Ground (Alpha & Omega, #2)0.273589to-read fantasy favorites currently-reading fi...10040.000000
1745Lolita0.273475to-read favorites currently-reading fiction bo...10046.000000
1746The World According to Garp0.273446to-read favorites fiction books-i-own owned fa...10042.000000
1747Four: A Divergent Story Collection (Divergent,...0.273371to-read fantasy favorites currently-reading yo...10039.000000
1748Dead Ever After (Sookie Stackhouse, #13)0.273302to-read fantasy favorites currently-reading yo...10034.000000
1749On the Edge (The Edge, #1)0.273294to-read fantasy favorites currently-reading fi...10033.000000
1750Empire of the Sun (Empire of the Sun, #1)0.273274to-read favorites currently-reading young-adul...10040.000000
1751The Scarlet Letter0.273191to-read favorites young-adult books-i-own owne...10037.000000
1752Mistral's Kiss (Merry Gentry, #5)0.273177to-read fantasy favorites currently-reading fi...10030.000000
1753Cannery Row0.273109to-read favorites currently-reading fiction bo...10044.000000
1754City of Bones / City of Ashes / City of Glass ...0.273028to-read fantasy favorites currently-reading yo...10030.000000
1755From Dead to Worse (Sookie Stackhouse, #8)0.272896to-read fantasy favorites currently-reading yo...10037.000000
1756Grave Sight (Harper Connelly, #1)0.272843to-read fantasy favorites currently-reading yo...10036.000000
1757Pines (Wayward Pines, #1)0.272820to-read fantasy favorites currently-reading fi...10035.000000
1758Wicked: The Grimmerie0.272788to-read fantasy favorites currently-reading fi...10033.000000
1759Junky0.272621to-read favorites currently-reading fiction bo...10040.000000
1760Things Not Seen (Things, #1)0.272368to-read fantasy favorites currently-reading yo...10032.000000
1761The Iron King (The Iron Fey, #1)0.272264owned ya series favourites owned-books re-read...10031.000000
1762Z for Zachariah0.272204to-read fantasy favorites currently-reading yo...10037.000000
1763Flatland: A Romance of Many Dimensions0.272031to-read fantasy favorites currently-reading fi...10041.000000
1764More Than This0.271860to-read fantasy favorites currently-reading yo...10038.000000
1765Seduced by Moonlight (Merry Gentry, #3)0.271858to-read fantasy favorites currently-reading fi...10031.000000
1766Tess of the D'Urbervilles0.271740to-read favorites currently-reading fiction bo...10047.000000
1767Geek Love0.271734to-read fantasy favorites currently-reading fi...10046.000000
1768The Awakening / The Struggle (The Vampire Diar...0.271677to-read fantasy favorites currently-reading yo...10035.000000
1769Anthem0.271662to-read fantasy favorites currently-reading yo...10043.000000
1770Demon Thief (The Demonata, #2)0.271634to-read fantasy favorites currently-reading yo...10037.000000
1771Violin0.271600to-read fantasy favorites currently-reading fi...10032.000000
1772Spindle's End0.271525to-read fantasy favorites currently-reading yo...10041.000000
1773The Secret History0.271473to-read favorites currently-reading fiction bo...10046.000000
1774Fair Game (Alpha & Omega, #3)0.271275to-read fantasy favorites currently-reading fi...10036.000000
1775The Coldest Girl in Coldtown0.271252to-read fantasy favorites currently-reading yo...10035.000000
1776Shades of Earth (Across the Universe, #3)0.271231to-read fantasy favorites currently-reading yo...10036.000000
1777The Adventures of Tom Sawyer & Adventures of H...0.271077to-read currently-reading young-adult fiction ...10037.000000
1778The Strange Case of Dr. Jekyll and Mr. Hyde an...0.270832to-read fantasy young-adult sci-fi-fantasy def...10031.000000
1779The Two Princesses of Bamarre0.270761to-read fantasy favorites currently-reading yo...10036.000000
1780NOS4A20.270743to-read fantasy favorites currently-reading fi...10040.000000
1781The Demigod Files (Percy Jackson and the Olymp...0.270627to-read fantasy favorites currently-reading yo...10038.000000
1782The Leftovers0.270536to-read fantasy favorites fiction books-i-own ...10034.000000
1783The Midnight Palace (Niebla, #2)0.270511to-read fantasy favorites currently-reading yo...10038.000000
1784White Noise0.270388to-read favorites currently-reading fiction bo...10040.000000
1785Dark Triumph (His Fair Assassin, #2)0.270215to-read fantasy favorites currently-reading yo...10036.000000
1786A Million Suns (Across the Universe, #2)0.270213to-read fantasy favorites currently-reading yo...10035.000000
1787Galápagos0.270081to-read fantasy favorites currently-reading fi...10039.000000
1788The Ghost Bride0.270077to-read fantasy favorites currently-reading yo...10034.000000
1789Enduring Love0.270059to-read favorites currently-reading fiction bo...10040.000000
1790Howards End0.270023to-read favorites currently-reading fiction bo...10042.000000
1791Ulysses0.269998to-read currently-reading fiction books-i-own ...10040.000000
1792Alienated (Alienated, #1)0.269947to-read fantasy favorites currently-reading yo...10035.000000
1793Cerulean Sins (Anita Blake, Vampire Hunter, #11)0.269925to-read fantasy favorites currently-reading fi...10033.000000
1794Icefire (The Last Dragon Chronicles, #2)0.269924to-read fantasy favorites currently-reading yo...10036.000000
1795Life of Pi0.269815to-read fantasy favorites currently-reading yo...10049.000000
1796Big Fish0.269798to-read fantasy favorites currently-reading yo...10043.000000
1797The Reckoning (Darkest Powers, #3)0.269598to-read fantasy favorites currently-reading yo...10038.000000
1798Kidnapped (David Balfour, #1)0.269590to-read favorites currently-reading young-adul...10045.000000
1799The Field Guide (The Spiderwick Chronicles, #1)0.269515to-read fantasy favorites currently-reading yo...10036.000000
1800Gone (Wake, #3)0.269474to-read fantasy favorites currently-reading yo...10038.000000
1801The Circle0.269265to-read fantasy favorites currently-reading fi...10042.000000
1802Captive Prince: Volume Two (Captive Prince, #2)0.269133to-read fantasy favorites currently-reading yo...10031.000000
1803High Fidelity0.269126to-read favorites currently-reading fiction bo...10042.000000
1804Blood Promise (Vampire Academy, #4)0.268975to-read fantasy favorites currently-reading yo...10045.000000
1805The Best of H.P. Lovecraft: Bloodcurdling Tale...0.268874to-read fantasy favorites currently-reading fi...10038.000000
1806Vampire Mountain (Cirque Du Freak, #4)0.268853to-read fantasy favorites currently-reading yo...10037.000000
1807The Bell Jar0.268706to-read favorites currently-reading fiction bo...10038.000000
1808The Perks of Being a Wallflower0.268676to-read favorites currently-reading young-adul...10046.000000
1809Caraval0.268652to-read fantasy favorites currently-reading yo...10037.000000
1810Doomsday Book (Oxford Time Travel, #1)0.268460to-read fantasy favorites currently-reading fi...10042.000000
1811Magic and Other Misdemeanors (The Sisters Grim...0.268441to-read fantasy favorites currently-reading yo...10036.000000
1812The Seeing Stone (The Spiderwick Chronicles, #2)0.268131to-read fantasy favorites currently-reading yo...10037.000000
1813In Watermelon Sugar0.268114to-read fantasy favorites currently-reading fi...10035.000000
1814White Teeth0.268106to-read favorites currently-reading fiction bo...10043.000000
1815Max (Maximum Ride, #5)0.268100to-read fantasy favorites currently-reading yo...10041.000000
1816This World We Live In (Last Survivors, #3)0.268001to-read fantasy favorites currently-reading yo...10035.000000
1817Our Mutual Friend0.267964to-read favorites currently-reading fiction bo...10034.000000
1818The Strain (The Strain Trilogy, #1)0.267872to-read fantasy favorites currently-reading fi...10032.000000
1819Talon (Talon, #1)0.267826to-read fantasy favorites currently-reading yo...10037.000000
1820The Call of Cthulhu and Other Weird Stories0.267645to-read fantasy favorites currently-reading bo...10028.000000
1821A Lick of Frost (Merry Gentry, #6)0.267633to-read fantasy favorites currently-reading fi...10031.000000
1822Wondrous Strange (Wondrous Strange, #1)0.267489to-read fantasy favorites currently-reading yo...10031.000000
1823The Fall (The Strain Trilogy, #2)0.267482to-read fantasy favorites fiction books-i-own ...10038.000000
1824The Rose Garden0.267171to-read fantasy favorites currently-reading fi...10035.000000
1825A Deepness in the Sky (Zones of Thought, #2)0.267113to-read fantasy favorites currently-reading fi...10043.000000
1826The Gift (Witch & Wizard, #2)0.267091to-read fantasy favorites currently-reading yo...10037.000000
1827A Ring of Endless Light (Austin Family, #4)0.267086to-read fantasy favorites currently-reading yo...10035.000000
1828The Fireman0.267077to-read fantasy favorites currently-reading fi...10038.000000
1829The Grapes of Wrath0.267025to-read favorites currently-reading young-adul...10043.000000
1830The Road0.266785to-read fantasy favorites currently-reading fi...10046.000000
1831A New Hope (Star Wars: Novelizations #4)0.266783to-read fantasy favorites currently-reading yo...10043.000000
1832Till We Have Faces0.266731to-read fantasy favorites young-adult fiction ...10042.000000
1833The Phantom Tollbooth0.266695to-read fantasy favorites currently-reading yo...10040.000000
1834Tropic of Capricorn0.266529to-read favorites currently-reading fiction bo...10040.000000
1835Last Sacrifice (Vampire Academy, #6)0.266343to-read fantasy favorites currently-reading yo...10045.000000
1836Hunters of the Dusk (Cirque Du Freak, #7)0.266333to-read fantasy favorites currently-reading yo...10038.000000
1837The Force Awakens (Star Wars)0.266242to-read fantasy favorites young-adult fiction ...10042.000000
1838Big Sur0.266131to-read favorites currently-reading fiction bo...10041.000000
1839Princess Academy (Princess Academy, #1)0.266063to-read fantasy favorites currently-reading yo...10039.000000
1840Atlas Shrugged0.265971to-read fantasy favorites currently-reading fi...10045.000000
1841The French Lieutenant's Woman0.265779to-read favorites currently-reading fiction bo...10041.000000
1842The Fifth Dominion (Imajica Part #1/2)0.265602to-read fantasy currently-reading fiction book...10018.000000
1843The Hunger Pains: A Parody0.265585to-read fantasy favorites currently-reading yo...10036.000000
1844The Last of the Mohicans (The Leatherstocking ...0.265550to-read favorites currently-reading young-adul...10046.000000
1845Betrayed (House of Night, #2)0.265534to-read fantasy favorites currently-reading yo...10039.000000
1846Wildwood Dancing (Wildwood, #1)0.265505to-read fantasy favorites currently-reading yo...10038.000000
1847The Historian0.265485to-read fantasy favorites currently-reading fi...10040.000000
1848The Return of the Native0.265405to-read favorites currently-reading fiction bo...10039.000000
1849Variant (Variant, #1)0.265341to-read fantasy favorites currently-reading yo...10032.000000
1850Cress (The Lunar Chronicles, #3)0.265336to-read fantasy favorites currently-reading yo...10039.000000
1851The Metamorphosis0.265316to-read fantasy favorites currently-reading fi...10042.000000
1852The Good Soldier0.265300to-read favorites currently-reading fiction bo...10037.000000
1853Lament: The Faerie Queen's Deception (Books of...0.265270to-read fantasy favorites currently-reading yo...10032.000000
1854The Last Policeman (The Last Policeman, #1)0.265261to-read fantasy favorites currently-reading fi...10032.000000
1855To the Lighthouse0.265222to-read favorites currently-reading fiction bo...10046.000000
1856The Problem Child (The Sisters Grimm, #3)0.265161to-read fantasy favorites currently-reading yo...10035.000000
1857Garden Spells (Waverley Family, #1)0.265042to-read fantasy favorites currently-reading yo...10041.000000
1858Far from the Madding Crowd0.264972to-read favorites currently-reading fiction bo...10042.000000
1859Infinite Jest0.264962to-read favorites currently-reading fiction bo...10042.000000
1860Confessions of an Ugly Stepsister0.264927to-read fantasy favorites currently-reading yo...10045.000000
1861All Quiet on the Western Front0.264915to-read favorites currently-reading young-adul...10044.000000
1862Martin Chuzzlewit0.264864to-read favorites currently-reading fiction bo...10041.000000
1863Vision in Silver (The Others, #3)0.264856to-read fantasy favorites currently-reading yo...10034.000000
1864Mariana0.264782to-read fantasy favorites currently-reading fi...10034.000000
1865Frostbite (Vampire Academy, #2)0.264656to-read fantasy favorites currently-reading yo...10045.000000
1866Lost Souls0.264553to-read fantasy favorites currently-reading yo...10037.000000
1867The Killing Dance (Anita Blake, Vampire Hunter...0.264506to-read fantasy favorites currently-reading fi...10034.000000
1868Shirley0.264458to-read favorites currently-reading fiction bo...10038.000000
1869Saturday0.264375to-read favorites currently-reading fiction bo...10038.000000
1870The Da Vinci Code (Robert Langdon, #2)0.264272to-read fantasy favorites currently-reading fi...10048.000000
1871Magic Bleeds (Kate Daniels, #4)0.264218to-read fantasy favorites currently-reading fi...10037.000000
1872Circus of the Damned (Anita Blake, Vampire Hun...0.264214to-read fantasy favorites currently-reading fi...10033.000000
1873Across the Universe (Across the Universe, #1)0.264085to-read fantasy favorites currently-reading yo...10036.000000
1874A Thousand Pieces of You (Firebird, #1)0.264051to-read favorites currently-reading young-adul...10040.000000
1875The Complete Tales and Poems0.264021to-read fantasy favorites currently-reading fi...10039.000000
1876Once Upon a Crime (The Sisters Grimm, #4)0.263975to-read fantasy favorites currently-reading yo...10036.000000
1877Swann's Way (In Search of Lost Time, #1)0.263961to-read favorites fiction books-i-own series f...10041.000000
1878Personal Demon (Women of the Otherworld, #8)0.263949to-read fantasy favorites currently-reading fi...10033.000000
1879Warm Bodies (Warm Bodies, #1)0.263726to-read favorites fiction books-i-own owned ya...10032.000000
1880Evermore (The Immortals, #1)0.263670to-read fantasy favorites currently-reading yo...10037.000000
1881Villette0.263564to-read favorites currently-reading fiction bo...10041.000000
1882The Adventures of Huckleberry Finn0.263562to-read favorites currently-reading young-adul...10043.000000
1883Witch & Wizard (Witch & Wizard, #1)0.263507to-read fantasy favorites currently-reading yo...10036.000000
1884The Adventures of Sherlock Holmes0.263475to-read favorites currently-reading young-adul...10045.000000
1885The Portrait of a Lady0.263428to-read favorites fiction books-i-own owned fa...10041.000000
1886Naked Lunch0.263239to-read fantasy favorites currently-reading fi...10036.000000
1887Candide0.263161to-read fantasy favorites currently-reading fi...10038.000000
1888The Ironwood Tree (The Spiderwick Chronicles, #4)0.263152to-read fantasy favorites currently-reading yo...10036.000000
1889Wolf Brother (Chronicles of Ancient Darkness, #1)0.263135to-read fantasy favorites currently-reading yo...10035.000000
1890The Strange and Beautiful Sorrows of Ava Lavender0.263101to-read fantasy favorites currently-reading yo...10036.000000
1891Dodger0.263053to-read fantasy favorites young-adult fiction ...10037.000000
1892Obsidian Butterfly (Anita Blake, Vampire Hunte...0.263026to-read fantasy favorites currently-reading fi...10035.000000
1893Earth Abides0.263010to-read fantasy favorites currently-reading fi...10042.000000
1894Sometimes a Great Notion0.262874to-read favorites currently-reading fiction bo...10037.000000
1895The Thief Lord0.262813to-read fantasy favorites currently-reading yo...10034.000000
1896Rant0.262586to-read fantasy favorites currently-reading fi...10043.000000
1897The Iron Knight (The Iron Fey, #4)0.262421to-read fantasy favorites currently-reading yo...10040.000000
1898Beauty: A Retelling of the Story of Beauty and...0.262341to-read fantasy favorites currently-reading yo...10046.000000
1899Kitty and the Midnight Hour (Kitty Norville #1)0.262049to-read fantasy favorites currently-reading fi...10033.000000
1900Moll Flanders0.261995to-read favorites currently-reading fiction bo...10040.000000
1901Chosen (House of Night, #3)0.261887to-read fantasy favorites currently-reading yo...10038.000000
1902The Last Town (Wayward Pines, #3)0.261872to-read fantasy favorites currently-reading fi...10033.000000
1903Percy Jackson & the Olympians: The Ultimate G...0.261848to-read fantasy favorites currently-reading yo...10032.000000
1904The Rainbow0.261810to-read favorites currently-reading fiction bo...10039.000000
1905The Shadow of the Wind (The Cemetery of Forgot...0.261698to-read fantasy favorites currently-reading fi...10048.000000
1906The History of Tom Jones, a Foundling0.261659to-read favorites currently-reading fiction bo...10040.000000
1907Meg (MEG, #1)0.261570to-read fantasy favorites currently-reading fi...10033.000000
1908Insatiable (Insatiable, #1)0.261449to-read fantasy favorites currently-reading yo...10035.000000
1909Hard Times0.261385to-read favorites currently-reading fiction bo...10041.000000
1910Invisible Cities0.261376to-read fantasy favorites currently-reading fi...10038.000000
1911To Have and Have Not0.261276to-read favorites currently-reading fiction bo...10037.000000
1912Fang (Maximum Ride, #6)0.261266to-read fantasy favorites currently-reading yo...10040.000000
1913River Marked (Mercy Thompson, #6)0.261242to-read fantasy favorites currently-reading fi...10036.000000
1914Cry Wolf (Alpha & Omega, #1)0.261153to-read fantasy favorites currently-reading fi...10039.000000
1915The Little Prince0.261068to-read fantasy favorites currently-reading yo...10047.000000
1916Marked in Flesh (The Others, #4)0.260930to-read fantasy favorites currently-reading yo...10032.000000
1917Carrie0.260881to-read fantasy favorites currently-reading yo...10047.000000
1918The Stupidest Angel: A Heartwarming Tale of Ch...0.260873to-read fantasy favorites currently-reading fi...10034.000000
1919Zone One0.260852to-read fantasy favorites currently-reading fi...10033.000000
1920Proper Gauge (Wool, #2)0.260775to-read fantasy favorites currently-reading yo...10034.000000
1921Griffin and Sabine (Griffin & Sabine #1)0.260762to-read fantasy favorites currently-reading yo...10037.000000
1922Magic Rises (Kate Daniels, #6)0.260687to-read fantasy favorites currently-reading fi...10035.000000
1923Gemina (The Illuminae Files, #2)0.260653to-read fantasy favorites currently-reading yo...10034.000000
1924The Castle0.260644to-read fantasy favorites fiction owned favour...10039.000000
1925The Curious Case of Benjamin Button0.260446to-read fantasy favorites fiction books-i-own ...10037.000000
1926Fade (Wake, #2)0.260405to-read fantasy favorites currently-reading yo...10038.000000
1927The Scarlet Pimpernel0.260120to-read favorites currently-reading young-adul...10049.000000
1928The People of Sparks (Book of Ember, #2)0.260066to-read fantasy favorites currently-reading yo...10036.000000
1929The Hammer of Thor (Magnus Chase and the Gods ...0.260001to-read fantasy favorites currently-reading yo...10037.000000
1930The Awakening and Selected Stories0.259492to-read favorites currently-reading fiction bo...10042.000000
1931The Shelters of Stone (Earth's Children, #5)0.259410to-read fantasy favorites currently-reading fi...10043.000000
1932Dream Dark (Caster Chronicles, #2.5)0.259332to-read fantasy favorites currently-reading yo...10032.000000
1933Tiger's Quest (The Tiger Saga, #2)0.259098to-read fantasy favorites currently-reading yo...10042.000000
1934Way Station0.259009to-read fantasy favorites currently-reading fi...10039.000000
1935Wake (Watersong #1)0.258977to-read fantasy favorites currently-reading yo...10036.000000
19362BR02B0.258968to-read fantasy favorites currently-reading fi...10032.000000
1937Star Wars - Episode I: The Phantom Menace0.258862to-read fantasy favorites currently-reading yo...10046.000000
1938Abandon (Abandon, #1)0.258861to-read fantasy favorites currently-reading yo...10034.000000
1939The Tenant of Wildfell Hall0.258700to-read favorites fiction books-i-own owned fa...10040.000000
1940Women in Love (Brangwen Family, #2)0.258684to-read favorites currently-reading fiction bo...10039.000000
1941Unwind (Unwind, #1)0.258576to-read fantasy favorites currently-reading yo...10039.000000
1942The Crow Road0.258510to-read favorites currently-reading fiction bo...10037.000000
1943The Initiation / The Captive Part I (The Secre...0.258444to-read fantasy favorites currently-reading yo...10039.000000
1944Steppenwolf0.258339to-read fantasy favorites currently-reading fi...10042.000000
1945Etiquette & Espionage (Finishing School, #1)0.258336to-read fantasy favorites currently-reading yo...10033.000000
1946Fatherland0.258312to-read fantasy favorites currently-reading fi...10040.000000
1947The Glass Bead Game0.258234to-read fantasy favorites currently-reading fi...10044.000000
1948Mr. Penumbra's 24-Hour Bookstore (Mr. Penumbra...0.258198to-read fantasy favorites currently-reading yo...10043.000000
1949Burnt Offerings (Anita Blake, Vampire Hunter, #7)0.258120to-read fantasy favorites currently-reading fi...10032.000000
1950Swallowing Darkness (Merry Gentry, #7)0.258034to-read fantasy favorites currently-reading fi...10031.000000
1951Mother Night0.257782to-read fantasy favorites currently-reading fi...10044.000000
1952Clean Sweep (Innkeeper Chronicles, #1)0.257734to-read fantasy favorites currently-reading yo...10034.000000
1953On Love0.257729to-read favorites currently-reading fiction bo...10037.000000
1954The Rose & the Dagger (The Wrath & the Dawn, #2)0.257724to-read fantasy favorites currently-reading yo...10033.000000
1955American Psycho0.257647to-read favorites currently-reading fiction bo...10046.000000
1956The Plot Against America0.257646to-read fantasy favorites currently-reading fi...10035.000000
1957A Leaf on the Wind of All Hallows (Outlander, ...0.257634to-read fantasy favorites currently-reading fi...10030.000000
1958Sherlock Holmes: The Complete Novels and Stori...0.257471to-read favorites currently-reading fiction bo...10046.000000
1959Crescendo (Hush, Hush, #2)0.257378to-read fantasy favorites currently-reading yo...10041.000000
1960Killers of the Dawn (Cirque Du Freak, #9)0.257341to-read fantasy favorites currently-reading yo...10037.000000
1961Alice's Adventures in Wonderland & Other Stories0.257265to-read fantasy favorites currently-reading yo...10043.000000
1962Unspoken (The Lynburn Legacy, #1)0.257256to-read fantasy favorites currently-reading yo...10032.000000
1963Micah (Anita Blake, Vampire Hunter, #13)0.257081to-read fantasy favorites currently-reading fi...10032.000000
1964Night World, No. 1 (Night World, #1-3)0.256962to-read fantasy favorites currently-reading yo...10040.000000
1965Jitterbug Perfume0.256958to-read fantasy favorites currently-reading fi...10040.000000
19661Q84 BOOK 3 (1Q84, #3)0.256908to-read fantasy favorites currently-reading fi...10039.000000
1967Spirit Bound (Vampire Academy, #5)0.256904to-read fantasy favorites currently-reading yo...10044.000000
1968Affliction (Anita Blake, Vampire Hunter #22)0.256764to-read fantasy favorites currently-reading fi...10031.000000
1969The Ground Beneath Her Feet0.256750to-read fantasy favorites currently-reading fi...10036.000000
1970Piano/Vocal/Guitar Sheet Music: The Chronicles...0.256743to-read fantasy favorites currently-reading yo...10020.000000
1971Dead in the Family (Sookie Stackhouse, #10)0.256646to-read fantasy favorites currently-reading yo...10035.000000
1972Written on the Body0.256604to-read favorites currently-reading fiction bo...10039.000000
1973Claimed By Shadow (Cassandra Palmer, #2)0.256506to-read fantasy favorites currently-reading yo...10037.000000
1974Burmese Days0.256493to-read favorites currently-reading fiction bo...10039.000000
1975The Passion0.256281to-read fantasy favorites currently-reading fi...10037.000000
1976World Without End (The Kingsbridge Series, #2)0.256271to-read fantasy favorites currently-reading fi...10047.000000
1977The Hidden Oracle (The Trials of Apollo, #1)0.256267to-read fantasy favorites currently-reading yo...10038.000000
1978Double Identity0.256249to-read fantasy favorites currently-reading yo...10036.000000
1979Wayward (Wayward Pines, #2)0.256068to-read fantasy favorites currently-reading fi...10033.000000
1980Hamlet0.256058to-read fantasy favorites currently-reading fi...10042.000000
1981Magic Bites (Kate Daniels, #1)0.256038to-read fantasy favorites currently-reading yo...10036.000000
1982The Vampire Prince (Cirque Du Freak, #6)0.256008to-read fantasy favorites currently-reading yo...10038.000000
1983The Mayor of Casterbridge0.255967to-read favorites currently-reading fiction bo...10041.000000
1984Bloody Bones (Anita Blake, Vampire Hunter #5)0.255960to-read fantasy favorites currently-reading fi...10032.000000
1985The 100 (The 100, #1)0.255820to-read fantasy favorites currently-reading yo...10040.000000
1986The Hunger Games: Official Illustrated Movie C...0.255817to-read fantasy favorites currently-reading yo...10036.000000
1987The Complete Works of H.P. Lovecraft0.255665to-read fantasy favorites currently-reading fi...10034.000000
1988Frost Burned (Mercy Thompson, #7)0.255577to-read fantasy favorites currently-reading fi...10035.000000
1989Beloved0.255577to-read fantasy favorites currently-reading fi...10040.000000
1990The Namesake0.255487to-read favorites currently-reading fiction bo...10035.000000
1991Shōgun (Asian Saga, #1)0.255466to-read fantasy favorites currently-reading fi...10051.000000
1992Treasure Island0.255310to-read fantasy favorites currently-reading yo...10042.000000
1993The Painted Veil0.255193to-read favorites currently-reading fiction bo...10044.000000
1994Kafka on the Shore0.255190to-read fantasy favorites currently-reading fi...10045.000000
1995Magic Strikes (Kate Daniels, #3)0.255152to-read fantasy favorites currently-reading fi...10037.000000
1996This Present Darkness (Darkness, #1)0.254993to-read fantasy favorites currently-reading fi...10044.000000
1997The Power and the Glory0.254986to-read favorites currently-reading fiction bo...10035.000000
1998Grimm's Fairy Tales0.254942to-read fantasy favorites currently-reading yo...10042.000000
1999Tunnels (Tunnels, #1)0.254863to-read fantasy favorites currently-reading yo...10038.000000
2000The Winner's Crime (The Winner's Trilogy, #2)0.254850to-read fantasy favorites currently-reading yo...10039.000000
2001The Screaming Staircase (Lockwood & Co., #1)0.254844to-read fantasy favorites currently-reading yo...10031.000000
2002Visions of Heat (Psy-Changeling #2)0.254730to-read fantasy favorites currently-reading fi...10035.000000
2003Hourglass (Hourglass, #1)0.254725to-read fantasy favorites currently-reading yo...10027.000000
2004The Kite Runner0.254655to-read favorites currently-reading young-adul...10047.000000
2005Poison Princess (The Arcana Chronicles, #1)0.254654to-read fantasy favorites currently-reading yo...10040.000000
2006Momo0.254621to-read fantasy favorites currently-reading yo...10043.000000
2007The Call of the Wild0.254548to-read fantasy favorites currently-reading yo...10043.000000
2008The Robber Bride0.254425to-read fantasy favorites currently-reading fi...10045.000000
2009Dead Reckoning (Sookie Stackhouse, #11)0.254303to-read fantasy favorites currently-reading fi...10033.000000
2010How Green Was My Valley0.254271to-read favorites currently-reading young-adul...10044.000000
2011Silas Marner0.254131to-read favorites currently-reading fiction bo...10042.000000
2012The Death of Ivan Ilych0.254063to-read favorites fiction books-i-own owned fa...10038.000000
2013Into the Still Blue (Under the Never Sky, #3)0.254031to-read fantasy favorites currently-reading yo...10037.000000
2014Mercy Blade (Jane Yellowrock, #3)0.253949to-read fantasy favorites currently-reading fi...10033.000000
2015The Valley of Horses (Earth's Children, #2)0.253885to-read fantasy favorites currently-reading yo...10047.000000
2016Wings (Wings, #1)0.253840to-read fantasy favorites currently-reading yo...10035.000000
2017The Divine Comedy0.253726to-read fantasy favorites currently-reading fi...10039.000000
2018Iced (Fever, #6)0.253720to-read fantasy favorites currently-reading yo...10038.000000
2019The Terror0.253581to-read fantasy favorites currently-reading fi...10040.000000
2020The Arabian Nights0.253574to-read fantasy favorites currently-reading yo...10041.000000
2021Skellig (Skellig, #1)0.253569to-read fantasy favorites currently-reading yo...10035.000000
2022Bloodlines (Bloodlines, #1)0.253538to-read fantasy favorites currently-reading yo...10043.000000
2023The Elite (The Selection, #2)0.253411to-read fantasy favorites currently-reading yo...10042.000000
2024Opal (Lux, #3)0.253355to-read fantasy favorites currently-reading yo...10038.000000
2025The Magical Worlds of Harry Potter: A Treasury...0.253326to-read fantasy favorites currently-reading yo...10035.000000
2026Fool0.253225to-read fantasy favorites currently-reading fi...10040.000000
2027Onyx (Lux, #2)0.253180to-read fantasy favorites currently-reading yo...10038.000000
2028Grave Secret (Harper Connelly, #4)0.253054to-read fantasy favorites currently-reading yo...10034.000000
2029Succubus Shadows (Georgina Kincaid, #5)0.252987to-read fantasy favorites currently-reading yo...10037.000000
2030Odd Thomas (Odd Thomas, #1)0.252840to-read fantasy favorites currently-reading fi...10042.000000
2031Le Morte d'Arthur: King Arthur and the Legends...0.252695to-read fantasy favorites currently-reading fi...10039.000000
2032Dead Heat (Alpha & Omega #4)0.252643to-read fantasy favorites currently-reading fi...10029.000000
2033Right Ho, Jeeves (Jeeves, #6)0.252567to-read favorites currently-reading fiction bo...10044.000000
2034number9dream0.252540to-read fantasy favorites currently-reading fi...10039.000000
2035Fire Touched (Mercy Thompson, #9)0.252481to-read fantasy favorites currently-reading fi...10031.000000
2036The Jewel (The Lone City, #1)0.252441to-read fantasy favorites currently-reading yo...10038.000000
2037The Alchemist0.252352to-read fantasy favorites currently-reading yo...10048.000000
2038Graduation Day (The Testing, #3)0.252324to-read fantasy favorites currently-reading yo...10035.000000
2039The Last Command0.252309to-read fantasy favorites currently-reading yo...10045.000000
2040Peter and the Shadow Thieves (Peter and the St...0.252285to-read fantasy favorites currently-reading yo...10038.000000
2041Gravity's Rainbow0.252279to-read fantasy favorites currently-reading fi...10038.000000
2042The Twilight Saga: The Official Illustrated Gu...0.252197to-read fantasy favorites currently-reading yo...10035.000000
2043Thirst No. 3: The Eternal Dawn (Thirst, #3)0.252098to-read fantasy favorites currently-reading yo...10038.000000
2044Speaker for the Dead (Ender's Saga, #2)0.251893to-read fantasy favorites currently-reading yo...10043.000000
2045Hush, Hush (Hush, Hush, #1)0.251854to-read fantasy favorites currently-reading yo...10042.000000
2046Witches of East End (The Beauchamp Family, #1)0.251809to-read fantasy favorites currently-reading yo...10037.000000
2047Beowulf0.251784to-read fantasy favorites currently-reading fi...10040.000000
2048Storm Born (Dark Swan #1)0.251746to-read fantasy favorites currently-reading yo...10034.000000
2049Marked (House of Night, #1)0.251741to-read fantasy favorites currently-reading yo...10038.000000
2050Avalon High0.251709to-read fantasy favorites currently-reading yo...10035.000000
2051Middlemarch0.251444to-read favorites currently-reading fiction bo...10045.000000
2052The Dead and the Gone (Last Survivors, #2)0.251364to-read fantasy favorites currently-reading yo...10035.000000
2053The Feast of All Saints0.251099to-read fantasy favorites currently-reading fi...10036.000000
2054Nevermore (Maximum Ride, #8)0.251089to-read fantasy favorites currently-reading yo...10039.000000
2055A Prayer for Owen Meany0.251075to-read favorites currently-reading fiction bo...10045.000000
2056The Assassin and the Desert (Throne of Glass, ...0.250980to-read fantasy favorites currently-reading yo...10031.000000
2057A Portrait of the Artist as a Young Man0.250911to-read favorites currently-reading fiction bo...10042.000000
2058The Comfort of Strangers0.250876to-read favorites currently-reading fiction bo...10035.000000
2059A Christmas Carol and Other Christmas Writings0.250802to-read fantasy favorites currently-reading fi...10042.000000
2060The Wrath of Mulgarath (The Spiderwick Chronic...0.250772to-read fantasy favorites currently-reading yo...10035.000000
2061The Woodlanders0.250675to-read favorites currently-reading fiction bo...10036.000000
2062Thirst No. 1: The Last Vampire, Black Blood, a...0.250577to-read fantasy favorites currently-reading yo...10037.000000
2063Captain Blood0.250575to-read fantasy favorites currently-reading yo...10044.000000
2064The Bonfire of the Vanities0.250505to-read favorites currently-reading fiction bo...10040.000000
2065Innocence0.250495to-read fantasy favorites currently-reading fi...10038.000000
2066Dust & Decay (Rot & Ruin, #2)0.250491to-read fantasy favorites currently-reading yo...10039.000000
2067The Pillars of the Earth (The Kingsbridge Seri...0.250278to-read fantasy favorites currently-reading fi...10048.000000
2068Bleak House0.250247to-read favorites currently-reading fiction bo...10042.000000
2069Magic Burns (Kate Daniels, #2)0.250156to-read fantasy favorites currently-reading fi...10036.000000
2070The Serpent of Venice (The Fool, #2)0.250153to-read fantasy favorites currently-reading fi...10039.000000
2071The Golden Lily (Bloodlines, #2)0.250139to-read fantasy favorites currently-reading yo...10038.000000
2072Rabbit Redux (Rabbit Angstrom #2)0.249804to-read favorites currently-reading fiction bo...10033.000000
2073The Dog Stars0.249677to-read fantasy favorites currently-reading fi...10039.000000
2074Rosemary's Baby0.249578to-read fantasy favorites currently-reading fi...10041.000000
2075Cat's Eye0.249459to-read fantasy favorites currently-reading fi...10042.000000
2076Obsidian (Lux, #1)0.249365to-read fantasy favorites currently-reading yo...10037.000000
2077Fairest (The Lunar Chronicles, #3.5)0.249165to-read fantasy favorites currently-reading yo...10036.000000
2078Silence (Hush, Hush, #3)0.249029to-read fantasy favorites currently-reading yo...10039.000000
2079The Magus0.248999to-read fantasy favorites currently-reading fi...10044.000000
2080Burned (Fever, #7)0.248842to-read fantasy favorites currently-reading fi...10033.000000
2081Burned (House of Night, #7)0.248828to-read fantasy favorites currently-reading yo...10037.000000
2082The Staff of Serapis (Percy Jackson & Kane Chr...0.248706to-read fantasy favorites currently-reading yo...10030.000000
2083Darkest Powers Trilogy (Darkest Powers, #1-3)0.248593to-read fantasy favorites young-adult fiction ...10034.000000
2084Fallen (Fallen, #1)0.248528to-read fantasy favorites currently-reading yo...10040.000000
2085Gone (Gone, #1)0.248455to-read fantasy favorites currently-reading yo...10041.000000
2086Jude the Obscure0.248400to-read favorites currently-reading fiction bo...10044.000000
2087A Farewell to Arms0.248311to-read favorites currently-reading fiction bo...10044.000000
2088Macbeth0.248219to-read fantasy favorites currently-reading yo...10040.000000
2089The Laughing Corpse (Anita Blake, Vampire Hunt...0.248057to-read fantasy favorites currently-reading fi...10032.000000
2090A Court of Wings and Ruin (A Court of Thorns a...0.247933to-read fantasy favorites currently-reading yo...10036.000000
2091On Beauty0.247836to-read favorites currently-reading fiction bo...10041.000000
2092Halo: The Flood0.247776to-read fantasy favorites currently-reading yo...10037.000000
2093Succubus Dreams (Georgina Kincaid, #3)0.247699to-read fantasy favorites currently-reading yo...10036.000000
2094Fire Star (The Last Dragon Chronicles, #3)0.247672to-read fantasy favorites currently-reading yo...10036.000000
2095On the Beach0.247588to-read fantasy favorites currently-reading fi...10045.000000
2096The Name of the Star (Shades of London, #1)0.247587to-read fantasy favorites currently-reading yo...10031.000000
2097Odd and the Frost Giants0.247576to-read fantasy favorites currently-reading yo...10032.000000
2098Infinity (Chronicles of Nick, #1)0.247574to-read fantasy favorites currently-reading yo...10039.000000
2099The Hound of the Baskervilles0.247567to-read favorites currently-reading fiction bo...10044.000000
2100Lord Jim0.247517to-read favorites currently-reading fiction bo...10042.000000
2101Winter's Passage (Iron Fey, #1.5)0.247455to-read fantasy favorites currently-reading yo...10028.000000
2102I Capture the Castle0.247404to-read favorites currently-reading young-adul...10047.000000
2103The Goose Girl (The Books of Bayern, #1)0.247165to-read fantasy favorites currently-reading yo...10038.000000
2104The Madman’s Daughter (The Madman’s Daught...0.247084to-read fantasy favorites currently-reading yo...10032.000000
2105Queen Song (Red Queen, #0.1)0.246883to-read fantasy favorites currently-reading yo...10029.000000
2106Rainbows End0.246824to-read fantasy favorites currently-reading fi...10033.000000
2107Succubus Blues (Georgina Kincaid, #1)0.246810to-read fantasy favorites currently-reading yo...10036.000000
2108The Crying of Lot 490.246809to-read favorites currently-reading fiction bo...10040.000000
2109The Siren0.246793to-read fantasy favorites currently-reading yo...10032.000000
2110Things Fall Apart (The African Trilogy, #1)0.246696to-read favorites currently-reading young-adul...10040.000000
2111The Raven King (The Raven Cycle, #4)0.246685to-read fantasy favorites currently-reading yo...10034.000000
2112Thirst No. 2: Phantom, Evil Thirst, and Creatu...0.246617to-read fantasy favorites currently-reading yo...10041.000000
2113Burn for Me (Hidden Legacy, #1)0.246583to-read fantasy favorites currently-reading fi...10034.000000
2114A Separate Peace0.246571to-read favorites young-adult fiction books-i-...10037.000000
2115Regeneration (Regeneration, #1)0.246333to-read favorites currently-reading fiction bo...10036.000000
2116Home (Gilead, #2)0.246305to-read favorites currently-reading fiction bo...10039.000000
2117The Capture (Guardians of Ga'Hoole, #1)0.246256to-read fantasy favorites currently-reading yo...10034.000000
2118Blue Moon (Anita Blake, Vampire Hunter, #8)0.246156to-read fantasy favorites currently-reading fi...10031.000000
2119The Dangerous Days of Daniel X (Daniel X, #1)0.246130to-read fantasy favorites currently-reading yo...10037.000000
2120The Lottery0.246011to-read fantasy favorites currently-reading yo...10037.000000
2121Half Magic (Tales of Magic, #1)0.245992to-read fantasy favorites currently-reading yo...10032.000000
2122Lost Stars (Star Wars: Journey to the Force Aw...0.245972to-read fantasy favorites currently-reading yo...10040.000000
2123The Assassin and the Pirate Lord (Throne of Gl...0.245907to-read fantasy favorites currently-reading yo...10033.000000
2124The House of Mirth0.245898to-read favorites currently-reading fiction bo...10042.000000
2125Deadlocked (Sookie Stackhouse, #12)0.245898to-read fantasy favorites currently-reading fi...10032.000000
2126The Lost Hero (The Heroes of Olympus, #1)0.245800to-read fantasy favorites currently-reading yo...10042.000000
2127Ship Breaker (Ship Breaker, #1)0.245789to-read fantasy favorites currently-reading yo...10033.000000
2128Veronika Decides to Die0.245742to-read favorites currently-reading young-adul...10041.000000
2129The Enemy (The Enemy, #1)0.245667to-read fantasy favorites currently-reading yo...10039.000000
2130Strange Candy (Anita Blake, Vampire Hunter #0.5)0.245640to-read fantasy favorites currently-reading fi...10030.000000
2131Prodigy (Legend, #2)0.245561to-read fantasy favorites currently-reading yo...10046.000000
2132The Rats (Rats, #1)0.245541to-read fantasy favorites currently-reading fi...10039.000000
2133Spells (Wings, #2)0.245441to-read fantasy favorites currently-reading yo...10035.000000
2134King's Cage (Red Queen, #3)0.245322to-read fantasy favorites currently-reading yo...10040.000000
2135Blindness0.245320to-read fantasy favorites currently-reading fi...10044.000000
2136Shatter Me (Shatter Me, #1)0.245308to-read fantasy favorites currently-reading yo...10043.000000
2137Agnes Grey0.245253to-read favorites currently-reading fiction bo...10037.000000
2138Tom's Midnight Garden0.245181to-read fantasy favorites currently-reading yo...10037.000000
2139Starters (Starters, #1)0.244999to-read fantasy favorites currently-reading yo...10036.000000
2140The Last Star (The 5th Wave, #3)0.244932to-read fantasy favorites currently-reading yo...10037.000000
2141The Pilgrim's Progress0.244932to-read fantasy favorites currently-reading yo...10044.000000
2142The Book Thief0.244714to-read fantasy favorites currently-reading yo...10050.000000
2143The Raven and other poems0.244689to-read fantasy favorites currently-reading yo...10035.000000
2144Magic Shifts (Kate Daniels, #8)0.244669to-read fantasy favorites currently-reading fi...10031.000000
2145The Monk0.244656to-read fantasy favorites currently-reading fi...10038.000000
2146Matched (Matched, #1)0.244620to-read fantasy favorites currently-reading yo...10039.000000
2147Her Fearful Symmetry0.244600to-read fantasy favorites currently-reading fi...10036.000000
2148Tempted (House of Night, #6)0.244480to-read fantasy favorites currently-reading yo...10035.000000
2149The Everafter War (The Sisters Grimm, #7)0.244290to-read fantasy favorites currently-reading yo...10035.000000
2150Welcome to the Monkey House0.244248to-read fantasy favorites currently-reading fi...10046.000000
2151The Einstein Prophecy0.244212to-read fantasy favorites currently-reading fi...10034.000000
2152Shadows (Lux, #0.5)0.243945to-read fantasy favorites currently-reading yo...10033.000000
2153Hunted (House of Night, #5)0.243921to-read fantasy favorites currently-reading yo...10037.000000
2154The Turn of the Screw0.243887to-read fantasy favorites currently-reading fi...10039.000000
2155Angel (Maximum Ride, #7)0.243838to-read fantasy favorites currently-reading yo...10039.000000
2156A Stroke of Midnight (Merry Gentry, #4)0.243795to-read fantasy favorites currently-reading fi...10030.000000
2157The One (The Selection, #3)0.243778to-read fantasy favorites currently-reading yo...10039.000000
2158Wildwood (Wildwood Chronicles, #1)0.243762to-read fantasy favorites currently-reading yo...10038.000000
2159Rabbit, Run (Rabbit Angstrom #1)0.243704to-read favorites currently-reading fiction bo...10041.000000
2160Finale (Hush, Hush, #4)0.243662to-read fantasy favorites currently-reading yo...10042.000000
2161The Complete Sherlock Holmes0.243570to-read favorites currently-reading fiction bo...10052.000000
2162Gunmetal Magic (Kate Daniels, #5.5)0.243200to-read fantasy favorites currently-reading fi...10032.000000
2163Masquerade (Blue Bloods, #2)0.243052to-read fantasy favorites currently-reading yo...10035.000000
2164The Book of Laughter and Forgetting0.242947to-read favorites currently-reading fiction bo...10034.000000
2165The Indigo Spell (Bloodlines, #3)0.242769to-read fantasy favorites currently-reading yo...10039.000000
2166Inferno (The Divine Comedy #1)0.242754to-read fantasy favorites currently-reading fi...10040.000000
2167A Wild Sheep Chase (The Rat, #3)0.242753to-read fantasy currently-reading fiction book...10038.000000
2168Darkest Mercy (Wicked Lovely, #5)0.242748to-read fantasy favorites currently-reading yo...10032.000000
2169Demons0.242674to-read favorites currently-reading fiction bo...10032.000000
2170Caressed by Ice (Psy-Changeling #3)0.242672to-read fantasy favorites currently-reading fi...10035.000000
2171A Touch of Dead (Sookie Stackhouse, #4.1, #4.3...0.242633to-read fantasy favorites currently-reading yo...10030.000000
2172Sexing the Cherry0.242600to-read fantasy favorites currently-reading fi...10033.000000
2173The Canterbury Tales0.242568to-read fantasy favorites currently-reading fa...10032.000000
2174V.0.242540to-read favorites currently-reading fiction bo...10033.000000
2175Of Human Bondage0.242536to-read favorites currently-reading fiction bo...10043.000000
2176Percy Jackson and the Sword of Hades (Percy Ja...0.242413to-read fantasy favorites currently-reading yo...10028.000000
2177The Sound and the Fury0.242366to-read favorites fiction books-i-own favourit...10038.000000
2178The Awakening (The Vampire Diaries, #1)0.242110to-read fantasy favorites currently-reading yo...10038.000000
2179Glimmerglass (Faeriewalker, #1)0.242108to-read fantasy favorites currently-reading yo...10031.000000
2180The House of the Seven Gables0.241981to-read fantasy favorites currently-reading fi...10038.000000
2181Foucault's Pendulum0.241957to-read fantasy favorites currently-reading fi...10039.000000
2182Sons of Destiny (Cirque Du Freak, #12)0.241801to-read fantasy favorites currently-reading yo...10036.000000
2183Mirror Mirror0.241753to-read fantasy favorites currently-reading yo...10042.000000
2184Peter and the Starcatchers (Peter and the Star...0.241721to-read fantasy favorites currently-reading yo...10039.000000
2185The Complete Grimm's Fairy Tales0.241712to-read fantasy favorites currently-reading yo...10044.000000
2186The Divergent Series 2-Book Collection (Diverg...0.241584to-read fantasy favorites currently-reading yo...10027.000000
2187Shadows over Innsmouth0.241506to-read fantasy favorites currently-reading fi...10021.000000
2188Casino Royale (James Bond, #1)0.241488to-read favorites currently-reading fiction bo...10044.000000
2189Blue Bloods (Blue Bloods, #1)0.241315to-read fantasy favorites currently-reading yo...10036.000000
2190Requiem for a Dream0.241203to-read favorites currently-reading fiction bo...10032.000000
2191Hit List (Anita Blake, Vampire Hunter #20)0.241155to-read fantasy favorites currently-reading fi...10031.000000
2192Divine Misdemeanors (Merry Gentry, #8)0.241111to-read fantasy favorites currently-reading fi...10028.000000
2193The Forsyte Saga (The Forsyte Chronicles, #1-3)0.241062to-read favorites currently-reading fiction bo...10042.000000
2194The Art of Fielding0.241004to-read favorites currently-reading young-adul...10037.000000
2195Among the Impostors (Shadow Children, #2)0.240927to-read fantasy favorites currently-reading yo...10031.000000
2196The Blind Owl0.240558to-read fantasy favorites currently-reading fi...10026.000000
2197The Eight (The Eight #1)0.240544to-read fantasy favorites currently-reading fi...10044.000000
2198Lord of Misrule (The Morganville Vampires, #5)0.240440to-read fantasy favorites currently-reading yo...10039.000000
2199The Archived (The Archived, #1)0.240352to-read fantasy favorites currently-reading yo...10023.000000
2200Pnin0.240311to-read favorites currently-reading fiction bo...10036.000000
2201The Buddha of Suburbia0.240138to-read favorites currently-reading young-adul...10032.000000
2202Left Behind (Left Behind, #1)0.240069to-read fantasy favorites currently-reading yo...10043.000000
2203A Christmas Carol, The Chimes and The Cricket ...0.239988to-read fantasy favorites currently-reading yo...10036.000000
2204Five Children and It (Five Children, #1)0.239985to-read fantasy favorites currently-reading yo...10043.000000
2205The Fiery Heart (Bloodlines, #4)0.239826to-read fantasy favorites currently-reading yo...10039.000000
2206Palace of Stone (Princess Academy, #2)0.239801to-read fantasy favorites currently-reading yo...10033.000000
2207Love in the Time of Cholera0.239758to-read fantasy favorites currently-reading fi...10041.000000
2208Heart of Darkness and Selected Short Fiction0.239680to-read fantasy favorites currently-reading fi...10038.000000
2209Labyrinths: Selected Stories and Other Writings0.239562to-read fantasy favorites currently-reading fi...10036.000000
2210Lightning0.239513to-read fantasy favorites currently-reading fi...10043.000000
2211Grave Surprise (Harper Connelly, #2)0.239421to-read fantasy favorites currently-reading yo...10033.000000
2212Five Weeks in a Balloon (Extraordinary Voyages...0.239389to-read fantasy favorites currently-reading yo...10037.000000
2213A Confederacy of Dunces0.239120to-read favorites currently-reading fiction bo...10044.000000
2214Sputnik Sweetheart0.239116to-read fantasy favorites currently-reading fi...10034.000000
2215The Girl Who Was on Fire: Your Favorite Author...0.238941to-read fantasy favorites currently-reading yo...10034.000000
2216Light (Gone, #6)0.238905to-read fantasy favorites currently-reading yo...10035.000000
2217Doctor Zhivago0.238829to-read favorites currently-reading fiction bo...10043.000000
2218The Lake of Souls (Cirque Du Freak, #10)0.238742to-read fantasy favorites currently-reading yo...10039.000000
2219The Fury / Dark Reunion (The Vampire Diaries, ...0.238664to-read fantasy favorites currently-reading yo...10034.000000
2220The Lunatic Cafe (Anita Blake, Vampire Hunter #4)0.238662to-read fantasy favorites currently-reading fi...10030.000000
2221Found (The Missing, #1)0.238642to-read fantasy favorites currently-reading yo...10030.000000
2222Incubus Dreams (Anita Blake, Vampire Hunter, #12)0.238605to-read fantasy favorites currently-reading fi...10030.000000
2223A Room of One's Own0.238563to-read favorites currently-reading fiction bo...10039.000000
2224The Castle in the Attic (The Castle in the Att...0.238552to-read fantasy favorites currently-reading yo...10033.000000
2225Embrace the Night (Cassandra Palmer, #3)0.238547to-read fantasy favorites currently-reading fi...10031.000000
2226Let the Right One In0.238535to-read fantasy favorites currently-reading yo...10038.000000
2227Daniel Deronda0.238528to-read favorites currently-reading fiction bo...10036.000000
2228Flowers in the Attic (Dollanganger, #1)0.238481to-read fantasy favorites currently-reading yo...10047.000000
2229Amerika0.238476to-read favorites currently-reading fiction bo...10037.000000
2230Half Bad (The Half Bad Trilogy, #1)0.238461to-read fantasy favorites currently-reading yo...10038.000000
2231Cranford0.238243to-read favorites currently-reading fiction bo...10039.000000
2232The Struggle (The Vampire Diaries, #2)0.238151to-read fantasy favorites currently-reading yo...10039.000000
2233Danse Macabre (Anita Blake, Vampire Hunter, #14)0.238111to-read fantasy favorites currently-reading fi...10029.000000
2234Small Island0.238017to-read favorites currently-reading fiction bo...10032.000000
2235Lucky Jim0.237990to-read favorites currently-reading fiction bo...10036.000000
2236Jailbird0.237790to-read favorites currently-reading fiction bo...10039.000000
2237Feast of Fools (The Morganville Vampires, #4)0.237778to-read fantasy favorites currently-reading yo...10039.000000
2238The Time Keeper0.237688to-read fantasy favorites currently-reading yo...10044.000000
2239Between the Lines (Between the Lines, #1)0.237530to-read fantasy favorites currently-reading yo...20021.500000
2240Between the Lines (Between the Lines, #1)0.114999to-read favorites currently-reading young-adul...20021.500000
2241Out of Africa0.237516to-read favorites currently-reading fiction bo...10034.000000
2242East0.237505to-read fantasy favorites currently-reading yo...10037.000000
2243Middlesex0.237477to-read favorites currently-reading fiction bo...10040.000000
2244Flirt (Anita Blake, Vampire Hunter #18)0.237312to-read fantasy favorites currently-reading fi...10029.000000
2245Romeo and Juliet0.236875to-read favorites young-adult fiction books-i-...10038.000000
2246Sons and Lovers0.236766to-read favorites currently-reading fiction bo...10037.000000
2247The Transfer (Divergent, #0.1)0.236749to-read fantasy favorites currently-reading yo...10033.000000
2248The Wolf Gift (The Wolf Gift Chronicles, #1)0.236507to-read fantasy favorites currently-reading fi...10035.000000
2249Ben-Hur: A Tale of the Christ0.236427to-read favorites currently-reading fiction bo...10038.000000
2250The Curious Incident of the Dog in the Night-Time0.236416to-read favorites currently-reading young-adul...10031.000000
2251Winter (The Lunar Chronicles, #4)0.236384to-read fantasy favorites currently-reading yo...10037.000000
2252Fifth Business0.236279to-read fantasy favorites currently-reading fi...10038.000000
2253Legend (Legend, #1)0.236200to-read fantasy favorites currently-reading yo...10039.000000
2254A Court of Thorns and Roses (A Court of Thorns...0.236096to-read fantasy favorites currently-reading yo...10040.000000
2255Sacré Bleu: A Comedy d'Art0.236010to-read fantasy favorites currently-reading fi...10037.000000
2256Jinx0.235995to-read fantasy favorites currently-reading yo...10036.000000
2257Underworld0.235821to-read favorites currently-reading fiction bo...10040.000000
2258Into the Wild (Warriors, #1)0.235756to-read fantasy favorites currently-reading yo...10038.000000
2259Vampire Academy (Vampire Academy, #1)0.235736to-read sci-fi-fantasy audiobook favorite-book...10021.000000
2260Carry on, Jeeves (Jeeves, #3)0.235678to-read favorites currently-reading fiction bo...10042.000000
2261The Forest of Hands and Teeth (The Forest of H...0.235658to-read fantasy favorites currently-reading yo...10035.000000
2262King Arthur and His Knights: Selected Tales0.235609to-read fantasy favorites currently-reading yo...10029.000000
2263UnDivided (Unwind, #4)0.235511to-read fantasy favorites currently-reading yo...10040.000000
2264The Pit and the Pendulum0.235505to-read fantasy favorites currently-reading yo...10033.000000
2265The Castle of Otranto0.235397to-read fantasy favorites currently-reading fi...10036.000000
2266Timbuktu0.235384to-read favorites fiction books-i-own owned fa...10036.000000
2267Origin (Lux, #4)0.235313to-read fantasy favorites currently-reading yo...10037.000000
2268Oranges Are Not the Only Fruit0.235297to-read favorites currently-reading young-adul...10034.000000
2269The Calling (Endgame, #1)0.235276to-read fantasy favorites currently-reading yo...10040.000000
2270Clockwork Princess (The Infernal Devices, #3)0.235083to-read fantasy favorites currently-reading yo...10042.000000
2271Hogwarts: An Incomplete and Unreliable Guide (...0.235075to-read fantasy favorites currently-reading yo...10028.000000
2272The Plague0.235001to-read favorites currently-reading fiction bo...10038.000000
2273The Reader0.234999to-read favorites currently-reading fiction bo...10042.000000
2274The Mill on the Floss0.234984to-read favorites currently-reading fiction bo...10038.000000
2275A Court of Mist and Fury (A Court of Thorns an...0.234948to-read fantasy favorites currently-reading fi...10034.000000
2276The Selection (The Selection, #1)0.234832to-read fantasy favorites currently-reading yo...10042.000000
2277The Moonstone0.234814to-read favorites currently-reading fiction bo...10040.000000
2278A Home at the End of the World0.234763to-read favorites currently-reading young-adul...10034.000000
22791Q84 BOOK 2 (1Q84, #2)0.234757to-read fantasy favorites currently-reading fi...10038.000000
2280Molly Moon's Incredible Book of Hypnotism (Mol...0.234577to-read fantasy favorites currently-reading yo...10038.000000
2281Sophie's Choice0.234550to-read favorites currently-reading fiction bo...10041.000000
2282A Shadow of Light (A Shade of Vampire, #4)0.234444to-read fantasy favorites currently-reading yo...10030.000000
2283Piercing the Darkness (Darkness, #2)0.234369to-read fantasy favorites currently-reading fi...10041.000000
2284Shadows of the Empire (Star Wars)0.234349to-read fantasy favorites currently-reading fi...10041.000000
2285Defiance (Defiance #1)0.234341to-read fantasy favorites currently-reading yo...10034.000000
2286The Last Girl (The Dominion Trilogy, #1)0.234339to-read fantasy favorites currently-reading yo...10031.000000
2287Succubus on Top (Georgina Kincaid, #2)0.234258to-read fantasy favorites currently-reading yo...10035.000000
2288Fear of Flying0.234003to-read favorites currently-reading fiction bo...10037.000000
2289Look Homeward, Angel0.233765to-read favorites currently-reading young-adul...10034.000000
2290James Potter and the Hall of Elders' Crossing ...0.233744to-read fantasy favorites currently-reading yo...10028.000000
2291Opposition (Lux, #5)0.233696to-read fantasy favorites currently-reading yo...10030.000000
2292Short Stories from Hogwarts of Power, Politics...0.233683to-read fantasy favorites currently-reading yo...10027.000000
2293Grave Witch (Alex Craft, #1)0.233535to-read fantasy favorites currently-reading fi...10031.000000
2294Fairy Tales from the Brothers Grimm: A New Eng...0.233512to-read fantasy favorites currently-reading yo...10028.000000
2295The 39 Steps (Richard Hannay, #1)0.233419to-read favorites currently-reading fiction bo...10040.000000
2296East of Eden0.233381to-read favorites currently-reading fiction bo...10048.000000
2297The Darkest Part of the Forest0.233379to-read books-i-own owned adventure sci-fi-fan...10025.000000
2298All the Pretty Horses (The Border Trilogy, #1)0.233332to-read favorites currently-reading fiction bo...10036.000000
2299The Complete Stories and Poems0.233189to-read fantasy favorites currently-reading yo...20021.500000
2300The Complete Stories and Poems0.180867to-read fantasy favorites currently-reading yo...20021.500000
2301Pure (Pure, #1)0.233151to-read fantasy favorites young-adult fiction ...10030.000000
2302The Giver (The Giver, #1)0.233123to-read fantasy favorites currently-reading yo...10020.000000
2303Magic Slays (Kate Daniels, #5)0.233081to-read fantasy favorites currently-reading fi...10035.000000
2304Tennis Shoes Among the Nephites (Tennis Shoes,...0.233060to-read fantasy favorites currently-reading yo...10034.000000
2305The Wrath and the Dawn (The Wrath and the Dawn...0.233052to-read fantasy favorites currently-reading yo...10038.000000
2306The Secret Agent0.233014to-read favorites currently-reading fiction bo...10038.000000
2307The Summoning (Darkest Powers, #1)0.233000to-read favorites currently-reading young-adul...10036.000000
2308Ignite Me (Shatter Me, #3)0.232997to-read fantasy favorites currently-reading yo...10041.000000
2309Shakespeare's Sonnets0.232957to-read favorites currently-reading fiction bo...10038.000000
2310A Modest Proposal and Other Satirical Works0.232929to-read favorites currently-reading fiction bo...10029.000000
2311Brideshead Revisited: The Sacred and Profane M...0.232907to-read favorites currently-reading fiction bo...10043.000000
2312A Modest Proposal0.232863to-read favorites fiction books-i-own owned fa...10030.000000
2313Slave to Sensation (Psy-Changeling #1)0.232839to-read fantasy favorites currently-reading fi...10035.000000
2314Illusions (Wings, #3)0.232806to-read fantasy favorites currently-reading yo...10033.000000
2315One Day0.232743to-read favorites currently-reading young-adul...10047.000000
2316The Devil and Miss Prym (On the Seventh Day, #3)0.232736to-read fantasy favorites currently-reading bo...10036.000000
2317Fight Club0.232733to-read fantasy favorites currently-reading fi...10048.000000
2318Mary Barton0.232606to-read favorites currently-reading fiction bo...10036.000000
2319Curse the Dawn (Cassandra Palmer, #4)0.232586to-read fantasy favorites currently-reading yo...10037.000000
2320The End of Mr. Y0.232526to-read fantasy favorites currently-reading fi...10031.000000
2321The Prophet of Yonwood (Book of Ember, #3)0.232509to-read fantasy favorites currently-reading yo...10034.000000
2322The Book of Illusions0.232363to-read favorites currently-reading fiction bo...10030.000000
2323Adam Bede0.232342to-read favorites currently-reading fiction bo...10037.000000
23241Q84 #1-2 (1Q84, #1-2)0.232312to-read fantasy favorites currently-reading fi...10037.000000
2325Good Faeries/Bad Faeries0.232281to-read fantasy favorites currently-reading yo...10025.000000
2326The Murder of Roger Ackroyd (Hercule Poirot, #4)0.232266to-read favorites currently-reading fiction bo...10042.000000
2327The Raven0.232172to-read fantasy favorites currently-reading fi...10037.000000
2328The Girl Who Chased the Moon0.232097to-read fantasy favorites currently-reading yo...10036.000000
2329Three Men in a Boat (Three Men, #1)0.232064to-read favorites currently-reading fiction bo...10044.000000
2330The School for Good and Evil (The School for G...0.232002to-read fantasy favorites currently-reading yo...10039.000000
2331Cry, the Beloved Country0.231938to-read favorites currently-reading young-adul...10040.000000
2332The Fallen and Leviathan (The Fallen, #1-2)0.231835to-read fantasy favorites currently-reading yo...10036.000000
2333The Mortal Instruments (The Mortal Instruments...0.231788to-read fantasy favorites currently-reading yo...10028.000000
2334Anne Rice's The Vampire Lestat: A Graphic Novel0.231739to-read fantasy favorites currently-reading fi...10029.000000
2335Raise High the Roof Beam, Carpenters & Seymour...0.231738to-read favorites currently-reading young-adul...10042.000000
2336Contest0.231613to-read fantasy favorites currently-reading fi...10039.000000
2337The Thirteenth Tale0.231520to-read fantasy favorites currently-reading yo...10044.000000
2338My Sister's Keeper0.231502to-read favorites currently-reading young-adul...10041.000000
2339Midnight Alley (The Morganville Vampires, #3)0.231427to-read fantasy favorites currently-reading yo...10040.000000
2340Little Dorrit0.231411to-read favorites currently-reading fiction bo...10041.000000
2341The Brothers Karamazov0.231299to-read favorites currently-reading fiction bo...10040.000000
2342The Diamond of Darkhold (Book of Ember, #4)0.231239to-read fantasy favorites currently-reading yo...10031.000000
2343The Calling (Darkness Rising, #2)0.231212to-read fantasy favorites currently-reading yo...10033.000000
2344Defiance (Significance, #3)0.231155to-read fantasy favorites currently-reading yo...10029.000000
2345The Moon and Sixpence0.231090to-read favorites currently-reading fiction bo...10042.000000
2346The Beautiful and Damned0.231008to-read favorites currently-reading fiction bo...10046.000000
2347The Monsters of Templeton0.230811to-read fantasy favorites currently-reading fi...10035.000000
2348The Fall of the House of Usher0.230789to-read fantasy favorites currently-reading fi...10030.000000
2349Happily Ever After (The Selection, #0.4, 0.5, ...0.230723to-read fantasy favorites currently-reading yo...10040.000000
2350Wide Sargasso Sea0.230705to-read favorites currently-reading fiction bo...10035.000000
2351Pastoralia0.230576to-read fantasy favorites currently-reading fi...10031.000000
2352Running Out of Time0.230336to-read fantasy favorites currently-reading yo...10028.000000
2353Tiger's Voyage (The Tiger Saga, #3)0.230256to-read fantasy favorites currently-reading yo...10039.000000
2354Zoo0.230187to-read fantasy favorites currently-reading fi...10040.000000
2355The Prisoner of Zenda0.230151to-read fantasy favorites currently-reading yo...10042.000000
2356The Red Tent0.230125to-read fantasy favorites currently-reading fi...10033.000000
2357Moon Palace0.230104to-read currently-reading fiction owned favour...10033.000000
2358The Girl in the Steel Corset (Steampunk Chroni...0.229954to-read fantasy favorites currently-reading yo...10024.000000
2359Wildest Dreams (Fantasyland, #1)0.229949to-read fantasy favorites currently-reading fi...10033.000000
2360For One More Day0.229913to-read fantasy favorites currently-reading yo...10044.000000
2361Crewel (Crewel World, #1)0.229892to-read fantasy favorites young-adult fiction ...10032.000000
2362Othello0.229867to-read favorites currently-reading fiction ow...10037.000000
2363Hero0.229839to-read fantasy favorites currently-reading yo...10029.000000
2364An Artist of the Floating World0.229750to-read favorites currently-reading fiction bo...10035.000000
2365Blood Cross (Jane Yellowrock, #2)0.229727to-read fantasy favorites currently-reading fi...10031.000000
2366This Side of Paradise0.229725to-read favorites fiction books-i-own owned fa...10045.000000
2367Kiss the Dead (Anita Blake, Vampire Hunter #21)0.229690to-read fantasy favorites currently-reading fi...10032.000000
2368The Electric Kool-Aid Acid Test0.229660to-read favorites currently-reading fiction bo...10029.000000
2369The Fountains of Paradise0.229487to-read fantasy favorites currently-reading fi...10038.000000
2370Norse Mythology0.229199to-read fantasy favorites currently-reading yo...10036.000000
2371The Van Alen Legacy (Blue Bloods, #4)0.229196to-read fantasy favorites currently-reading yo...10035.000000
2372Path of Destruction (Star Wars: Darth Bane, #1)0.229029to-read fantasy favorites currently-reading yo...10044.000000
2373Glamorama0.229016to-read favorites currently-reading fiction bo...10034.000000
2374The Ruby Circle (Bloodlines, #6)0.229012to-read fantasy favorites currently-reading yo...10036.000000
2375Percy Jackson and the Olympians Boxed Set (Per...0.228942to-read fantasy favorites currently-reading yo...10039.000000
2376Kim0.228830to-read favorites currently-reading young-adul...10040.000000
2377The Man Who Was Thursday: A Nightmare0.228731to-read fantasy favorites fiction books-i-own ...10039.000000
2378Tiger's Curse (The Tiger Saga, #1)0.228655to-read fantasy favorites currently-reading yo...10045.000000
2379The Moor's Last Sigh0.228594to-read fantasy favorites currently-reading fi...10035.000000
2380City of the Beasts (Eagle and Jaguar, #1)0.228593to-read fantasy favorites currently-reading yo...10039.000000
2381Story of the Eye0.228421to-read favorites currently-reading fiction bo...10032.000000
2382Book of a Thousand Days0.228054to-read fantasy favorites currently-reading yo...10035.000000
2383Carrion Comfort0.228044to-read fantasy favorites currently-reading fi...10041.000000
2384The Little Sisters of Eluria (The Dark Tower, ...0.228024to-read fantasy favorites currently-reading fi...10031.000000
2385The Talisman (The Talisman, #1)0.227957to-read fantasy favorites currently-reading fi...10048.000000
2386Dead Poets Society0.227784to-read favorites currently-reading young-adul...10038.000000
2387Shadowland (The Immortals, #3)0.227753to-read fantasy favorites currently-reading yo...10037.000000
2388The World of Divergent: The Path to Allegiant ...0.227574to-read fantasy favorites currently-reading yo...10031.000000
2389Charlie and the Great Glass Elevator (Charlie ...0.227330to-read fantasy favorites currently-reading yo...10043.000000
2390The Yiddish Policemen's Union0.227281to-read favorites currently-reading fiction bo...10026.000000
2391In The Afterlight (The Darkest Minds, #3)0.227280to-read fantasy favorites currently-reading yo...10040.000000
2392Cosmicomics0.227266to-read fantasy favorites currently-reading fi...10033.000000
2393Blackout (All Clear, #1)0.227244to-read fantasy favorites currently-reading fi...10041.000000
2394Deadeye Dick0.227234to-read favorites currently-reading fiction bo...10036.000000
2395Jonathan Livingston Seagull0.227205to-read fantasy favorites currently-reading yo...10043.000000
2396The Old Man and the Sea0.227164to-read favorites currently-reading young-adul...10044.000000
2397The Body Finder (The Body Finder, #1)0.227067to-read fantasy favorites currently-reading yo...10031.000000
2398Blue Moon (The Immortals, #2)0.227044to-read fantasy favorites currently-reading yo...10034.000000
2399Skin0.227025to-read fantasy favorites currently-reading yo...10042.000000
2400Invitation to a Beheading0.226986to-read fantasy favorites currently-reading fi...10041.000000
2401The Longest Ride0.226968to-read favorites currently-reading young-adul...10043.000000
2402Revolutionary Road0.226915to-read favorites currently-reading fiction bo...10046.000000
2403Bel Canto0.226756to-read favorites currently-reading fiction bo...10039.000000
2404Rot & Ruin (Rot & Ruin, #1)0.226738to-read fantasy favorites currently-reading yo...10039.000000
2405The Rest of Us Just Live Here0.226730to-read fantasy favorites currently-reading yo...10032.000000
2406How to Train Your Dragon (How to Train Your Dr...0.226706to-read fantasy favorites currently-reading yo...10039.000000
2407Swan Song0.226696to-read fantasy favorites currently-reading fi...10042.000000
2408True Grit0.226541to-read favorites currently-reading young-adul...10045.000000
2409Under the Never Sky (Under the Never Sky, #1)0.226531to-read fantasy favorites currently-reading yo...10038.000000
2410Night World, No. 3 (Night World, #7-9)0.226439to-read fantasy favorites currently-reading yo...10038.000000
2411The Stranger0.226345to-read favorites currently-reading fiction bo...20023.500000
2412The Stranger0.115227to-read favorites currently-reading fiction bo...20023.500000
2413Love Story (Love Story, #1)0.226333to-read favorites currently-reading young-adul...10038.000000
2414A Moveable Feast0.226292to-read favorites currently-reading fiction ow...10036.000000
2415The Secret Garden0.226279to-read fantasy favorites currently-reading yo...10046.000000
2416Dead Souls0.226270to-read favorites currently-reading fiction bo...10034.000000
2417The Jungle Book0.226221to-read fantasy favorites currently-reading yo...10046.000000
2418Carpe Corpus (The Morganville Vampires, #6)0.226207to-read fantasy favorites currently-reading yo...10038.000000
2419Mine to Possess (Psy-Changeling #4)0.226190to-read fantasy favorites currently-reading fi...10034.000000
2420Absalom, Absalom!0.226097to-read favorites currently-reading fiction bo...10039.000000
2421Jessica's Guide to Dating on the Dark Side (Je...0.225987to-read fantasy favorites currently-reading yo...10034.000000
2422Endless Knight (The Arcana Chronicles, #2)0.225981to-read fantasy favorites currently-reading yo...10039.000000
2423The Son of Sobek (Percy Jackson & Kane Chronic...0.225944to-read fantasy favorites currently-reading yo...10029.000000
2424Blood Noir (Anita Blake, Vampire Hunter #16)0.225908to-read fantasy favorites currently-reading fi...10029.000000
2425California0.225891to-read fantasy favorites fiction books-i-own ...10033.000000
2426Damned (Damned, #1)0.225861to-read fantasy favorites currently-reading yo...10043.000000
2427Girlfriend in a Coma0.225741to-read fantasy favorites currently-reading yo...10039.000000
2428Naïve. Super0.225649to-read favorites currently-reading young-adul...10035.000000
2429The Lost Prince (The Iron Fey: Call of the For...0.225646to-read fantasy favorites currently-reading yo...10031.000000
2430Revelations (Blue Bloods, #3)0.225599to-read fantasy favorites currently-reading yo...10035.000000
2431The Haunted (The Hollow, #2)0.225557to-read fantasy favorites currently-reading yo...10033.000000
2432Landline0.225399to-read fantasy favorites currently-reading yo...10039.000000
2433Bruiser0.225389to-read fantasy favorites currently-reading yo...10031.000000
2434Surfacing0.225232to-read favorites currently-reading fiction bo...10035.000000
2435Shadow Souls (The Vampire Diaries: The Return,...0.225195to-read fantasy favorites currently-reading yo...10041.000000
2436Dorothy Must Die (Dorothy Must Die, #1)0.225073to-read fantasy favorites young-adult fiction ...10038.000000
2437Taken at Dusk (Shadow Falls, #3)0.225045to-read fantasy favorites currently-reading yo...10035.000000
2438Excavation0.225040to-read fantasy favorites currently-reading fi...10038.000000
2439The Case of Charles Dexter Ward0.225014to-read fantasy favorites currently-reading fi...10037.000000
2440The Lovely Bones0.225005to-read fantasy favorites currently-reading yo...10044.000000
2441The Inimitable Jeeves (Jeeves, #2)0.224952to-read favorites currently-reading fiction bo...10040.000000
2442The Strange Library0.224924to-read fantasy favorites currently-reading yo...10031.000000
2443Frostbitten (Women of the Otherworld, #10)0.224922to-read fantasy favorites currently-reading fi...10035.000000
2444The Poisonwood Bible0.224896to-read favorites currently-reading fiction bo...10043.000000
2445Summer of Night0.224846to-read fantasy favorites currently-reading fi...10037.000000
2446The Pale Horseman (The Saxon Stories, #2)0.224835to-read fantasy favorites currently-reading fi...10038.000000
2447The Retribution of Mara Dyer (Mara Dyer, #3)0.224822to-read fantasy favorites currently-reading yo...10033.000000
2448White Fang0.224755to-read fantasy favorites currently-reading yo...10045.000000
2449The Hunger Games Tribute Guide0.224745to-read fantasy favorites currently-reading yo...10034.000000
2450Delta of Venus0.224639to-read favorites currently-reading fiction bo...10038.000000
2451Of Triton (The Syrena Legacy, #2)0.224637to-read fantasy favorites currently-reading yo...10036.000000
2452Altered (Altered, #1)0.224627to-read fantasy favorites currently-reading yo...10036.000000
2453The Harlequin (Anita Blake, Vampire Hunter #15)0.224606to-read fantasy favorites currently-reading fi...10029.000000
2454The Soulkeepers (The Soulkeepers, #1)0.224590to-read fantasy favorites currently-reading yo...10030.000000
2455Islands in the Stream0.224552to-read favorites currently-reading fiction bo...10042.000000
2456Grasshopper Jungle0.224234to-read fantasy favorites young-adult fiction ...10026.000000
2457One Foot in the Grave (Night Huntress, #2)0.224207to-read fantasy favorites currently-reading yo...10039.000000
2458The Merry Adventures of Robin Hood0.224203to-read fantasy favorites currently-reading yo...10043.000000
2459City of Heavenly Fire (The Mortal Instruments,...0.224120to-read fantasy favorites currently-reading yo...10041.000000
2460Quo Vadis0.224112to-read favorites currently-reading fiction ow...10034.000000
2461The Doors of Perception & Heaven and Hell0.224052to-read favorites currently-reading fiction bo...10040.000000
2462Unless0.223769to-read favorites currently-reading fiction bo...10026.000000
2463This Book Is Not Good for You (Secret, #3)0.223715to-read fantasy favorites currently-reading yo...10039.000000
2464The World of the Hunger Games (Hunger Games Tr...0.223714to-read fantasy favorites currently-reading yo...10033.000000
2465The Assassin and the Underworld (Throne of Gla...0.223648to-read fantasy favorites currently-reading yo...10031.000000
2466The Shock of the Fall0.223568to-read favorites currently-reading young-adul...10038.000000
2467The Idiot0.223371to-read favorites currently-reading fiction bo...10041.000000
2468Skin Trade (Anita Blake, Vampire Hunter #17)0.223328to-read fantasy favorites currently-reading fi...10030.000000
2469A Short History of Tractors in Ukrainian0.223319to-read favorites currently-reading fiction bo...10034.000000
2470The Dead-Tossed Waves (The Forest of Hands and...0.223253to-read fantasy favorites currently-reading yo...10035.000000
2471Peter and the Secret of Rundoon (Peter and the...0.223233to-read fantasy favorites currently-reading yo...10040.000000
2472Salmon Fishing in the Yemen0.223195to-read favorites currently-reading fiction bo...10038.000000
2473Serafina and the Black Cloak (Serafina, #1)0.223148to-read fantasy favorites currently-reading yo...10028.000000
2474The Traitor (Divergent, #0.4)0.223134to-read fantasy favorites currently-reading yo...10032.000000
2475The Three (The Three, #1)0.223057to-read fantasy favorites currently-reading yo...10039.000000
2476Torment (Fallen, #2)0.222804to-read fantasy favorites currently-reading yo...10040.000000
2477The Assassin and the Empire (Throne of Glass, ...0.222794to-read fantasy favorites currently-reading yo...10031.000000
2478The Morganville Vampires, Volume 1 (The Morgan...0.222684to-read fantasy favorites currently-reading yo...10030.000000
2479Savvy (Savvy, #1)0.222679to-read fantasy favorites currently-reading yo...10030.000000
2480Noughts & Crosses (Noughts & Crosses, #1)0.222581to-read fantasy favorites currently-reading yo...10040.000000
2481La Mécanique du cœur0.222569to-read fantasy favorites currently-reading yo...10042.000000
2482UnWholly (Unwind, #2)0.222503to-read fantasy favorites currently-reading yo...10037.000000
2483Invisible0.222495to-read favorites currently-reading fiction bo...20019.000000
2484Invisible0.105588to-read favorites currently-reading fiction bo...20019.000000
2485The Bridges of Madison County0.222490to-read favorites currently-reading fiction bo...10042.000000
2486Silver Shadows (Bloodlines, #5)0.222466to-read fantasy favorites young-adult fiction ...10035.000000
2487Super Sad True Love Story0.222360to-read fantasy favorites currently-reading fi...10034.000000
2488Fingersmith0.222355to-read favorites currently-reading fiction bo...10036.000000
2489Skinwalker (Jane Yellowrock, #1)0.222347to-read fantasy favorites currently-reading fi...10035.000000
2490Ella Minnow Pea: A Novel in Letters0.222335to-read fantasy favorites currently-reading yo...10034.000000
2491Sword Song (The Saxon Stories, #4)0.222148to-read fantasy favorites currently-reading fi...10040.000000
2492Inside Out (Insider, #1)0.222110to-read fantasy favorites currently-reading yo...10033.000000
2493Spider's Bite (Elemental Assassin, #1)0.222069to-read fantasy favorites currently-reading yo...10034.000000
2494The Joke0.222019to-read favorites currently-reading fiction bo...10032.000000
2495The Faerie Queene0.222013to-read fantasy favorites currently-reading fi...10029.000000
2496Nausea0.221943to-read favorites currently-reading fiction bo...10038.000000
2497Thorn Queen (Dark Swan, #2)0.221903to-read fantasy favorites currently-reading yo...10036.000000
2498The Double0.221783to-read fantasy favorites currently-reading fi...10036.000000
2499Cruel Beauty (Cruel Beauty Universe, #1)0.221678to-read fantasy favorites currently-reading yo...10032.000000
2500Lockdown (Escape from Furnace, #1)0.221395to-read fantasy favorites currently-reading yo...10038.000000
2501The Woman in White0.221178to-read favorites currently-reading books-i-ow...10040.000000
2502The Physick Book of Deliverance Dane0.221074to-read fantasy favorites young-adult fiction ...10031.000000
2503Alias Grace0.220970to-read favorites currently-reading fiction bo...10040.000000
2504Aftermath (Star Wars: Aftermath, #1)0.220954to-read fantasy favorites currently-reading fi...10040.000000
2505Pinocchio0.220934to-read young-adult ya magic children-s defaul...20019.000000
2506Pinocchio0.129415to-read fantasy favorites currently-reading fi...20019.000000
2507Letters to a Young Poet0.220896to-read favorites currently-reading fiction bo...10037.000000
2508Don't Breathe a Word0.220851to-read fantasy favorites young-adult fiction ...10033.000000
2509Drop City0.220834to-read favorites currently-reading fiction bo...10033.000000
2510The Green Mile0.220828to-read fantasy favorites currently-reading fi...10050.000000
2511Never Fade (The Darkest Minds, #2)0.220770to-read fantasy favorites currently-reading yo...10041.000000
2512We the Living0.220741to-read favorites currently-reading fiction bo...10043.000000
2513Forever Odd (Odd Thomas, #2)0.220647to-read fantasy favorites currently-reading fi...10037.000000
2514The Lord of the Rings Sketchbook0.220578to-read fantasy favorites currently-reading fi...10029.000000
2515Wisdom (My Blood Approves, #4)0.220573to-read fantasy favorites currently-reading yo...10031.000000
2516Fairest0.220561to-read fantasy favorites currently-reading yo...10037.000000
2517Here be Dragons (Welsh Princes, #1)0.220534to-read fantasy favorites currently-reading fi...10040.000000
2518Day 21 (The 100, #2)0.220513to-read fantasy favorites currently-reading yo...10037.000000
2519The Phantom of the Opera0.220500to-read fantasy favorites currently-reading fi...10045.000000
2520The Secret Life of Bees0.220443to-read favorites currently-reading young-adul...10042.000000
2521The Last Kingdom (The Saxon Stories, #1)0.220429to-read fantasy favorites currently-reading fi...10041.000000
2522The Declaration (The Declaration, #1)0.220408to-read fantasy favorites currently-reading yo...10036.000000
2523Double Star0.220224to-read fantasy favorites currently-reading yo...10040.000000
2524Subterranean0.220179to-read fantasy favorites currently-reading fi...10038.000000
2525Chocolat (Chocolat, #1)0.220147to-read fantasy favorites currently-reading fi...10043.000000
2526Lady Midnight (The Dark Artifices, #1)0.220083to-read fantasy favorites currently-reading yo...10037.000000
2527The Maze of Bones (The 39 Clues, #1)0.219880to-read fantasy favorites currently-reading yo...10035.000000
2528Perfect Match0.219853to-read favorites currently-reading young-adul...10041.000000
2529The Complete Sherlock Holmes, Vol 20.219792to-read favorites currently-reading fiction bo...10044.000000
2530Cabal0.219730to-read fantasy favorites currently-reading fi...10036.000000
2531Stoner0.219504to-read favorites currently-reading fiction bo...10039.000000
2532Suite Française0.219468to-read favorites fiction books-i-own owned fa...10035.000000
2533Night World, No. 2 (Night World, #4-6)0.219451to-read fantasy favorites currently-reading yo...10038.000000
2534The Improbable Adventures of Sherlock Holmes0.219390to-read fantasy favorites currently-reading bo...10032.000000
2535If I Stay (If I Stay, #1)0.219366to-read fantasy favorites currently-reading yo...10040.000000
2536The Iliad0.219119to-read fantasy favorites currently-reading fi...10042.000000
2537Waiting for Godot0.219105to-read favorites currently-reading fiction bo...10034.000000
2538Pale Fire0.219067to-read favorites currently-reading fiction bo...10037.000000
2539Shakespeare's Romeo and Juliet0.219019to-read favorites currently-reading young-adul...10020.000000
2540Starter for Ten0.219010to-read favorites currently-reading young-adul...10041.000000
2541City of Glass (The New York Trilogy, #1)0.218992to-read favorites currently-reading fiction bo...10033.000000
2542Vampire Academy Collection (Vampire Academy, #...0.218809to-read fantasy favorites currently-reading yo...10033.000000
2543Spark (Elemental, #2)0.218786to-read fantasy favorites currently-reading yo...10032.000000
2544Numbers (Numbers, #1)0.218504to-read fantasy favorites currently-reading yo...10037.000000
2545The Gathering (Darkness Rising, #1)0.218464to-read fantasy favorites currently-reading yo...10035.000000
2546Feverborn (Fever, #8)0.218372to-read fantasy favorites currently-reading fi...10029.000000
2547Among the Betrayed (Shadow Children, #3)0.218343to-read fantasy favorites currently-reading yo...10029.000000
2548Misguided Angel (Blue Bloods, #5)0.218329to-read fantasy favorites currently-reading yo...10035.000000
2549The God of Small Things0.218287to-read favorites currently-reading fiction bo...10038.000000
2550Harry Potter: Film Wizardry0.218196to-read fantasy favorites currently-reading yo...10039.000000
2551The Corrections0.217928to-read favorites currently-reading fiction bo...10041.000000
2552The Dead of Night (Tomorrow, #2)0.217868to-read fantasy favorites currently-reading yo...10042.000000
2553Life After Life0.217847to-read fantasy favorites currently-reading fi...10041.000000
2554I Am the Messenger0.217813to-read fantasy favorites currently-reading yo...10046.000000
2555The Call of the Wild, White Fang and Other Sto...0.217768to-read fantasy favorites currently-reading yo...10035.000000
2556The Elementary Particles0.217672to-read favorites currently-reading fiction bo...10032.000000
2557Halfway to the Grave (Night Huntress, #1)0.217630to-read fantasy favorites currently-reading yo...10036.000000
2558The Crimson Petal and the White0.217451to-read favorites currently-reading fiction bo...10042.000000
2559Invisible Man0.217450to-read favorites currently-reading fiction bo...10039.000000
2560The Joy Luck Club0.217353to-read favorites currently-reading young-adul...10038.000000
2561Fade Out (The Morganville Vampires, #7)0.217120to-read fantasy favorites currently-reading yo...10037.000000
2562The Mysterious Benedict Society and the Prison...0.217110to-read fantasy favorites currently-reading yo...10040.000000
2563The Human Stain (The American Trilogy, #3)0.217101to-read favorites currently-reading fiction bo...10035.000000
2564Like Water for Chocolate0.217100to-read fantasy currently-reading fiction book...10037.000000
2565Rapture (Fallen, #4)0.217095to-read fantasy favorites currently-reading yo...10039.000000
2566The New York Trilogy0.216981to-read favorites currently-reading fiction bo...10037.000000
2567Tropic of Cancer0.216924to-read favorites currently-reading fiction bo...10037.000000
2568Henry V0.216754to-read favorites currently-reading fiction bo...10035.000000
2569The Chronicles of Narnia - The Lion, the Witch...0.216589to-read fantasy favorites currently-reading fi...10020.000000
2570Once Upon a Marigold (Upon a Marigold, #1)0.216563to-read fantasy favorites currently-reading yo...10036.000000
2571King Henry IV, Part 1 (Wars of the Roses, #2)0.216364to-read favorites currently-reading fiction bo...10033.000000
2572Love, Rosie0.216307to-read favorites currently-reading young-adul...10046.000000
2573Dear John0.216278to-read favorites currently-reading young-adul...10045.000000
2574The Pledge (The Pledge, #1)0.216258to-read fantasy favorites currently-reading yo...10032.000000
2575The Winner's Kiss (The Winner's Trilogy, #3)0.216207to-read fantasy favorites currently-reading yo...10035.000000
2576A Thousand Splendid Suns0.216207to-read favorites currently-reading young-adul...10044.000000
2577Unraveling (Unraveling, #1)0.216172to-read fantasy favorites currently-reading yo...10034.000000
2578The Prime of Miss Jean Brodie0.216081to-read favorites currently-reading fiction bo...10035.000000
2579Money0.216076to-read favorites currently-reading fiction bo...10037.000000
2580One Day in the Life of Ivan Denisovich0.216013to-read favorites currently-reading fiction bo...10034.000000
2581Through the Ever Night (Under the Never Sky, #2)0.215972to-read fantasy favorites currently-reading yo...10037.000000
2582Divine Secrets of the Ya-Ya Sisterhood0.215918to-read favorites currently-reading young-adul...10037.000000
2583The Shining Girls0.215914to-read fantasy favorites currently-reading fi...10034.000000
2584Charlotte's Web0.215821to-read fantasy favorites currently-reading yo...10035.000000
2585The Damnation Game0.215798to-read fantasy favorites currently-reading fi...10037.000000
2586The Crown (The Selection, #5)0.215745to-read fantasy favorites young-adult fiction ...10034.000000
2587Valhalla Rising (Dirk Pitt, #16)0.215741to-read fantasy favorites currently-reading fi...10032.000000
2588Choke0.215738to-read favorites currently-reading fiction bo...10036.000000
2589Wicked (A Wicked Saga, #1)0.215736to-read fantasy favorites currently-reading yo...10034.000000
2590Tortilla Flat0.215691to-read favorites currently-reading fiction bo...10040.000000
2591Absent In The Spring0.215690to-read favorites currently-reading fiction bo...10031.000000
2592Blackwood Farm (The Vampire Chronicles, #9)0.215678to-read fantasy favorites currently-reading fi...10035.000000
2593Among the Hidden (Shadow Children, #1)0.215675to-read fantasy favorites currently-reading yo...10028.000000
2594Paradise Lost0.215640to-read fantasy favorites currently-reading fi...10040.000000
2595The Rising (Darkness Rising, #3)0.215612to-read fantasy favorites currently-reading yo...10033.000000
2596The Book of Disquiet0.215570to-read favorites currently-reading fiction bo...10034.000000
2597Watchers0.215568to-read fantasy favorites currently-reading fi...10043.000000
2598The Land of Painted Caves (Earth's Children, #6)0.215260to-read favorites fiction books-i-own series o...10039.000000
2599Death of a Salesman0.215230to-read favorites currently-reading young-adul...10032.000000
2600Specter of the Past (Star Wars: The Hand of Th...0.215066to-read fantasy favorites currently-reading fi...10042.000000
2601Richard III0.215058to-read favorites currently-reading fiction bo...10037.000000
2602At Grave's End (Night Huntress, #3)0.215052to-read fantasy favorites currently-reading yo...10037.000000
2603The Boy in the Striped Pajamas0.215045to-read favorites currently-reading young-adul...10045.000000
2604Sun and Moon, Ice and Snow0.215014to-read fantasy favorites currently-reading yo...10030.000000
2605Cry to Heaven0.215002to-read fantasy favorites currently-reading fi...10037.000000
2606The Snows of Kilimanjaro and Other Stories0.214984to-read favorites currently-reading fiction bo...10035.000000
2607Franz Kafka's The Castle (Dramatization)0.214976to-read fantasy favorites currently-reading fi...10028.000000
2608The Egg0.214941to-read fantasy favorites currently-reading fi...10029.000000
2609New Moon: The Complete Illustrated Movie Compa...0.214786to-read fantasy favorites currently-reading yo...10031.000000
2610The Fairy-Tale Detectives (The Sisters Grimm, #1)0.214712to-read fantasy favorites currently-reading yo...10034.000000
2611The Son (Divergent, #0.3)0.214708to-read fantasy favorites currently-reading yo...10033.000000
2612Eclipse: The Complete Illustrated Movie Compan...0.214572to-read fantasy favorites currently-reading yo...10030.000000
2613Coraline (Illustrated/Graphic Novel Edition)0.214514to-read fantasy favorites currently-reading yo...10031.000000
2614The Five People You Meet in Heaven0.214473to-read favorites currently-reading young-adul...10028.000000
2615The Lottery and Other Stories0.214470to-read fantasy favorites currently-reading yo...10034.000000
2616Partials (Partials Sequence, #1)0.214470to-read fantasy favorites currently-reading yo...10034.000000
2617Giovanni's Room0.214408to-read favorites currently-reading fiction bo...10036.000000
2618A Countess Below Stairs0.214401to-read fantasy favorites currently-reading yo...10040.000000
2619Austerlitz0.214391to-read favorites currently-reading fiction bo...10031.000000
2620The Bad Beginning (A Series of Unfortunate Eve...0.214378to-read fantasy favorites currently-reading yo...10043.000000
2621Tiger's Destiny (The Tiger Saga, #4)0.214306to-read fantasy favorites currently-reading yo...10036.000000
2622Altar of Eden0.214296to-read fantasy favorites currently-reading fi...10031.000000
2623Tiger Lily0.214031to-read fantasy favorites currently-reading yo...10036.000000
2624The Enchanted Wood (The Faraway Tree, #1)0.213941to-read fantasy favorites currently-reading yo...10036.000000
2625Daisy Miller0.213861to-read favorites fiction books-i-own owned ow...10031.000000
2626Wise Blood0.213831to-read favorites currently-reading fiction bo...10038.000000
2627Vanish (Firelight, #2)0.213790to-read fantasy favorites currently-reading yo...10037.000000
2628Valley of the Dolls0.213766to-read favorites currently-reading fiction bo...10034.000000
2629The Winter of Our Discontent0.213736to-read favorites fiction books-i-own owned fa...10038.000000
2630Doctor Sleep (The Shining, #2)0.213707to-read fantasy favorites currently-reading fi...10041.000000
2631Stone Cold Touch (The Dark Elements, #2)0.213670to-read fantasy favorites currently-reading yo...10035.000000
2632Shoeless Joe0.213567to-read fantasy favorites currently-reading yo...10039.000000
2633Tuesdays with Morrie0.213540to-read favorites currently-reading young-adul...10041.000000
2634The Dead Girls' Dance (The Morganville Vampire...0.213537to-read fantasy favorites currently-reading yo...10037.000000
2635Manuscript Found in Accra0.213456to-read fantasy favorites currently-reading fi...10042.000000
2636The Fall of the House of Usher and Other Tales0.213451to-read fantasy favorites currently-reading fi...10031.000000
2637Fall of Giants (The Century Trilogy, #1)0.213401to-read fantasy favorites currently-reading fi...10044.000000
2638The Selection Stories: The Prince & The Guard ...0.213351to-read fantasy favorites currently-reading yo...10039.000000
2639Lucinda's Secret (The Spiderwick Chronicles, #3)0.213232to-read young-adult ya owned-books re-read aud...10024.000000
2640Half of a Yellow Sun0.213153to-read favorites currently-reading fiction bo...10036.000000
2641Some Girls Bite (Chicagoland Vampires, #1)0.213095to-read fantasy favorites currently-reading yo...10036.000000
2642Notes from Underground, White Nights, The Drea...0.213044to-read favorites currently-reading fiction bo...10036.000000
2643Friday Night Bites (Chicagoland Vampires, #2)0.212963to-read fantasy favorites currently-reading yo...10036.000000
2644Prized (Birthmarked, #2)0.212877to-read fantasy favorites currently-reading yo...10033.000000
2645Homo Faber0.212844to-read favorites currently-reading fiction bo...10031.000000
2646The Ruins0.212828to-read fantasy favorites currently-reading fi...10042.000000
2647Ethan Frome and Other Short Fiction0.212706to-read favorites currently-reading fiction bo...10023.000000
2648Deep Fathom0.212538to-read fantasy favorites currently-reading fi...10034.000000
2649Rebel Belle (Rebel Belle, #1)0.212487to-read fantasy favorites currently-reading yo...10034.000000
2650The Golden Notebook0.212444to-read favorites currently-reading fiction bo...10040.000000
2651The Magic Mountain0.212387to-read favorites currently-reading fiction bo...10034.000000
2652Rise of the Governor (The Walking Dead #1)0.212375to-read fantasy favorites currently-reading fi...10039.000000
2653Underworld (Abandon, #2)0.212369to-read fantasy favorites currently-reading yo...10029.000000
2654The Lady of the Rivers (The Plantagenet and Tu...0.212325to-read fantasy favorites currently-reading fi...10041.000000
2655Their Eyes Were Watching God0.212223to-read favorites currently-reading young-adul...10040.000000
2656The Unbecoming of Mara Dyer (Mara Dyer, #1)0.212199to-read fantasy favorites currently-reading yo...10034.000000
2657Brother Odd (Odd Thomas, #3)0.212118to-read fantasy favorites currently-reading fi...10038.000000
2658Percy Jackson's Greek Gods (A Percy Jackson an...0.212088to-read fantasy favorites currently-reading yo...10041.000000
2659Sir Gawain and the Green Knight0.212029to-read fantasy favorites currently-reading fi...10038.000000
2660Touch of Frost (Mythos Academy, #1)0.212008to-read fantasy favorites currently-reading yo...10035.000000
2661Babbitt0.211938to-read favorites currently-reading fiction bo...10036.000000
2662The Art of War0.211902to-read currently-reading fiction books-i-own ...10034.000000
2663The Evolution of Mara Dyer (Mara Dyer, #2)0.211882to-read fantasy favorites currently-reading yo...10039.000000
2664Gateway (Heechee Saga, #1)0.211828to-read fantasy favorites currently-reading fi...10041.000000
2665The Black Arrow0.211808to-read fantasy favorites currently-reading yo...10042.000000
2666Destined for an Early Grave (Night Huntress, #4)0.211796to-read fantasy favorites currently-reading fi...10038.000000
2667As I Lay Dying0.211776to-read favorites currently-reading fiction bo...10036.000000
2668The Things They Carried0.211697to-read favorites currently-reading young-adul...10039.000000
2669Heartless0.211669to-read fantasy favorites currently-reading yo...10036.000000
2670Venom (Elemental Assassin, #3)0.211661to-read fantasy favorites currently-reading fi...10033.000000
2671The Dark Tower: The Gunslinger Born0.211587to-read fantasy favorites currently-reading fi...10036.000000
2672Runaway (Airhead, #3)0.211550to-read fantasy favorites currently-reading yo...10039.000000
2673The Importance of Being Earnest0.211460to-read favorites currently-reading fiction bo...10040.000000
2674Blood Canticle (The Vampire Chronicles, #10)0.211454to-read fantasy favorites currently-reading fi...10033.000000
2675My Soul to Take (Soul Screamers, #1)0.211454to-read fantasy favorites currently-reading yo...10034.000000
2676Independent Study (The Testing, #2)0.211446to-read fantasy favorites currently-reading yo...10034.000000
2677Libra0.211431to-read favorites currently-reading fiction bo...10035.000000
2678Passion (Fallen, #3)0.211419to-read fantasy favorites currently-reading yo...10038.000000
2679The Old Curiosity Shop0.211401to-read favorites currently-reading fiction bo...10040.000000
2680Significance (Significance, #1)0.211382to-read fantasy favorites currently-reading yo...10032.000000
2681Tipping the Velvet0.211367to-read favorites currently-reading fiction bo...10034.000000
2682The Girl Who Loved Tom Gordon0.211346to-read fantasy favorites currently-reading fi...10033.000000
2683The Talented Mr. Ripley (Ripley, #1)0.211340to-read favorites currently-reading fiction bo...10038.000000
2684Styxx (Dark-Hunter, #22)0.211340to-read fantasy favorites currently-reading fi...10042.000000
2685Beastly (Beastly, #1; Kendra Chronicles, #1)0.211284to-read fantasy favorites currently-reading yo...10038.000000
2686Awake at Dawn (Shadow Falls, #2)0.211180to-read fantasy favorites currently-reading yo...10035.000000
2687Villa Incognito0.211169to-read fantasy favorites currently-reading fi...10033.000000
2688Baltasar and Blimunda0.211110to-read fantasy favorites fiction books-i-own ...10034.000000
2689The Immortal Rules (Blood of Eden, #1)0.211080to-read fantasy favorites currently-reading yo...10037.000000
2690Paris0.211059to-read favorites currently-reading fiction bo...10040.000000
2691Delirium (Delirium, #1)0.210954to-read fantasy currently-reading young-adult ...10038.000000
2692Branded by Fire (Psy-Changeling #6)0.210925to-read fantasy favorites currently-reading fi...10032.000000
2693Magic Binds (Kate Daniels, #9)0.210923to-read fantasy favorites fiction books-i-own ...10027.000000
2694Flutter (My Blood Approves, #3)0.210797to-read fantasy favorites currently-reading yo...10028.000000
2695Julius Caesar0.210764to-read favorites currently-reading young-adul...10036.000000
2696The Wicked Will Rise (Dorothy Must Die, #2)0.210609to-read fantasy favorites currently-reading yo...10037.000000
2697Zorba the Greek0.210597to-read favorites currently-reading fiction bo...10043.000000
2698A Killing Frost (Tomorrow, #3)0.210448to-read favorites currently-reading young-adul...10041.000000
2699Wither (The Chemical Garden, #1)0.210404to-read fantasy favorites currently-reading yo...10037.000000
2700Wolf in White Van0.210378to-read fantasy favorites currently-reading yo...10036.000000
2701Looking for Alaska0.210378to-read favorites currently-reading young-adul...10044.000000
2702Unravel Me (Shatter Me, #2)0.210325to-read fantasy favorites currently-reading yo...10042.000000
2703Predestined (Existence Trilogy, #2)0.210318to-read fantasy favorites currently-reading yo...10033.000000
2704The Fire (Witch & Wizard, #3)0.210227to-read fantasy favorites currently-reading yo...10035.000000
2705Dark Reunion (The Vampire Diaries, #4)0.210219to-read fantasy favorites currently-reading yo...10038.000000
2706The Testing (The Testing, #1)0.210099to-read fantasy favorites currently-reading yo...10035.000000
2707Knife Edge (Noughts & Crosses, #2)0.210088to-read fantasy favorites currently-reading yo...10034.000000
2708Saint Odd (Odd Thomas, #7)0.210039to-read fantasy favorites currently-reading fi...10034.000000
2709Among the Brave (Shadow Children, #5)0.209925to-read fantasy favorites currently-reading yo...10032.000000
2710Jamaica Inn0.209796to-read favorites currently-reading fiction bo...10040.000000
2711Saint (Paradise, #2)0.209704to-read fantasy favorites currently-reading yo...10036.000000
2712Extremely Loud and Incredibly Close0.209685to-read favorites currently-reading young-adul...10047.000000
2713Princess of the Midnight Ball (The Princesses ...0.209545to-read fantasy favorites currently-reading yo...10032.000000
2714Falling Man0.209500to-read favorites fiction books-i-own owned ow...10032.000000
2715The Witches0.209454to-read fantasy favorites currently-reading yo...10041.000000
2716The Gargoyle0.209450to-read fantasy favorites currently-reading fi...10040.000000
2717Undead and Unwed (Undead, #1)0.209264to-read fantasy favorites currently-reading yo...10034.000000
2718Love Medicine0.209236to-read favorites currently-reading fiction bo...10029.000000
2719S.0.209192to-read fantasy favorites currently-reading fi...10036.000000
2720Chess Story0.209141to-read favorites currently-reading fiction bo...10033.000000
2721Exodus0.209032to-read favorites currently-reading fiction bo...10041.000000
2722The Bane Chronicles0.209012to-read fantasy favorites currently-reading yo...10038.000000
2723If You're Reading This, It's Too Late (Secret,...0.208970to-read fantasy favorites currently-reading yo...10042.000000
2724Scarlett0.208804to-read favorites currently-reading fiction bo...10044.000000
2725Pirate Latitudes0.208752to-read fantasy favorites currently-reading fi...10037.000000
2726Everlasting (The Immortals, #6)0.208620to-read fantasy favorites currently-reading yo...10032.000000
2727One Second After (After, #1)0.208596to-read fantasy favorites currently-reading fi...10039.000000
2728A Blaze of Sun (A Shade of Vampire, #5)0.208550to-read fantasy favorites currently-reading yo...10030.000000
2729The Bookseller0.208532to-read fantasy favorites currently-reading fi...10032.000000
2730Dark Witch (The Cousins O'Dwyer Trilogy, #1)0.208430to-read fantasy favorites currently-reading fi...10034.000000
2731The Other Side of Dawn (Tomorrow, #7)0.208309to-read favorites currently-reading young-adul...10040.000000
2732Winter Solstice0.208250to-read favorites currently-reading fiction bo...10036.000000
2733Odd Hours (Odd Thomas, #4)0.208179to-read fantasy favorites currently-reading fi...10036.000000
2734The Complete Works0.208167to-read favorites currently-reading fiction bo...10036.000000
2735Notes from Underground0.208150to-read favorites currently-reading fiction bo...10041.000000
2736The Iliad/The Odyssey0.208139to-read fantasy favorites fiction books-i-own ...10038.000000
2737Utopia0.208090to-read fantasy favorites currently-reading fi...10040.000000
2738Rita Hayworth and Shawshank Redemption: A Stor...0.208078to-read fantasy favorites currently-reading fi...10036.000000
2739Fortunately, the Milk0.208066to-read fantasy favorites currently-reading yo...10032.000000
2740Touch the Dark (Cassandra Palmer, #1)0.208052to-read fantasy favorites currently-reading fi...10034.000000
2741Ghost Town (The Morganville Vampires, #9)0.208050to-read fantasy favorites currently-reading yo...10036.000000
2742What I Loved0.208012to-read currently-reading favourites all-time-...10025.000000
2743Starcrossed (Starcrossed, #1)0.207881to-read fantasy favorites currently-reading yo...10029.000000
2744Teardrop (Teardrop, #1)0.207871to-read fantasy favorites currently-reading yo...10037.000000
2745House of Sand and Fog0.207743to-read favorites currently-reading fiction bo...10038.000000
2746Slated (Slated, #1)0.207739to-read fantasy favorites currently-reading yo...10032.000000
2747Rosencrantz and Guildenstern Are Dead0.207682to-read fantasy favorites currently-reading fi...10035.000000
2748Among the Enemy (Shadow Children, #6)0.207615to-read fantasy favorites currently-reading yo...10033.000000
2749The Lucky One0.207594to-read favorites currently-reading young-adul...10042.000000
2750Paranormalcy (Paranormalcy, #1)0.207504to-read fantasy favorites currently-reading yo...10032.000000
2751Princess of Glass (The Princesses of Westfalin...0.207422to-read fantasy favorites currently-reading yo...10033.000000
2752Tenth Grade Bleeds (The Chronicles of Vladimir...0.207373to-read fantasy favorites currently-reading yo...10032.000000
2753The Night Is for Hunting (Tomorrow, #6)0.207316to-read favorites currently-reading young-adul...10041.000000
2754Glass Houses (The Morganville Vampires, #1)0.207311to-read fantasy favorites currently-reading yo...10035.000000
2755Darkness, Be My Friend (Tomorrow, #4)0.207224to-read favorites currently-reading young-adul...10041.000000
2756Ender's Game, Volume 2: Command School0.207191to-read fantasy favorites currently-reading yo...10021.000000
2757Airhead (Airhead, #1)0.207039to-read fantasy favorites currently-reading yo...10037.000000
2758Twice Bitten (Chicagoland Vampires, #3)0.206971to-read fantasy favorites currently-reading yo...10033.000000
2759God Bless You, Dr. Kevorkian0.206957to-read fantasy favorites currently-reading fi...10035.000000
2760Book of Shadows (Sweep, #1)0.206950owned-books re-read all-time-favorites my-book...10024.000000
2761Being Nikki (Airhead, #2)0.206943to-read fantasy favorites currently-reading yo...10038.000000
2762Night (The Night Trilogy #1)0.206835to-read favorites currently-reading young-adul...10042.000000
2763Sweet Peril (Sweet, #2)0.206823to-read fantasy favorites currently-reading yo...10036.000000
2764White Hot Kiss (The Dark Elements, #1)0.206769to-read fantasy favorites currently-reading yo...10035.000000
2765The Sugar Queen0.206716to-read fantasy favorites currently-reading yo...10038.000000
2766Angels & Demons (Robert Langdon, #1)0.206612to-read fantasy favorites currently-reading fi...10047.000000
2767Of Poseidon (The Syrena Legacy, #1)0.206558to-read fantasy favorites currently-reading yo...10034.000000
2768Terms of Endearment0.206436to-read favorites currently-reading fiction bo...10029.000000
2769The Crucible0.206363to-read favorites young-adult fiction books-i-...10032.000000
2770The Horse Whisperer0.206336to-read favorites currently-reading young-adul...10040.000000
2771Dubliners0.206305to-read favorites currently-reading fiction bo...10045.000000
2772Harry Potter: A Pop-Up Book: Based on the Film...0.206285to-read fantasy favorites currently-reading yo...10020.000000
2773Blood Magick (The Cousins O'Dwyer Trilogy, #3)0.206255to-read fantasy favorites currently-reading fi...10032.000000
2774Heretic (The Grail Quest, #3)0.206181to-read fantasy favorites currently-reading fi...10038.000000
2775Story of O (Story of O #1)0.206174to-read favorites currently-reading fiction bo...10032.000000
2776Mary Poppins (Mary Poppins, #1)0.206155to-read fantasy favorites currently-reading yo...10043.000000
2777Go Ask Alice0.206084to-read favorites currently-reading young-adul...10040.000000
2778A Monster Calls0.206039to-read fantasy favorites currently-reading yo...10033.000000
2779The Dresden Files: Storm Front, Volume 1- Th...0.205978to-read fantasy favorites currently-reading fi...10023.000000
2780Hallowed (Unearthly, #2)0.205839to-read fantasy favorites currently-reading yo...10033.000000
2781The Devil's Arithmetic0.205738to-read fantasy favorites currently-reading yo...10032.000000
2782The Tail of Emily Windsnap (Emily Windsnap, #1)0.205666to-read fantasy favorites currently-reading yo...10031.000000
2783A Little Princess0.205663to-read fantasy favorites currently-reading yo...10043.000000
2784The Angel's Game (The Cemetery of Forgotten Bo...0.205655to-read fantasy favorites currently-reading fi...10039.000000
2785Complete Works of Oscar Wilde0.205635to-read fantasy favorites currently-reading fi...10038.000000
2786Showdown (Paradise, #1)0.205506to-read fantasy favorites currently-reading yo...10039.000000
2787The Island0.205389to-read favorites currently-reading fiction bo...20020.500000
2788The Island0.131662to-read favorites currently-reading fiction bo...20020.500000
2789The Notebook (The Notebook, #1)0.205349to-read favorites currently-reading young-adul...10046.000000
2790Revival0.205264to-read fantasy favorites currently-reading fi...10041.000000
2791Once a Runner0.205234to-read favorites currently-reading fiction bo...10042.000000
2792Ignorance0.205233to-read favorites currently-reading fiction bo...10030.000000
2793Awakened (House of Night, #8)0.205193to-read fantasy favorites currently-reading yo...10033.000000
2794Bambi0.205162to-read fantasy favorites currently-reading yo...20019.000000
2795Bambi0.182688to-read fantasy favorites currently-reading fi...20019.000000
2796Rich Man, Poor Man0.205119to-read favorites currently-reading fiction bo...10036.000000
2797The Call of the Wild/White Fang0.205069to-read fantasy favorites currently-reading yo...10038.000000
2798Pivot Point (Pivot Point, #1)0.205053to-read fantasy favorites currently-reading yo...10030.000000
2799Anna Dressed in Blood (Anna, #1)0.205020to-read fantasy favorites currently-reading yo...10035.000000
2800Acheron (Dark-Hunter #14)0.204997to-read fantasy favorites currently-reading fi...10038.000000
2801The Elegance of the Hedgehog0.204984to-read favorites currently-reading young-adul...10028.000000
2802Les Liaisons dangereuses0.204930to-read favorites currently-reading fiction bo...10037.000000
2803The Space Between (Outlander, #7.5)0.204803to-read fantasy favorites currently-reading fi...10029.000000
2804Reboot (Reboot, #1)0.204773to-read fantasy favorites currently-reading yo...10034.000000
2805Hunger0.204685to-read favorites currently-reading fiction bo...10030.000000
2806Grave Dance (Alex Craft, #2)0.204636to-read fantasy favorites currently-reading fi...10030.000000
2807A Castle of Sand (A Shade of Vampire, #3)0.204546to-read fantasy favorites currently-reading yo...10029.000000
2808Tales From the Hood (The Sisters Grimm, #6)0.204470to-read fantasy favorites currently-reading yo...10036.000000
2809What's Eating Gilbert Grape0.204363to-read favorites currently-reading young-adul...10035.000000
2810Desires of the Dead (The Body Finder, #2)0.204362to-read fantasy favorites currently-reading yo...10031.000000
2811Harry Potter and the Chamber of Secrets: Sheet...0.204341to-read fantasy favorites currently-reading yo...10021.000000
2812Kiss of Death (The Morganville Vampires, #8)0.204334to-read fantasy favorites currently-reading yo...10037.000000
2813The Uplift War (The Uplift Saga, #3)0.204258to-read fantasy favorites currently-reading fi...10035.000000
2814The White Queen (The Plantagenet and Tudor Nov...0.204256to-read fantasy favorites currently-reading fi...10041.000000
2815About a Boy0.204228to-read favorites currently-reading young-adul...10040.000000
2816Pygmalion0.204214to-read favorites currently-reading fiction bo...10035.000000
2817Beautiful You0.204189to-read fantasy favorites currently-reading fi...10038.000000
2818Dream Chaser (Dark-Hunter #13, Dream-Hunter #3)0.204188to-read fantasy favorites currently-reading fi...10035.000000
2819A Handful of Dust0.204182to-read favorites currently-reading fiction bo...10034.000000
2820The Dharma Bums0.204170to-read favorites currently-reading fiction bo...10039.000000
2821A Midsummer Night's Dream0.204076to-read fantasy favorites currently-reading fi...10043.000000
2822The Power of One (The Power of One, #1)0.204056to-read favorites currently-reading young-adul...10046.000000
2823Fragments (Partials Sequence, #2)0.203997to-read fantasy favorites currently-reading yo...10039.000000
2824Whispers at Moonrise (Shadow Falls, #4)0.203968to-read fantasy favorites currently-reading yo...10033.000000
2825Girl Online (Girl Online, #1)0.203952to-read favorites currently-reading young-adul...10037.000000
2826Ark Angel (Alex Rider, #6)0.203906to-read fantasy favorites currently-reading yo...10039.000000
2827The Metamorphosis and Other Stories0.203756to-read fantasy favorites currently-reading fi...10043.000000
2828A Series of Unfortunate Events Box: The Comple...0.203516to-read fantasy favorites currently-reading yo...10038.000000
2829Snakehead (Alex Rider, #7)0.203413to-read fantasy favorites currently-reading yo...10041.000000
2830Archangel's Kiss (Guild Hunter, #2)0.203378to-read fantasy favorites currently-reading fi...10038.000000
2831Bite Club (The Morganville Vampires, #10)0.203361to-read fantasy favorites currently-reading yo...10036.000000
2832UnSouled (Unwind, #3)0.203199to-read fantasy favorites currently-reading yo...10038.000000
2833Vampire Academy: The Ultimate Guide (Vampire A...0.203188to-read fantasy favorites currently-reading yo...10033.000000
2834One Silent Night (Dark-Hunter #15)0.203139to-read fantasy favorites currently-reading fi...10032.000000
2835Death in Venice0.203081to-read favorites currently-reading fiction bo...10035.000000
2836I Am the Cheese0.203079to-read favorites currently-reading young-adul...10033.000000
2837Firelight (Firelight, #1)0.202985to-read fantasy favorites currently-reading yo...10036.000000
2838Incarnate (Newsoul, #1)0.202916to-read fantasy favorites currently-reading yo...10033.000000
2839Journey to the End of the Night0.202881to-read favorites currently-reading fiction ow...10029.000000
2840Last Breath (The Morganville Vampires, #11)0.202841to-read fantasy favorites currently-reading yo...10038.000000
2841Crossed (Matched, #2)0.202689to-read fantasy favorites currently-reading yo...10038.000000
2842A Streetcar Named Desire0.202661to-read favorites currently-reading fiction bo...10032.000000
2843Smilla's Sense of Snow0.202656to-read favorites fiction books-i-own favourit...10032.000000
2844Bridget Jones's Diary (Bridget Jones, #1)0.202639to-read favorites currently-reading fiction bo...10044.000000
2845Monument 14 (Monument 14, #1)0.202555to-read fantasy favorites currently-reading yo...10036.000000
2846The Remains of the Day0.202552to-read favorites currently-reading fiction bo...10045.000000
2847Black Swan Green0.202418to-read favorites currently-reading young-adul...10041.000000
2848The Hollow (The Hollow, #1)0.202408to-read fantasy favorites currently-reading yo...10034.000000
2849King Rat (Asian Saga, #4)0.202388to-read favorites currently-reading fiction bo...10044.000000
2850Hidden (Firelight, #3)0.202371to-read fantasy favorites currently-reading yo...10036.000000
2851The Temple of My Familiar0.202257to-read fantasy favorites currently-reading fi...10035.000000
2852The Miniaturist0.202230to-read fantasy favorites currently-reading fi...10039.000000
2853Birthmarked (Birthmarked, #1)0.202193to-read fantasy favorites currently-reading yo...10032.000000
2854Airframe0.202169to-read fantasy favorites currently-reading fi...10038.000000
2855Seabiscuit: An American Legend0.202122to-read favorites currently-reading fiction bo...10036.000000
2856The Demigod Diaries0.202011to-read fantasy favorites currently-reading yo...10037.000000
2857The Maltese Falcon0.201941to-read favorites currently-reading fiction bo...10040.000000
2858Alice in Zombieland (White Rabbit Chronicles, #1)0.201933to-read fantasy favorites currently-reading yo...10037.000000
2859Mrs. Frisby and the Rats of NIMH (Rats of NIMH...0.201918to-read fantasy favorites currently-reading yo...10034.000000
2860Tomorrow, When the War Began (Tomorrow, #1)0.201896to-read fantasy favorites currently-reading yo...10041.000000
2861Boy's Life0.201870to-read fantasy favorites currently-reading yo...10038.000000
2862The Age of Innocence0.201765to-read favorites fiction books-i-own owned fa...10041.000000
2863Sister Carrie0.201750to-read favorites currently-reading fiction bo...10032.000000
2864Bones of the Hills (Conqueror, #3)0.201698to-read fantasy favorites currently-reading fi...10034.000000
2865The Bean Trees (Greer Family, #1)0.201642to-read favorites currently-reading young-adul...10044.000000
2866Bullet (Anita Blake, Vampire Hunter #19)0.201588to-read fantasy favorites currently-reading fi...10029.000000
2867Another Roadside Attraction0.201536to-read fantasy favorites currently-reading fi...10039.000000
2868Fierce Invalids Home from Hot Climates0.201481to-read fantasy favorites currently-reading fi...10039.000000
2869The Heir (The Selection, #4)0.201460to-read fantasy favorites currently-reading yo...10035.000000
2870The Prince of Mist (Niebla, #1)0.201445to-read fantasy favorites currently-reading yo...10039.000000
2871Leaves of Grass0.201432to-read favorites currently-reading fiction bo...10034.000000
2872Free Four: Tobias Tells the Divergent Knife-Th...0.201307to-read fantasy favorites currently-reading yo...10030.000000
2873Inferno (Robert Langdon, #4)0.201304to-read fantasy favorites currently-reading fi...10043.000000
2874The Shadowhunter's Codex0.201245to-read fantasy favorites currently-reading yo...10034.000000
2875The Autumn of the Patriarch0.201202to-read favorites currently-reading fiction bo...10033.000000
2876Lord Loss (The Demonata, #1)0.201170to-read fantasy favorites currently-reading yo...10038.000000
2877Prodigal Son (Dean Koontz's Frankenstein, #1)0.201151to-read fantasy favorites currently-reading fi...10036.000000
2878Eagle Strike (Alex Rider, #4)0.201151to-read fantasy favorites currently-reading yo...10041.000000
2879My Ántonia0.201026to-read favorites currently-reading young-adul...10042.000000
2880The Dark Highlander (Highlander, #5)0.200985to-read fantasy favorites currently-reading fi...10035.000000
2881Ceaseless (Existence Trilogy, #3)0.200892to-read fantasy favorites currently-reading yo...10030.000000
2882Lullaby0.200892to-read fantasy favorites fiction books-i-own ...10038.000000
2883The Fault in Our Stars0.200822to-read favorites currently-reading young-adul...10041.000000
2884Revolution0.200674to-read fantasy favorites currently-reading yo...10035.000000
2885Any Human Heart0.200655to-read favorites currently-reading fiction bo...10038.000000
2886First Frost (Waverley Family, #2)0.200645to-read fantasy favorites young-adult fiction ...10027.000000
2887Waiting for the Barbarians0.200623to-read favorites currently-reading fiction bo...10034.000000
2888The Lover0.200578to-read favorites currently-reading fiction bo...10032.000000
2889Safe Haven0.200570to-read favorites currently-reading young-adul...10041.000000
2890Vampire Kisses: The Beginning (Vampire Kisses,...0.200557to-read fantasy favorites currently-reading yo...10032.000000
2891Lost in Time (Blue Bloods, #6)0.200553to-read fantasy favorites currently-reading yo...10032.000000
2892The Choice0.200535to-read favorites currently-reading young-adul...10041.000000
2893The Wedding (The Notebook, #2)0.200515to-read favorites currently-reading young-adul...10041.000000
2894Among the Barons (Shadow Children, #4)0.200513to-read fantasy favorites currently-reading yo...10031.000000
2895The Nose0.200483to-read fantasy favorites currently-reading fi...10030.000000
2896The Reluctant Fundamentalist0.200357to-read favorites currently-reading fiction bo...10033.000000
2897H.I.V.E. Higher Institute of Villainous Educat...0.200315to-read fantasy favorites currently-reading yo...10033.000000
2898Eleventh Grade Burns (The Chronicles of Vladim...0.200298to-read fantasy favorites currently-reading yo...10035.000000
2899Shopgirl0.200267to-read fantasy favorites currently-reading fi...10038.000000
2900A Girl of the Limberlost (Limberlost, #2)0.200116to-read favorites currently-reading young-adul...10036.000000
2901Patient Zero (Joe Ledger, #1)0.200108to-read fantasy favorites currently-reading fi...10035.000000
2902Entwined0.199963to-read fantasy favorites currently-reading yo...10036.000000
2903Tinker, Tailor, Soldier, Spy0.199945to-read favorites currently-reading fiction bo...10041.000000
2904Johnny Got His Gun0.199942to-read favorites currently-reading fiction bo...10039.000000
2905Web of Lies (Elemental Assassin, #2)0.199920to-read fantasy favorites currently-reading fi...10035.000000
2906Girl of Nightmares (Anna, #2)0.199853to-read fantasy favorites currently-reading yo...10034.000000
2907This is Where I Leave You0.199838to-read favorites currently-reading fiction bo...10035.000000
2908Deeply Odd (Odd Thomas, #6)0.199836to-read fantasy favorites currently-reading fi...10036.000000
2909Rogue Squadron (Star Wars: X-Wing, #1)0.199795to-read fantasy favorites currently-reading yo...10036.000000
2910Angelfall (Penryn & the End of Days, #1)0.199710to-read fantasy favorites currently-reading yo...10035.000000
2911Platform0.199682to-read favorites currently-reading fiction bo...10027.000000
2912Stuart Little0.199641to-read fantasy favorites currently-reading yo...10032.000000
2913The Thin Man0.199595to-read favorites currently-reading fiction bo...10036.000000
2914P.S. I Love You0.199533to-read favorites currently-reading young-adul...10045.000000
2915The Enchanted0.199494to-read fantasy favorites currently-reading fi...10033.000000
2916The 101 Dalmatians (The Hundred and One Dalmat...0.199443to-read fantasy favorites currently-reading yo...10042.000000
2917Silk0.199412to-read favorites currently-reading fiction bo...10031.000000
2918After the Quake0.199369to-read favorites currently-reading fiction bo...10031.000000
2919Chosen at Nightfall (Shadow Falls, #5)0.199292to-read fantasy favorites currently-reading yo...10032.000000
2920Forrest Gump (Forrest Gump, #1)0.199275to-read fantasy favorites currently-reading fi...10044.000000
2921The Oath0.199251to-read fantasy favorites currently-reading fi...10038.000000
2922Twelfth Grade Kills (The Chronicles of Vladimi...0.199210to-read fantasy favorites currently-reading yo...10036.000000
2923The Subterraneans0.199171to-read favorites currently-reading fiction bo...10031.000000
2924The Comedy of Errors0.199160to-read favorites currently-reading fiction bo...10035.000000
2925Day by Day Armageddon (Day by Day Armageddon,#1)0.199157to-read fantasy favorites currently-reading fi...10034.000000
2926My Cousin Rachel0.198972to-read favorites currently-reading fiction bo...10040.000000
2927Passing0.198952to-read favorites currently-reading fiction bo...10030.000000
2928The Best of Me0.198940to-read favorites currently-reading young-adul...10042.000000
2929UR0.198884to-read fantasy favorites currently-reading fi...10030.000000
2930Play It as It Lays0.198839to-read favorites fiction books-i-own owned fa...10026.000000
2931Lorna Doone0.198787to-read favorites currently-reading young-adul...10041.000000
2932The Lord of the Rings: The Return of the King:...0.198745to-read fantasy favorites currently-reading fi...10023.000000
2933Dark Magic (Dark, #4)0.198650to-read fantasy favorites currently-reading fi...10036.000000
2934Caim0.198443to-read fantasy favorites currently-reading fi...10033.000000
2935Everbound (Everneath, #2)0.198290to-read fantasy favorites currently-reading yo...10029.000000
2936Little Children0.198277to-read favorites currently-reading fiction bo...10038.000000
2937Sweet Reckoning (Sweet, #3)0.198131to-read fantasy favorites currently-reading yo...10034.000000
2938September0.198081to-read favorites currently-reading young-adul...10035.000000
2939Kitchen0.198073to-read favorites currently-reading young-adul...10033.000000
2940Enclave (Razorland, #1)0.198029to-read fantasy favorites currently-reading yo...10034.000000
2941Rebecca of Sunnybrook Farm0.197882to-read favorites currently-reading young-adul...10032.000000
2942Bite Me If You Can (Argeneau #6)0.197881to-read fantasy favorites currently-reading fi...10032.000000
2943Kissed by an Angel/The Power of Love/Soulmates...0.197829to-read fantasy favorites currently-reading yo...10039.000000
2944Heart of a Dog0.197793to-read fantasy favorites currently-reading fi...10040.000000
2945Destined (Wings, #4)0.197717to-read fantasy favorites currently-reading yo...10031.000000
2946Born at Midnight (Shadow Falls, #1)0.197715to-read fantasy favorites currently-reading yo...10035.000000
2947The Long Walk0.197690to-read fantasy favorites currently-reading yo...10042.000000
2948The Amazing Adventures of Kavalier & Clay0.197683to-read fantasy favorites currently-reading fi...10040.000000
2949Dreamless (Starcrossed, #2)0.197667to-read fantasy favorites currently-reading yo...10035.000000
2950London0.197647to-read fantasy favorites currently-reading fi...10038.000000
2951Cold Comfort Farm0.197615to-read favorites currently-reading fiction bo...10038.000000
2952Howl and Other Poems0.197542to-read favorites currently-reading fiction bo...10030.000000
2953Solar0.197484to-read favorites currently-reading fiction bo...10032.000000
2954The History of Love0.197386to-read favorites currently-reading fiction bo...10039.000000
2955Undead and Unemployed (Undead, #2)0.197316to-read fantasy favorites currently-reading fi...10029.000000
2956After (After, #1)0.197284to-read favorites currently-reading young-adul...10042.000000
2957And the Mountains Echoed0.197274to-read favorites currently-reading fiction bo...10040.000000
2958A Game of Thrones: Comic Book, Issue 10.197249to-read fantasy favorites currently-reading fi...10028.000000
2959The Initiate (Divergent, #0.2)0.197246to-read fantasy favorites currently-reading yo...10031.000000
2960Amazonia0.197229to-read fantasy favorites currently-reading fi...10038.000000
2961The Blind Assassin0.197139to-read fantasy favorites currently-reading fi...10044.000000
2962The Mysteries of Pittsburgh0.197115to-read favorites currently-reading young-adul...10038.000000
2963Coming Home0.197106to-read favorites currently-reading fiction bo...10039.000000
2964Stiff: The Curious Lives of Human Cadavers0.197096to-read favorites currently-reading fiction bo...10030.000000
2965Carter Beats the Devil0.197080to-read fantasy favorites currently-reading fi...10034.000000
2966Half-Blood (Covenant, #1)0.197064to-read fantasy favorites young-adult fiction ...10034.000000
2967State of Fear0.197034to-read fantasy favorites currently-reading fi...10037.000000
2968The Golden Dynasty (Fantasyland, #2)0.197007to-read fantasy favorites currently-reading fi...10032.000000
2969The Leopard0.196892to-read currently-reading fiction books-i-own ...10031.000000
2970First Shift: Legacy (Shift, #1)0.196866to-read fantasy favorites currently-reading fi...10030.000000
2971Our Man in Havana0.196866to-read favorites currently-reading fiction bo...10037.000000
2972The Name of This Book Is Secret (Secret, #1)0.196829to-read fantasy favorites currently-reading yo...10040.000000
2973Gargantua and Pantagruel0.196814to-read fantasy favorites currently-reading fi...10031.000000
2974Christine0.196689to-read fantasy favorites currently-reading fi...10036.000000
2975Pygmalion and Three Other Plays0.196659to-read favorites currently-reading fiction bo...10031.000000
2976After We Collided (After, #2)0.196563to-read favorites currently-reading young-adul...10041.000000
2977Jaws0.196557to-read favorites currently-reading fiction bo...10040.000000
2978Ham on Rye0.196551to-read favorites currently-reading young-adul...10039.000000
2979Crossing to Safety0.196472to-read favorites currently-reading fiction bo...10037.000000
2980Nightshade (Nightshade #1; Nightshade World #4)0.196470to-read fantasy favorites currently-reading yo...10034.000000
2981The Hotel New Hampshire0.196448to-read favorites currently-reading fiction bo...10041.000000
2982The Book of Joe0.196429to-read favorites currently-reading fiction bo...10034.000000
2983Unearthly (Unearthly, #1)0.196398to-read fantasy favorites currently-reading yo...10032.000000
2984Gentlemen of the Road0.196383to-read fantasy favorites currently-reading fi...10035.000000
2985Murder Must Advertise (Lord Peter Wimsey, #10)0.196341to-read favorites currently-reading fiction bo...10035.000000
2986The Time of My Life0.196339to-read fantasy favorites currently-reading yo...10034.000000
2987The Naked and the Dead0.196310to-read favorites currently-reading fiction bo...10028.000000
2988How I Live Now0.196203to-read fantasy favorites currently-reading yo...10035.000000
2989Nightfall (The Vampire Diaries: The Return, #1)0.196169to-read fantasy favorites currently-reading yo...10037.000000
2990Dark Flame (The Immortals, #4)0.196150to-read fantasy favorites currently-reading yo...10035.000000
2991Inescapable (The Premonition, #1)0.196125to-read fantasy favorites currently-reading yo...10034.000000
2992The Emperor's Code (The 39 Clues, #8)0.196020to-read fantasy favorites currently-reading yo...10032.000000
2993Aesop's Fables0.196005to-read fantasy favorites young-adult fiction ...10032.000000
2994Succubus Heat (Georgina Kincaid, #4)0.196001to-read fantasy favorites currently-reading yo...10037.000000
2995Song of Solomon0.195911to-read favorites currently-reading fiction bo...10034.000000
2996Herzog0.195894to-read favorites currently-reading fiction bo...10028.000000
2997The Chosen0.195840to-read favorites currently-reading young-adul...10041.000000
2998Norwegian Wood0.195837to-read fantasy favorites currently-reading yo...10043.000000
2999The Hostile Hospital (A Series of Unfortunate ...0.195787to-read fantasy favorites currently-reading yo...10042.000000
3000The Queen (The Selection, #0.4)0.195719to-read fantasy favorites currently-reading yo...10030.000000
3001The Children's Book0.195691to-read fantasy favorites currently-reading fi...10037.000000
3002Ficciones0.195616to-read fantasy favorites currently-reading fi...10033.000000
3003The Nanny Diaries (Nanny, #1)0.195566to-read favorites currently-reading young-adul...10031.000000
3004The Sorrows of Young Werther0.195553to-read favorites currently-reading fiction bo...10034.000000
3005Trust No One (The 39 Clues: Cahills vs. Vesper...0.195495to-read fantasy favorites currently-reading yo...10029.000000
3006Angel (Angel, #1)0.195492to-read fantasy favorites currently-reading yo...10036.000000
3007Broken Monsters0.195492to-read fantasy favorites currently-reading fi...10031.000000
3008Vision of the Future (Star Wars: The Hand of T...0.195452to-read fantasy favorites currently-reading fi...10037.000000
3009The Canterville Ghost0.195448to-read fantasy favorites currently-reading yo...10036.000000
3010Scorpia (Alex Rider, #5)0.195402to-read fantasy favorites currently-reading yo...10040.000000
3011The Garden of Eden0.195364to-read favorites currently-reading fiction bo...10036.000000
3012Drink Deep (Chicagoland Vampires, #5)0.195312to-read fantasy favorites currently-reading yo...10031.000000
3013The Code of the Woosters (Jeeves, #7)0.195278to-read favorites currently-reading fiction bo...10036.000000
3014White Oleander0.195212to-read favorites currently-reading young-adul...10043.000000
3015The Eternity Cure (Blood of Eden, #2)0.195180to-read fantasy favorites currently-reading yo...10038.000000
3016Heaven (Halo, #3)0.195158to-read fantasy favorites currently-reading yo...10033.000000
3017The Vile Village (A Series of Unfortunate Even...0.195133to-read fantasy favorites currently-reading yo...10042.000000
3018Ice Hunt0.195087to-read fantasy favorites currently-reading fi...10034.000000
3019Kiss of Frost (Mythos Academy, #2)0.195052to-read fantasy favorites currently-reading yo...10036.000000
3020Love Is a Dog from Hell0.195010to-read favorites currently-reading fiction bo...10039.000000
3021Carrie / 'Salem's Lot / The Shining0.194935to-read fantasy favorites currently-reading fi...10020.000000
3022The Red and the Black0.194918to-read favorites currently-reading books-i-ow...10033.000000
3023Splintered (Splintered, #1)0.194888to-read fantasy favorites currently-reading yo...10039.000000
3024Origins (The Vampire Diaries: Stefan's Diaries...0.194832to-read fantasy favorites currently-reading yo...10033.000000
3025Thérèse Raquin0.194784to-read favorites currently-reading fiction bo...10033.000000
3026I Am Not A Serial Killer (John Cleaver, #1)0.194698to-read fantasy favorites currently-reading yo...10038.000000
3027The Boys from Brazil0.194655to-read fantasy favorites currently-reading fi...10037.000000
3028The Pickwick Papers0.194654to-read favorites fiction books-i-own owned fa...10038.000000
3029The Forgotten Garden0.194514to-read fantasy favorites currently-reading fi...10040.000000
3030A Gate at the Stairs0.194513to-read favorites currently-reading fiction bo...10028.000000
3031Billy Budd, Sailor0.194471to-read favorites currently-reading fiction bo...10029.000000
3032Housekeeping0.194469to-read favorites currently-reading fiction bo...10040.000000
3033Fugitive Pieces0.194443to-read favorites currently-reading fiction bo...10031.000000
3034Illusions: The Adventures of a Reluctant Messiah0.194390to-read favorites currently-reading fiction bo...10039.000000
3035Stars Above (The Lunar Chronicles, #4.5)0.194349to-read favorites currently-reading young-adul...10031.000000
3036Sentinel (Covenant, #5)0.194313to-read fantasy favorites currently-reading yo...10033.000000
3037Ragtime0.194291to-read favorites currently-reading fiction bo...10039.000000
3038Silence0.194268to-read favorites fiction books-i-own owned fa...10031.000000
3039The Winter Sea (Slains, #1)0.194239to-read fantasy favorites currently-reading fi...10036.000000
3040The Children Act0.194209to-read favorites currently-reading fiction bo...10032.000000
3041Everything That Rises Must Converge: Stories0.194171to-read favorites currently-reading fiction bo...10032.000000
3042Twelfth Night0.194166to-read fantasy favorites currently-reading fi...10041.000000
3043Still Life with Woodpecker0.194092to-read fantasy favorites currently-reading fi...10040.000000
3044On the Prowl (Alpha & Omega, #0.5)0.194085to-read fantasy favorites currently-reading fi...10032.000000
3045Even Cowgirls Get the Blues0.194062to-read fantasy favorites currently-reading fi...10034.000000
3046The Archer's Tale (The Grail Quest, #1)0.194046to-read fantasy favorites currently-reading fi...10036.000000
3047Jealousy (Strange Angels, #3)0.194025to-read fantasy favorites currently-reading yo...10033.000000
3048Champion (Legend, #3)0.193994to-read fantasy favorites currently-reading yo...10039.000000
3049A Shade of Blood (A Shade of Vampire, #2)0.193951to-read fantasy favorites currently-reading yo...10028.000000
3050The Sleeper and the Spindle0.193934to-read fantasy favorites currently-reading yo...10036.000000
3051Stormbreaker (Alex Rider, #1)0.193867to-read fantasy favorites currently-reading yo...10039.000000
3052Demian. Die Geschichte von Emil Sinclairs Jugend0.193750to-read fantasy favorites currently-reading yo...10039.000000
3053Seize the Night (Dark-Hunter #6)0.193716to-read fantasy favorites currently-reading fi...10037.000000
3054Fate (My Blood Approves, #2)0.193699to-read fantasy favorites currently-reading yo...10027.000000
3055A Brief History of Time0.193695to-read favorites currently-reading fiction bo...10039.000000
3056The Hellbound Heart0.193689to-read fantasy favorites currently-reading fi...10037.000000
3057A Single Man0.193611to-read favorites currently-reading fiction bo...10038.000000
3058Paper Towns0.193424to-read favorites young-adult fiction books-i-...10035.000000
3059The Dark and Hollow Places (The Forest of Hand...0.193420to-read fantasy favorites currently-reading yo...10034.000000
3060Matilda0.193414to-read fantasy favorites currently-reading yo...10042.000000
3061Anne of the Island (Anne of Green Gables, #3)0.193288to-read favorites currently-reading young-adul...10044.000000
3062Fangirl0.193268to-read favorites currently-reading young-adul...10040.000000
3063Vampire Academy Box Set (Vampire Academy, #1-4)0.193187to-read fantasy favorites currently-reading yo...10023.000000
3064The Spy Who Came In from the Cold0.193175to-read favorites currently-reading fiction bo...10040.000000
3065The Fury (The Vampire Diaries, #3)0.193143to-read fantasy favorites currently-reading yo...10038.000000
3066Birdsong0.193110to-read favorites currently-reading fiction bo...10039.000000
3067A God in Ruins0.193015to-read fantasy favorites currently-reading fi...10037.000000
3068Daddy-Long-Legs (Daddy-Long-Legs, #1)0.192971to-read favorites currently-reading young-adul...10040.000000
3069Main Street0.192957to-read favorites currently-reading fiction bo...10033.000000
3070Nights in Rodanthe0.192899to-read favorites currently-reading young-adul...10039.000000
3071Where She Went (If I Stay, #2)0.192899to-read favorites currently-reading young-adul...10038.000000
3072The Professor0.192861to-read favorites currently-reading fiction bo...10040.000000
3073The Memoirs of Sherlock Holmes0.192821to-read fantasy favorites currently-reading fi...10034.000000
3074Accordance (Significance, #2)0.192798to-read fantasy favorites currently-reading yo...10031.000000
3075L'Écume des jours0.192683to-read fantasy favorites currently-reading fi...10034.000000
3076The First Phone Call from Heaven0.192674to-read fantasy favorites currently-reading fi...10037.000000
3077The Ersatz Elevator (A Series of Unfortunate E...0.192628to-read fantasy favorites currently-reading yo...10042.000000
3078It's Kind of a Funny Story0.192627to-read favorites currently-reading young-adul...10040.000000
3079The Postman Always Rings Twice0.192586to-read favorites currently-reading fiction bo...10033.000000
3080When God Was a Rabbit0.192478to-read favorites currently-reading young-adul...10040.000000
3081Before I Fall0.192474to-read fantasy favorites currently-reading yo...10040.000000
3082Night Pleasures (Dark-Hunter, #1)0.192472to-read fantasy favorites currently-reading fi...10037.000000
3083Speak0.192458to-read favorites currently-reading young-adul...10038.000000
3084Bright Lights, Big City0.192446to-read favorites currently-reading fiction bo...10035.000000
3085The Last Picture Show0.192437to-read favorites currently-reading fiction bo...10036.000000
3086The Kreutzer Sonata0.192421to-read favorites currently-reading fiction bo...10031.000000
3087Native Son0.192309to-read favorites currently-reading fiction bo...10035.000000
3088Wicked Business (Lizzy & Diesel, #2)0.192298to-read fantasy favorites currently-reading fi...10033.000000
3089An American Tragedy0.192259to-read favorites currently-reading fiction bo...10032.000000
3090Ishmael:A Novel0.192222to-read fantasy favorites currently-reading fi...10041.000000
3091The Indian in the Cupboard (The Indian in the ...0.192217to-read fantasy favorites currently-reading yo...10029.000000
3092War Horse (War Horse, #1)0.192165to-read favorites currently-reading young-adul...10041.000000
3093Marina0.192142to-read fantasy favorites currently-reading yo...10039.000000
3094The Mysterious Benedict Society and the Perilo...0.192114to-read fantasy favorites currently-reading yo...10041.000000
3095Unhinged (Splintered, #2)0.192102to-read fantasy favorites currently-reading yo...10039.000000
3096Get Shorty (Chili Palmer, #1)0.192087to-read favorites currently-reading fiction bo...10032.000000
3097The Wings of the Dove0.192065to-read favorites currently-reading fiction bo...10033.000000
3098Lady Susan0.192024to-read favorites currently-reading fiction bo...10035.000000
3099Ordinary People0.192004to-read favorites currently-reading young-adul...10038.000000
3100Blood Red Road (Dust Lands, #1)0.191885to-read fantasy favorites currently-reading yo...10038.000000
3101The Pagan Lord (The Saxon Stories, #7)0.191852to-read fantasy favorites currently-reading fi...10034.000000
3102The Grim Grotto (A Series of Unfortunate Event...0.191779to-read fantasy favorites currently-reading yo...10043.000000
3103Walden & Civil Disobedience0.191704to-read favorites currently-reading fiction bo...10029.000000
3104Fantasy Lover (Dark-Hunterverse #1)0.191664to-read fantasy favorites currently-reading fi...10038.000000
3105Girl with a Pearl Earring0.191609to-read favorites currently-reading young-adul...10042.000000
3106All the Bright Places0.191597to-read favorites currently-reading young-adul...10036.000000
3107The Ruby in the Smoke (Sally Lockhart, #1)0.191535to-read fantasy favorites currently-reading yo...10038.000000
3108The Remaining (The Remaining, #1)0.191491to-read fantasy favorites currently-reading fi...10032.000000
3109The Bar Code Tattoo (Bar Code, #1)0.191487to-read fantasy favorites currently-reading yo...10033.000000
3110Shantaram0.191476to-read favorites currently-reading fiction bo...10042.000000
3111The Replacement0.191461to-read fantasy favorites currently-reading yo...10032.000000
3112The Marriage Plot0.191294to-read favorites currently-reading fiction bo...10034.000000
3113Ash0.191283to-read fantasy favorites currently-reading yo...10028.000000
3114Undead and Unappreciated (Undead, #3)0.191276to-read fantasy favorites currently-reading fi...10031.000000
3115Out of Sight, Out of Time (Gallagher Girls, #5)0.191266to-read fantasy favorites currently-reading yo...10035.000000
3116The Bluest Eye0.191266to-read favorites currently-reading young-adul...10038.000000
3117Going Bovine0.191197to-read fantasy favorites currently-reading yo...10032.000000
3118The Color Purple0.191183to-read favorites currently-reading fiction bo...10032.000000
3119The Heart of the Matter0.191178to-read favorites currently-reading fiction bo...10034.000000
3120Room0.191078to-read favorites currently-reading young-adul...10040.000000
3121What Really Happened in Peru (The Bane Chronic...0.191072to-read fantasy favorites currently-reading yo...10030.000000
3122Fall on Your Knees0.191038to-read favorites currently-reading fiction bo...10037.000000
3123Capital0.190975to-read currently-reading fiction books-i-own ...10034.000000
3124Play of Passion (Psy-Changeling #9)0.190964to-read fantasy favorites currently-reading fi...10032.000000
3125CivilWarLand in Bad Decline0.190918to-read fantasy favorites currently-reading fi...10033.000000
3126The Visitation0.190905to-read fantasy favorites currently-reading fi...10037.000000
3127The Magic Strings of Frankie Presto0.190876to-read fantasy favorites currently-reading fi...10035.000000
3128If I Die (Soul Screamers, #5)0.190810to-read fantasy favorites currently-reading yo...10033.000000
3129Entice (Need, #3)0.190740to-read fantasy favorites currently-reading yo...10031.000000
3130The Prisoner of Heaven (The Cemetery of Forgot...0.190683to-read fantasy favorites currently-reading yo...10034.000000
3131The Legend of Sleepy Hollow (Graphic Novel)0.190632to-read fantasy favorites currently-reading yo...10032.000000
3132The Complete Fairy Tales0.190628to-read favorites young-adult fiction books-i-...10031.000000
3133Darkness0.190602to-read fantasy favorites currently-reading yo...10031.000000
3134The Guard (The Selection, #2.5)0.190584to-read fantasy favorites young-adult fiction ...10030.000000
3135Summer Sisters0.190560to-read favorites currently-reading young-adul...10045.000000
3136Nevermore (Nevermore, #1)0.190524to-read fantasy favorites currently-reading yo...10030.000000
3137The Mysterious Benedict Society (The Mysteriou...0.190391to-read fantasy favorites currently-reading yo...10039.000000
3138Master and Commander0.190332to-read favorites currently-reading fiction bo...10044.000000
3139Angels and Demons / The Da Vinci Code (Robert ...0.190303to-read fantasy favorites currently-reading fi...10028.000000
3140The Bloody Chamber and Other Stories0.190274to-read fantasy favorites currently-reading fi...10033.000000
3141Skeleton Key (Alex Rider, #3)0.190263to-read fantasy favorites currently-reading yo...10040.000000
3142The Silver Linings Playbook0.190206to-read favorites currently-reading young-adul...10041.000000
3143Bay of Sighs (The Guardians Trilogy, #2)0.190162to-read fantasy favorites currently-reading fi...10031.000000
3144Defiance (Strange Angels, #4)0.190152to-read fantasy favorites currently-reading yo...10034.000000
3145Helter Skelter: The True Story of the Manson M...0.190134to-read favorites currently-reading fiction bo...10035.000000
3146'Salem's Lot0.190126to-read fantasy favorites currently-reading fi...20024.500000
3147'Salem's Lot0.171172to-read fantasy favorites currently-reading fi...20024.500000
3148Hostage to Pleasure (Psy-Changeling, #5)0.190120to-read fantasy favorites currently-reading fi...10033.000000
3149Anne of Green Gables (Anne of Green Gables, #1)0.190119to-read favorites currently-reading young-adul...10044.000000
3150Promised (Birthmarked, #3)0.190100to-read fantasy favorites currently-reading yo...10033.000000
315126660.190046to-read favorites currently-reading fiction bo...10035.000000
3152Balzac and the Little Chinese Seamstress0.189936to-read favorites currently-reading young-adul...10030.000000
3153Bloody Jack (Bloody Jack, #1)0.189849to-read fantasy favorites currently-reading yo...10038.000000
3154Perfect0.189837to-read favorites currently-reading young-adul...20024.500000
3155Perfect0.122355to-read favorites currently-reading young-adul...20024.500000
3156The Last Song0.189833to-read favorites currently-reading young-adul...10043.000000
3157Eleanor & Park0.189815to-read favorites currently-reading young-adul...10038.000000
3158The Happy Prince0.189801to-read fantasy favorites currently-reading yo...10035.000000
3159First Drop of Crimson (Night Huntress World, #1)0.189793to-read fantasy favorites currently-reading fi...10035.000000
3160As the Crow Flies0.189771to-read favorites currently-reading fiction bo...10042.000000
3161Kiss of Snow (Psy-Changeling #10)0.189708to-read fantasy favorites currently-reading fi...10032.000000
3162My Man Jeeves (Jeeves, #1)0.189695to-read favorites currently-reading fiction bo...10034.000000
3163Down and Out in Paris and London0.189672to-read favorites currently-reading fiction bo...10038.000000
3164Blood Brothers (Sign of Seven, #1)0.189662to-read fantasy favorites currently-reading fi...10035.000000
3165Labor Day0.189629to-read favorites young-adult fiction books-i-...10033.000000
3166Pure (Covenant, #2)0.189600to-read fantasy favorites currently-reading yo...10032.000000
3167Storm (Elemental, #1)0.189594to-read fantasy favorites currently-reading yo...10022.000000
3168Harry Potter Page to Screen: The Complete Film...0.189591to-read fantasy favorites currently-reading yo...10038.000000
3169Tribulation Force (Left Behind, #2)0.189475to-read fantasy favorites currently-reading fi...10035.000000
3170Wonder Boys0.189356to-read favorites currently-reading fiction bo...10039.000000
3171The Black Dahlia (L.A. Quartet, #1)0.189296to-read favorites currently-reading fiction bo...10034.000000
3172I'd Tell You I Love You, But Then I'd Have to ...0.189216to-read fantasy favorites currently-reading yo...10040.000000
3173The King (Black Dagger Brotherhood, #12)0.189184to-read fantasy favorites currently-reading fi...10034.000000
3174Rumors (Luxe, #2)0.189074to-read fantasy favorites currently-reading yo...10038.000000
3175Books of Blood: Volume One (Books of Blood #1)0.189069to-read fantasy favorites currently-reading fi...10035.000000
3176Die for Me (Revenants, #1)0.189066to-read fantasy favorites currently-reading yo...10033.000000
3177The Wolves of Willoughby Chase (The Wolves Chr...0.188994to-read fantasy favorites currently-reading yo...10031.000000
3178Metamorphoses0.188978to-read fantasy favorites currently-reading fi...10029.000000
3179Pippi Longstocking0.188854to-read fantasy favorites currently-reading yo...10035.000000
3180Harvesting the Heart0.188823to-read favorites currently-reading fiction bo...10036.000000
3181Independence (Significance, #4)0.188815to-read fantasy favorites currently-reading yo...10031.000000
3182Third Grave Dead Ahead (Charley Davidson, #3)0.188790to-read fantasy favorites currently-reading fi...10033.000000
3183Eternal Kiss of Darkness (Night Huntress World...0.188778to-read fantasy favorites currently-reading fi...10035.000000
3184Fury (New Species, #1)0.188773to-read fantasy favorites currently-reading fi...10026.000000
3185The Other Boleyn Girl (The Plantagenet and Tud...0.188763to-read favorites currently-reading young-adul...10045.000000
3186Burning For Revenge (Tomorrow, #5)0.188760to-read favorites currently-reading young-adul...10039.000000
3187The Burning Land (The Saxon Stories, #5)0.188661to-read fantasy favorites currently-reading fi...10034.000000
3188The Penultimate Peril (A Series of Unfortunate...0.188627to-read fantasy favorites currently-reading yo...10044.000000
3189The Far Pavilions0.188592to-read fantasy favorites currently-reading fi...10044.000000
3190Three Comrades0.188546to-read fantasy favorites currently-reading fi...10035.000000
3191Dances with Wolves (Dances with Wolves, #1)0.188541to-read favorites currently-reading fiction bo...10041.000000
3192The Tenth Circle0.188500to-read favorites currently-reading young-adul...10041.000000
3193Lords of the North (The Saxon Stories, #3)0.188420to-read fantasy favorites currently-reading fi...10036.000000
3194The Melancholy Death of Oyster Boy and Other S...0.188289to-read fantasy favorites currently-reading yo...10039.000000
3195My Blood Approves (My Blood Approves, #1)0.188216to-read fantasy favorites currently-reading yo...10029.000000
3196The Pearl0.188209to-read favorites currently-reading young-adul...10041.000000
3197Eugene Onegin0.188187to-read currently-reading fiction owned favour...10029.000000
3198Cujo0.188172to-read fantasy favorites currently-reading fi...10040.000000
3199The Magician's Elephant0.188115to-read fantasy favorites currently-reading yo...10032.000000
3200Nana (Les Rougon-Macquart, #9)0.188109to-read favorites currently-reading fiction bo...10035.000000
3201Destined (House of Night, #9)0.188104to-read fantasy favorites currently-reading yo...10035.000000
3202Bone Gap0.187948to-read fantasy favorites currently-reading yo...10025.000000
3203At Home in Mitford (Mitford Years, #1)0.187946to-read favorites currently-reading fiction bo...10039.000000
3204Genghis: Birth of an Empire (Conqueror, #1)0.187728to-read fantasy favorites currently-reading fi...10037.000000
3205Brida0.187704to-read fantasy favorites currently-reading fi...10041.000000
3206Handle with Care0.187673to-read favorites currently-reading young-adul...10040.000000
3207The Wind in the Willows0.187671to-read fantasy favorites currently-reading yo...10042.000000
3208Black Dawn (The Morganville Vampires, #12)0.187670to-read fantasy favorites currently-reading yo...10036.000000
3209A Long Way Down0.187648to-read favorites fiction books-i-own owned fa...10039.000000
3210Deadly Little Secret (Touch, #1)0.187619to-read fantasy favorites currently-reading yo...10032.000000
3211The Thousand Autumns of Jacob de Zoet0.187592to-read fantasy favorites currently-reading fi...10042.000000
3212The Secret Diary of Adrian Mole, Aged 13 3/4 ...0.187581to-read favorites currently-reading young-adul...10037.000000
3213Dream Warrior (Dream-Hunter #4; Dark-Hunter #17)0.187581to-read fantasy favorites currently-reading fi...10033.000000
3214Encyclopedia Brown, Boy Detective (Encyclopedi...0.187574to-read favorites currently-reading young-adul...10020.000000
3215The Girl with No Shadow (Chocolat, #2)0.187564to-read fantasy favorites currently-reading fi...10038.000000
3216Dean Koontz's Frankenstein, Volume 1: Prodigal...0.187554to-read fantasy favorites currently-reading fi...10024.000000
3217Bad Girls Don't Die (Bad Girls Don't Die, #1)0.187548to-read fantasy favorites currently-reading yo...10032.000000
3218Hidden (House of Night, #10)0.187538to-read fantasy favorites currently-reading yo...10034.000000
3219Apollyon (Covenant, #4)0.187464to-read fantasy favorites young-adult fiction ...10035.000000
3220Bird Box0.187391to-read fantasy favorites currently-reading fi...10035.000000
3221Leaving Time0.187363to-read fantasy favorites currently-reading fi...10031.000000
3222City of Thieves0.187361to-read currently-reading young-adult fiction ...10041.000000
3223The Rime of the Ancient Mariner0.187327to-read fantasy favorites currently-reading fi...10032.000000
3224Morrigan's Cross (Circle Trilogy, #1)0.187273to-read fantasy favorites currently-reading fi...10039.000000
3225Sense & Sensibility (The Austen Project, #1)0.187251to-read favorites currently-reading fiction bo...10033.000000
322684, Charing Cross Road0.187251to-read favorites currently-reading fiction bo...10034.000000
3227The Recruit (Cherub, #1)0.187180to-read fantasy favorites currently-reading yo...10033.000000
3228Nobody's Fool0.187156to-read favorites currently-reading fiction bo...10039.000000
3229My Soul to Save (Soul Screamers, #2)0.187131to-read fantasy favorites currently-reading yo...10034.000000
3230Captivate (Need, #2)0.187086to-read fantasy favorites currently-reading yo...10032.000000
3231Death of Kings (The Saxon Stories, #6)0.186903to-read fantasy favorites currently-reading fi...10034.000000
3232Ross Poldark (Poldark, #1)0.186889to-read favorites currently-reading fiction bo...10041.000000
3233Post Captain (Aubrey/Maturin, #2)0.186843to-read favorites currently-reading fiction bo...10040.000000
3234Startide Rising (The Uplift Saga, #2)0.186840to-read fantasy favorites currently-reading fi...10035.000000
3235Pulp0.186797to-read favorites currently-reading fiction bo...10035.000000
3236Dragon Actually (Dragon Kin, #1)0.186789to-read fantasy favorites currently-reading fi...10030.000000
3237A Heartbreaking Work of Staggering Genius0.186783to-read favorites currently-reading fiction bo...10037.000000
3238The Solitaire Mystery: A Novel About Family an...0.186780to-read fantasy favorites currently-reading yo...10039.000000
3239The Remnant (Left Behind, #10)0.186759to-read fantasy favorites currently-reading fi...10037.000000
3240Babe: The Gallant Pig0.186746to-read fantasy favorites currently-reading yo...10023.000000
3241Hex Hall (Hex Hall, #1)0.186740to-read fantasy favorites currently-reading yo...10031.000000
3242Darth Plagueis0.186656to-read fantasy favorites currently-reading fi...10042.000000
3243Point Blank (Alex Rider, #2)0.186629to-read fantasy favorites currently-reading yo...10037.000000
3244I Know Why the Caged Bird Sings0.186600to-read favorites currently-reading young-adul...10039.000000
3245Dark Desire (Dark, #2)0.186499to-read fantasy favorites currently-reading fi...10034.000000
3246When the Emperor Was Divine0.186467to-read favorites currently-reading young-adul...10028.000000
3247Memoirs of an Imaginary Friend0.186391to-read favorites currently-reading fiction bo...10039.000000
3248Storm Warning (The 39 Clues, #9)0.186383to-read fantasy favorites currently-reading yo...10029.000000
3249Desolation Angels0.186346to-read favorites currently-reading fiction bo...10033.000000
3250Skinny Legs and All0.186303to-read fantasy favorites currently-reading fi...10036.000000
3251Only Time Will Tell (The Clifton Chronicles, #1)0.186215to-read favorites currently-reading fiction bo...10033.000000
3252The Tin Drum0.186192to-read favorites currently-reading fiction bo...10035.000000
3253The Killer Inside Me0.186178to-read favorites currently-reading fiction bo...10033.000000
3254Hollowland (The Hollows, #1)0.186158to-read fantasy favorites currently-reading yo...10030.000000
3255Stargirl (Stargirl, #1)0.186129to-read favorites currently-reading young-adul...10038.000000
3256The Program (The Program, #1)0.186075to-read fantasy favorites currently-reading yo...10037.000000
3257Post Office0.186050to-read favorites currently-reading fiction bo...10037.000000
3258Incendiary0.185992to-read favorites currently-reading fiction bo...10038.000000
3259The Slippery Slope (A Series of Unfortunate Ev...0.185985to-read fantasy favorites currently-reading yo...10042.000000
3260Straight Man0.185911to-read favorites currently-reading fiction bo...10037.000000
3261The Miserable Mill (A Series of Unfortunate Ev...0.185863to-read fantasy favorites currently-reading yo...10041.000000
3262Rilla of Ingleside (Anne of Green Gables, #8)0.185809to-read favorites currently-reading young-adul...10042.000000
3263The Reptile Room (A Series of Unfortunate Even...0.185801to-read fantasy favorites currently-reading yo...10042.000000
3264Blackberry Wine0.185757to-read fantasy favorites currently-reading fi...10035.000000
3265The Love Song of Miss Queenie Hennessy (Harold...0.185704to-read favorites fiction books-i-own owned se...10035.000000
3266The Carnivorous Carnival (A Series of Unfortun...0.185673to-read fantasy favorites currently-reading yo...10041.000000
3267World After (Penryn & the End of Days, #2)0.185658to-read fantasy favorites currently-reading yo...10037.000000
3268Bagombo Snuff Box0.185637to-read favorites currently-reading fiction bo...10037.000000
3269The Cuckoo's Calling (Cormoran Strike, #1)0.185556to-read favorites currently-reading fiction bo...10039.000000
3270Women0.185538to-read favorites currently-reading fiction bo...10040.000000
3271Ashley Bell0.185431to-read fantasy favorites currently-reading fi...10032.000000
3272The Storied Life of A.J. Fikry0.185427to-read favorites currently-reading young-adul...10032.000000
3273Audrey Rose0.185361to-read fantasy favorites currently-reading fi...10024.000000
3274Freedom0.185308to-read favorites currently-reading fiction bo...10039.000000
3275How to Marry a Millionaire Vampire (Love at St...0.185295to-read fantasy favorites currently-reading fi...10030.000000
3276Smiley's People0.185238to-read favorites currently-reading fiction bo...10037.000000
3277The Yellow Wall-Paper0.185197to-read favorites currently-reading books-i-ow...10031.000000
3278The Dead0.185098to-read favorites currently-reading fiction bo...10037.000000
3279The Catastrophic History of You and Me0.185082to-read fantasy favorites currently-reading yo...10027.000000
3280The Island of the Day Before0.185073to-read fantasy currently-reading fiction book...10031.000000
3281Still Alice0.185047to-read favorites currently-reading fiction bo...10037.000000
3282Black Beauty0.185023to-read fantasy favorites currently-reading yo...10041.000000
3283Mrs. Mike (Mrs. Mike, #1)0.185012to-read favorites currently-reading young-adul...10040.000000
3284The King in Yellow and Other Horror Stories0.185008to-read fantasy favorites currently-reading fi...10033.000000
3285The Sea Wolf0.185000to-read favorites currently-reading young-adul...10042.000000
3286Winter of the World (The Century Trilogy #2)0.184914to-read fantasy favorites currently-reading fi...10042.000000
3287Shatterproof (The 39 Clues: Cahills vs. Vesper...0.184746to-read fantasy favorites currently-reading yo...10031.000000
3288Hades (Halo, #2)0.184698to-read fantasy favorites currently-reading yo...10036.000000
3289The Miraculous Journey of Edward Tulane0.184673to-read fantasy favorites currently-reading yo...10037.000000
3290Passion Unleashed (Demonica #3)0.184623to-read fantasy favorites currently-reading fi...10033.000000
3291The Moon Is Down0.184569to-read favorites currently-reading fiction bo...10039.000000
3292The Prince and the Pauper0.184518to-read fantasy favorites currently-reading yo...10036.000000
3293Redeemed (House of Night, #12)0.184483to-read fantasy favorites currently-reading yo...10033.000000
3294Upon the Midnight Clear (Dark-Hunter #12, Drea...0.184472to-read fantasy favorites currently-reading fi...10033.000000
3295The Naturals (The Naturals, #1)0.184460to-read fantasy favorites currently-reading yo...10033.000000
3296The Fortress of Solitude0.184444to-read fantasy favorites fiction books-i-own ...10029.000000
3297Full Moon Rising (Riley Jenson Guardian #1)0.184439to-read fantasy favorites currently-reading fi...10033.000000
3298Into the Gauntlet (The 39 Clues, #10)0.184392to-read fantasy favorites currently-reading yo...10035.000000
3299Oracle Night0.184381to-read fantasy favorites currently-reading fi...10029.000000
3300George's Marvellous Medicine0.184361to-read fantasy favorites currently-reading yo...10040.000000
3301Once Burned (Night Prince, #1)0.184341to-read fantasy favorites currently-reading fi...10035.000000
3302Night Embrace (Dark-Hunter #2)0.184339to-read fantasy favorites currently-reading fi...10035.000000
3303Angel Fire (Angel, #2)0.184307to-read fantasy favorites currently-reading yo...10036.000000
3304The Goddess Test (Goddess Test, #1)0.184298to-read fantasy favorites currently-reading yo...10031.000000
3305First Grave on the Right (Charley Davidson, #1)0.184223to-read fantasy favorites currently-reading yo...10033.000000
3306Pay It Forward0.184222to-read favorites currently-reading young-adul...10040.000000
3307Reached (Matched, #3)0.184178to-read fantasy favorites currently-reading yo...10035.000000
3308The Yearling0.184167to-read favorites currently-reading young-adul...10030.000000
3309The Swiss Family Robinson0.184163to-read fantasy favorites currently-reading yo...10040.000000
3310The BFG0.184099to-read fantasy favorites currently-reading fi...10037.000000
3311A Place Called Here0.184098to-read fantasy favorites currently-reading yo...10038.000000
3312The Prince (The Selection, #0.5)0.184093to-read fantasy favorites currently-reading yo...10030.000000
3313Porno0.184073to-read favorites currently-reading fiction bo...10035.000000
3314Ninth Grade Slays (The Chronicles of Vladimir ...0.184067to-read fantasy favorites currently-reading yo...10034.000000
3315A River Runs Through It and Other Stories0.184055to-read favorites currently-reading fiction bo...10038.000000
3316Message in a Bottle0.184019to-read favorites currently-reading young-adul...10040.000000
3317After We Fell (After, #3)0.184015to-read favorites currently-reading young-adul...10037.000000
3318All the Light We Cannot See0.183977to-read favorites currently-reading young-adul...10042.000000
3319Of Love and Shadows0.183949to-read fantasy favorites currently-reading fi...10029.000000
3320The Winter Rose (The Tea Rose, #2)0.183943to-read fantasy favorites currently-reading yo...10039.000000
3321Cheaper by the Dozen0.183921to-read favorites currently-reading young-adul...10039.000000
3322The Death and Life of Charlie St. Cloud0.183885to-read fantasy favorites currently-reading yo...10037.000000
3323Memórias Póstumas de Brás Cubas0.183808to-read favorites currently-reading fiction bo...10032.000000
3324Slam0.183647to-read favorites currently-reading young-adul...10036.000000
3325A Dog's Purpose (A Dog's Purpose, #1)0.183646to-read fantasy favorites currently-reading yo...10039.000000
3326Stars of Fortune (The Guardians Trilogy, #1)0.183610to-read fantasy favorites currently-reading fi...10032.000000
3327Evernight (Evernight, #1)0.183608to-read fantasy favorites currently-reading yo...10033.000000
3328Night World: The Ultimate Fan Guide0.183600to-read fantasy favorites currently-reading yo...10019.000000
3329Pandora / Vittorio the Vampire (New Tales of t...0.183596to-read fantasy favorites currently-reading fi...10026.000000
3330Crank (Crank, #1)0.183581to-read favorites currently-reading young-adul...10038.000000
3331The Hour I First Believed0.183576to-read favorites currently-reading fiction bo...10040.000000
3332Bel-Ami0.183537to-read favorites currently-reading fiction bo...10034.000000
3333Retribution (Dark-Hunter, #19)0.183400to-read fantasy favorites currently-reading fi...10032.000000
3334A Knight in Shining Armor0.183283to-read fantasy favorites currently-reading fi...10041.000000
3335Mutiny on the Bounty (The Bounty Trilogy, #1)0.183244to-read fantasy favorites currently-reading yo...10028.000000
3336Nicolae (Left Behind, #3)0.183163to-read fantasy favorites currently-reading fi...10035.000000
3337Close Your Eyes, Hold Hands0.183070to-read favorites currently-reading young-adul...10032.000000
3338Obsession0.183060to-read fantasy favorites currently-reading yo...10033.000000
3339Glorious Appearing: The End of Days (Left Behi...0.183042to-read fantasy favorites currently-reading fi...10035.000000
3340Invisible Monsters0.182895to-read favorites currently-reading fiction bo...10034.000000
3341The Little Match Girl0.182887to-read fantasy favorites currently-reading yo...10021.000000
3342A Man in Full0.182874to-read favorites currently-reading fiction bo...10035.000000
3343Finding Nemo0.182758to-read fantasy favorites currently-reading fi...10021.000000
3344The Devil in the White City: Murder, Magic, an...0.182757to-read favorites currently-reading fiction bo...10031.000000
3345Wives and Daughters0.182715to-read favorites currently-reading fiction bo...10039.000000
3346Who's Afraid of Virginia Woolf?0.182709to-read favorites currently-reading fiction bo...10030.000000
3347The Unusual Suspects (The Sisters Grimm, #2)0.182648to-read fantasy favorites young-adult fiction ...10036.000000
3348The Shadowy Horses0.182606to-read fantasy favorites currently-reading fi...10030.000000
3349Anna and the French Kiss (Anna and the French ...0.182601to-read favorites currently-reading young-adul...10038.000000
3350The End (A Series of Unfortunate Events, #13)0.182552to-read fantasy favorites currently-reading yo...10044.000000
3351Invincible (Chronicles of Nick, #2)0.182466to-read fantasy favorites currently-reading yo...10035.000000
3352If You Could See Me Now0.182453to-read fantasy favorites currently-reading yo...10040.000000
3353Attachments0.182452to-read favorites currently-reading young-adul...10037.000000
3354Spell of the Highlander (Highlander, #7)0.182448to-read fantasy favorites currently-reading fi...10032.000000
3355A Fine Balance0.182351to-read favorites currently-reading fiction bo...10037.000000
3356The Adventures of Tom Sawyer0.182336to-read favorites currently-reading young-adul...10040.000000
3357Vampires are Forever (Argeneau #8)0.182324to-read fantasy favorites currently-reading fi...10032.000000
3358Elixir (Covenant, #3.5)0.182307to-read fantasy favorites currently-reading yo...10030.000000
3359Sharpe's Tiger (Sharpe, #1)0.182236to-read fantasy favorites currently-reading fi...10036.000000
3360Vagabond (The Grail Quest, #2)0.182225to-read fantasy favorites currently-reading fi...10036.000000
3361A Shade of Vampire (A Shade of Vampire, #1)0.182173to-read fantasy favorites currently-reading yo...10028.000000
3362The Wide Window (A Series of Unfortunate Event...0.182152to-read fantasy favorites currently-reading yo...10041.000000
3363Faust0.182020to-read fantasy favorites currently-reading fi...10038.000000
3364Dark Prince (Dark, #1)0.181926to-read fantasy favorites currently-reading fi...10034.000000
3365Embrace (The Violet Eden Chapters, #1)0.181887to-read fantasy favorites currently-reading yo...10031.000000
3366The Decline and Fall of the Roman Empire0.181837to-read favorites currently-reading fiction bo...10032.000000
3367A King's Ransom (The 39 Clues: Cahills vs. Ves...0.181825to-read fantasy favorites currently-reading yo...10031.000000
3368Confessions of a Shopaholic (Shopaholic, #1)0.181774to-read favorites currently-reading young-adul...10041.000000
3369Thirteen Reasons Why0.181753to-read favorites young-adult fiction books-i-...10039.000000
3370The Constant Princess (The Plantagenet and Tud...0.181721to-read favorites currently-reading fiction bo...10040.000000
3371Anne of Avonlea (Anne of Green Gables, #2)0.181720favorites young-adult fiction books-i-own owne...10041.000000
3372The Big Sleep (Philip Marlowe, #1)0.181669to-read favorites currently-reading fiction bo...10036.000000
3373The Revenant0.181658to-read favorites currently-reading fiction bo...10035.000000
3374Genghis: Lords of the Bow (Conqueror, #2)0.181647to-read fantasy favorites currently-reading fi...10034.000000
3375Indebted (The Premonition, #3)0.181603to-read fantasy favorites currently-reading yo...10034.000000
3376The Lost Wife0.181598to-read favorites currently-reading fiction bo...10034.000000
3377Single White Vampire (Argeneau #3)0.181580to-read fantasy favorites currently-reading fi...10036.000000
3378The Yellow Wallpaper and Other Stories0.181501to-read favorites currently-reading fiction bo...10031.000000
3379A Study in Scarlet0.181495to-read favorites currently-reading fiction bo...10039.000000
3380The Red Queen (The Plantagenet and Tudor Novel...0.181432to-read favorites currently-reading fiction bo...10039.000000
3381The Bookman’s Tale0.181427to-read fantasy favorites currently-reading fi...10033.000000
3382A Dangerous Path (Warriors, #5)0.181413to-read fantasy favorites currently-reading yo...10036.000000
3383Sweet Evil (Sweet, #1)0.181362to-read fantasy favorites currently-reading yo...10034.000000
3384The American Heiress0.181326to-read favorites currently-reading young-adul...10033.000000
3385Under the Volcano0.181312to-read favorites currently-reading fiction bo...10037.000000
3386Everneath (Everneath, #1)0.181289to-read fantasy favorites currently-reading yo...10031.000000
3387The Price of Salt0.181276to-read favorites fiction books-i-own owned fa...10035.000000
3388Collected Fictions0.181269to-read fantasy favorites currently-reading fi...10034.000000
3389House0.181247to-read fantasy favorites currently-reading yo...10040.000000
3390Arcadia0.181233to-read fantasy favorites currently-reading fi...20023.000000
3391Arcadia0.112410to-read favorites currently-reading fiction bo...20023.000000
3392How to Build a Girl0.181203to-read favorites currently-reading young-adul...10037.000000
3393Infamous (Chronicles of Nick, #3)0.181178to-read fantasy favorites currently-reading yo...10036.000000
3394The Frog Princess (Tales of the Frog Princess,...0.181115to-read fantasy favorites currently-reading yo...10034.000000
3395Esio Trot0.181091to-read fantasy favorites currently-reading yo...10033.000000
3396Stray (Shifters, #1)0.181014to-read fantasy favorites currently-reading yo...10037.000000
3397The Sicilian0.181009to-read favorites currently-reading fiction bo...10041.000000
3398Devil May Cry (Dark-Hunter, #11)0.180984to-read fantasy favorites currently-reading fi...10036.000000
3399Betrayals (Strange Angels, #2)0.180980to-read fantasy favorites currently-reading yo...10034.000000
3400We Are Called to Rise0.180955to-read favorites currently-reading fiction bo...10028.000000
3401The Life and Opinions of Tristram Shandy, Gent...0.180906to-read favorites currently-reading fiction bo...10031.000000
3402The Rum Diary0.180814to-read favorites currently-reading fiction bo...10040.000000
3403We Have Always Lived in the Castle0.180787to-read fantasy favorites currently-reading yo...10036.000000
3404Colorless Tsukuru Tazaki and His Years of Pilg...0.180718to-read fantasy favorites currently-reading fi...10037.000000
3405Funny Girl0.180706to-read favorites fiction books-i-own owned ow...10031.000000
3406Angela's Ashes (Frank McCourt, #1)0.180651to-read favorites currently-reading fiction bo...10040.000000
3407Fried Green Tomatoes at the Whistle Stop Cafe0.180614to-read favorites currently-reading fiction bo...10042.000000
3408Murder on the Orient Express (Hercule Poirot, ...0.180543to-read favorites currently-reading fiction bo...10044.000000
3409Twice Tempted (Night Prince, #2)0.180472to-read fantasy favorites currently-reading fi...10037.000000
3410Sula0.180471to-read favorites currently-reading fiction bo...10036.000000
3411Captains Courageous0.180451to-read fantasy favorites currently-reading yo...10042.000000
3412Buddenbrooks: The Decline of a Family0.180427to-read favorites currently-reading fiction bo...10034.000000
3413Little Men (Little Women, #2)0.180397to-read favorites currently-reading young-adul...10038.000000
3414At First Sight (Jeremy Marsh & Lexie Darnell, #2)0.180336to-read favorites currently-reading young-adul...10039.000000
3415A Hologram for the King0.180323to-read favorites currently-reading fiction bo...10032.000000
3416Goddess (Starcrossed, #3)0.180319to-read fantasy favorites currently-reading yo...10037.000000
3417Lamb: The Gospel According to Biff, Christ's C...0.180305to-read fantasy favorites currently-reading fi...10041.000000
3418Four Great Tragedies: Hamlet / Othello / King ...0.180269to-read favorites currently-reading fiction ow...10021.000000
3419Dance Dance Dance (The Rat, #4)0.180231to-read fantasy favorites currently-reading fi...10038.000000
3420Afterlife (Evernight, #4)0.180216to-read fantasy favorites currently-reading yo...10032.000000
3421How to Be Good0.180176to-read favorites currently-reading fiction bo...10037.000000
3422Purgatorio (The Divine Comedy, #2)0.180158to-read fantasy favorites currently-reading fi...10035.000000
3423The Miracle Worker0.180113to-read favorites currently-reading young-adul...10027.000000
3424Until I Die (Revenants, #2)0.180111to-read fantasy favorites currently-reading yo...10032.000000
3425The Commitments0.180109to-read favorites currently-reading fiction bo...10033.000000
3426Robin Hood, The Prince of Thieves0.180019to-read fantasy favorites currently-reading yo...10028.000000
3427Fahrenheit 451: The Authorized Adaptation0.179978to-read fantasy favorites currently-reading yo...10032.000000
3428Beyond the Grave (The 39 Clues #4)0.179972to-read fantasy favorites currently-reading yo...10031.000000
3429Dispatches0.179941to-read favorites currently-reading fiction bo...10028.000000
3430A Grimm Warning (The Land of Stories, #3)0.179935to-read fantasy favorites currently-reading yo...10041.000000
3431The Nightingale0.179919to-read favorites currently-reading fiction bo...10034.000000
3432My Name Is Asher Lev0.179891to-read favorites currently-reading young-adul...10036.000000
3433The Orchid House0.179866to-read favorites currently-reading fiction bo...10034.000000
3434That Was Then, This Is Now0.179616to-read favorites currently-reading young-adul...10032.000000
3435Crocodile Tears (Alex Rider, #8)0.179594to-read fantasy favorites currently-reading yo...10035.000000
3436The Robe0.179566to-read favorites currently-reading fiction bo...10037.000000
3437James and the Giant Peach0.179500to-read fantasy favorites currently-reading yo...10037.000000
3438Girl, Interrupted0.179439to-read favorites currently-reading young-adul...10033.000000
3439Vampires in the Lemon Grove0.179395to-read fantasy favorites currently-reading fi...10033.000000
3440Diary0.179339to-read fantasy favorites currently-reading fi...10037.000000
3441Hector and the Search for Happiness0.179332to-read favorites currently-reading young-adul...10038.000000
3442Welcome to Shadowhunter Academy (Tales from th...0.179332to-read fantasy favorites currently-reading yo...10030.000000
3443The Wishing Spell (The Land of Stories, #1)0.179266to-read fantasy favorites currently-reading yo...10040.000000
3444Glass (Crank, #2)0.179246to-read favorites currently-reading young-adul...10034.000000
3445Eloise0.179209to-read favorites currently-reading fiction bo...10018.000000
3446Roots: The Saga of an American Family0.179202to-read favorites currently-reading fiction bo...10045.000000
3447The Girl You Left Behind0.179192to-read favorites currently-reading fiction bo...10034.000000
3448The Viper's Nest (39 Clues, #7)0.179190to-read fantasy favorites currently-reading yo...10030.000000
3449Peace Like a River0.179154to-read favorites currently-reading young-adul...10041.000000
3450After You (Me Before You, #2)0.179152to-read favorites currently-reading young-adul...10036.000000
3451Before I Die0.179144to-read favorites currently-reading young-adul...10037.000000
3452The Diary of a Young Girl0.179136to-read young-adult fiction owned ya favourite...10031.000000
3453Edge of Eternity (The Century Trilogy, #3)0.179126to-read favorites currently-reading fiction bo...10041.000000
3454The Prophet0.179114to-read favorites currently-reading fiction bo...10043.000000
3455The Fog0.179045to-read fantasy favorites currently-reading fi...10032.000000
3456The Unabridged Journals of Sylvia Plath0.178841to-read favorites currently-reading fiction bo...10031.000000
3457Notes of a Dirty Old Man0.178817to-read favorites currently-reading fiction bo...10029.000000
3458King Lear0.178764to-read favorites currently-reading fiction bo...10039.000000
3459Beyond Exile (Day by Day Armageddon,# 2)0.178730to-read fantasy favorites currently-reading fi...10032.000000
3460The Origin of Species0.178689to-read favorites currently-reading fiction bo...10036.000000
3461Isla and the Happily Ever After (Anna and the ...0.178689to-read favorites currently-reading young-adul...10033.000000
3462Revealed (House of Night, #11)0.178687to-read fantasy favorites currently-reading yo...10034.000000
3463The Oath of the Vayuputras (Shiva Trilogy, #3)0.178676to-read fantasy favorites currently-reading yo...10037.000000
3464Pretty Little Liars (Pretty Little Liars, #1)0.178597to-read favorites currently-reading young-adul...10037.000000
3465The Man in the Iron Mask (The D'Artagnan Roman...0.178543to-read favorites currently-reading young-adul...10041.000000
3466One True Thing0.178542to-read favorites currently-reading fiction bo...10035.000000
3467Sarum: The Novel of England0.178526to-read favorites currently-reading fiction bo...10039.000000
3468Rose in Bloom (Eight Cousins, #2)0.178508to-read favorites currently-reading young-adul...10036.000000
3469The Physician (Cole Family Trilogy, #1)0.178424to-read fantasy favorites currently-reading fi...10039.000000
3470Envy (Luxe, #3)0.178407to-read fantasy favorites currently-reading yo...10037.000000
3471Twenties Girl0.178377to-read fantasy favorites currently-reading yo...10038.000000
3472Ghostgirl (Ghostgirl, #1)0.178341to-read fantasy favorites currently-reading yo...10032.000000
3473Hourglass (Evernight, #3)0.178328to-read fantasy favorites currently-reading yo...10031.000000
3474Strange Angels (Strange Angels, #1)0.178298to-read fantasy favorites currently-reading yo...10032.000000
3475Dark Lover (Black Dagger Brotherhood, #1)0.178282to-read fantasy favorites currently-reading fi...10038.000000
3476Best Kept Secret (The Clifton Chronicles, #3)0.178281to-read favorites currently-reading fiction bo...10032.000000
3477Midnight Rising (Midnight Breed, #4)0.178231to-read fantasy favorites currently-reading fi...10034.000000
3478Last Exit to Brooklyn0.178218to-read favorites currently-reading fiction bo...10034.000000
3479The Woman in Black0.178215to-read fantasy favorites currently-reading fi...10039.000000
3480Dragon Bound (Elder Races, #1)0.178194to-read fantasy favorites currently-reading fi...10033.000000
3481Watchmen0.178145to-read fantasy favorites currently-reading fi...10040.000000
3482The Prince of Tides0.178142to-read favorites currently-reading fiction bo...10042.000000
3483The Captive Part II / The Power (The Secret Ci...0.178116to-read fantasy favorites currently-reading yo...10031.000000
3484An Abundance of Katherines0.178087to-read favorites currently-reading young-adul...10040.000000
3485Microserfs0.178068to-read favorites currently-reading fiction bo...10038.000000
3486Empire Falls0.178051to-read favorites currently-reading fiction bo...10035.000000
3487Juliet0.178041to-read fantasy favorites currently-reading yo...10038.000000
3488The Club Dumas0.177962to-read fantasy favorites currently-reading fi...10032.000000
3489Change of Heart0.177917to-read favorites currently-reading young-adul...10037.000000
3490Night Road0.177861to-read favorites currently-reading young-adul...10037.000000
3491The Rosie Project (Don Tillman, #1)0.177855to-read favorites currently-reading fiction bo...10036.000000
3492Destroy Me (Shatter Me, #1.5)0.177835to-read fantasy favorites currently-reading yo...10032.000000
3493Inherit the Wind0.177828to-read favorites currently-reading young-adul...10026.000000
3494Anne's House of Dreams (Anne of Green Gables, #5)0.177825to-read favorites currently-reading young-adul...10041.000000
3495The Luxe (Luxe, #1)0.177808to-read fantasy favorites currently-reading yo...10040.000000
3496The Dovekeepers0.177771to-read fantasy favorites currently-reading fi...10039.000000
3497The Magician's Assistant0.177707to-read fantasy favorites currently-reading fi...10034.000000
3498The Screwtape Letters0.177696to-read fantasy currently-reading fiction book...10044.000000
3499Sailing Alone Around the Room: New and Selecte...0.177638to-read favorites currently-reading fiction bo...10028.000000
3500The Dark Divine (The Dark Divine, #1)0.177612to-read fantasy favorites currently-reading yo...10027.000000
3501Azincourt0.177566to-read fantasy favorites currently-reading fi...10035.000000
3502Marked / Betrayed / Chosen / Untamed / Hunted ...0.177546to-read fantasy favorites currently-reading yo...10018.000000
3503Just Ella (The Palace Chronicles, #1)0.177540to-read fantasy favorites currently-reading yo...10032.000000
3504The World of Winnie-the-Pooh (Winnie-the-Pooh,...0.177508to-read fantasy favorites currently-reading yo...10035.000000
3505Sybil: The Classic True Story of a Woman Posse...0.177501to-read favorites currently-reading fiction bo...10026.000000
3506Rumble Fish0.177432to-read favorites currently-reading young-adul...10032.000000
3507The Darkest Hour (Warriors, #6)0.177412to-read fantasy favorites currently-reading yo...10037.000000
3508City of Night (Dean Koontz's Frankenstein, #2)0.177347to-read fantasy favorites currently-reading fi...10036.000000
3509One0.177333to-read fantasy favorites currently-reading fi...10032.000000
3510UnEnchanted (An Unfortunate Fairy Tale, #1)0.177262to-read fantasy favorites currently-reading yo...10029.000000
3511The Uncommon Reader0.177155to-read favorites currently-reading fiction bo...10030.000000
3512The Descendants0.177096to-read favorites currently-reading fiction bo...10034.000000
3513The Mistress of Spices0.177070to-read fantasy favorites currently-reading fi...10030.000000
3514Dark Gold (Dark, #3)0.177014to-read fantasy favorites currently-reading fi...10033.000000
3515Orphan Train0.177003to-read favorites currently-reading young-adul...10034.000000
3516Holes (Holes, #1)0.176999to-read fantasy favorites currently-reading yo...10036.000000
3517O Pioneers!0.176956to-read favorites currently-reading young-adul...10037.000000
3518Bridget Jones: The Edge of Reason (Bridget Jon...0.176939to-read favorites currently-reading fiction bo...10043.000000
3519Brick Lane0.176923to-read favorites currently-reading fiction bo...10027.000000
3520Will Grayson, Will Grayson0.176874to-read favorites currently-reading young-adul...10039.000000
3521The Source0.176853to-read favorites currently-reading fiction bo...10040.000000
3522Odd Apocalypse (Odd Thomas, #5)0.176816to-read fantasy favorites currently-reading fi...10035.000000
3523Into the Wild0.176763to-read favorites currently-reading young-adul...10045.000000
3524The Road to the Dark Tower: Exploring Stephen ...0.176761to-read fantasy favorites currently-reading fi...10021.000000
3525R is for Ricochet (Kinsey Millhone, #18)0.176733to-read favorites currently-reading fiction bo...10028.000000
3526The Summer Garden (The Bronze Horseman, #3)0.176716to-read favorites currently-reading fiction bo...10040.000000
3527The Twilight Saga Breaking Dawn Part 1: The Of...0.176695to-read fantasy favorites currently-reading yo...10025.000000
3528Splendor (Luxe, #4)0.176688to-read fantasy favorites currently-reading yo...10035.000000
3529Breathe (Breathe, #1)0.176653to-read fantasy favorites currently-reading yo...10030.000000
3530Dom Casmurro0.176624to-read favorites fiction books-i-own owned fa...10026.000000
3531Burned (Burned, #1)0.176621to-read favorites currently-reading young-adul...10036.000000
3532Bad Moon Rising (Dark-Hunter #18; Were-Hunter ...0.176587to-read fantasy favorites currently-reading fi...10036.000000
3533Thanks for the Memories0.176559to-read fantasy favorites currently-reading fi...10038.000000
3534The Gift0.176501to-read fantasy favorites currently-reading fi...20021.000000
3535The Gift0.160980to-read favorites currently-reading young-adul...20021.000000
3536Code Name Verity (Code Name Verity, #1)0.176467to-read favorites currently-reading young-adul...10037.000000
3537See Me0.176436to-read favorites currently-reading fiction bo...10036.000000
3538Angels' Blood (Guild Hunter, #1)0.176413to-read fantasy favorites currently-reading yo...10037.000000
3539Need (Need, #1)0.176402to-read fantasy favorites currently-reading yo...10032.000000
3540Truth and Beauty0.176375to-read favorites currently-reading fiction bo...10026.000000
3541Forest of Secrets (Warriors, #3)0.176306to-read fantasy favorites currently-reading yo...10039.000000
3542Intuition (The Premonition, #2)0.176292to-read fantasy favorites currently-reading yo...10032.000000
3543Possession0.176244to-read favorites currently-reading fiction bo...10042.000000
3544Sons of Fortune0.176218to-read favorites currently-reading fiction bo...10035.000000
3545Buffy the Vampire Slayer: The Long Way Home (S...0.176184to-read fantasy favorites currently-reading yo...10034.000000
3546The Complete Poems0.176176to-read favorites currently-reading fiction bo...20017.500000
3547The Complete Poems0.160824to-read favorites currently-reading fiction bo...20017.500000
3548A Town Like Alice0.176169to-read favorites currently-reading fiction bo...10039.000000
3549The Help0.176142to-read favorites currently-reading young-adul...10042.000000
3550The Summer I Turned Pretty Trilogy: The Summer...0.176128to-read favorites currently-reading young-adul...10034.000000
3551The Danish Girl0.176116to-read favorites currently-reading fiction bo...10037.000000
3552The Kingmaker's Daughter (The Plantagenet and ...0.176054to-read favorites currently-reading fiction bo...10037.000000
3553Ashes (Ashes Trilogy, #1)0.176050to-read fantasy favorites currently-reading yo...10035.000000
3554My Soul to Keep (Soul Screamers, #3)0.176037to-read fantasy favorites currently-reading yo...10032.000000
3555Filth0.176028to-read favorites currently-reading fiction bo...10037.000000
3556Paint it Black0.176006to-read favorites currently-reading young-adul...10039.000000
3557Spell Bound (Hex Hall, #3)0.175979to-read fantasy favorites currently-reading yo...10028.000000
3558Jazz0.175970to-read favorites currently-reading fiction bo...10037.000000
3559Eva Luna0.175958to-read fantasy favorites currently-reading fi...10029.000000
3560Panic (Panic, #1)0.175845to-read favorites currently-reading young-adul...10035.000000
3561Half Asleep in Frog Pajamas0.175836to-read fantasy favorites currently-reading fi...10034.000000
3562Twilight Director's Notebook : The Story of Ho...0.175783to-read fantasy favorites currently-reading yo...10029.000000
3563Winnie-the-Pooh (Winnie-the-Pooh, #1)0.175741to-read fantasy favorites currently-reading yo...10040.000000
3564The Song of Achilles0.175695to-read fantasy favorites currently-reading yo...10043.000000
3565Not a Penny More, Not a Penny Less0.175680to-read favorites currently-reading fiction bo...10037.000000
3566Me and Earl and the Dying Girl0.175605to-read favorites currently-reading young-adul...10033.000000
3567Factotum0.175574to-read favorites currently-reading fiction bo...10034.000000
3568You Slay Me (Aisling Grey #1)0.175548to-read fantasy favorites currently-reading fi...10033.000000
3569The Hundred-Year-Old Man Who Climbed Out of th...0.175544to-read fantasy favorites currently-reading fi...10038.000000
3570Gone Girl0.175529to-read favorites currently-reading fiction bo...10037.000000
3571Love Bites (Argeneau #2)0.175524to-read fantasy favorites currently-reading fi...10033.000000
3572The Austere Academy (A Series of Unfortunate E...0.175508to-read fantasy favorites currently-reading yo...10040.000000
3573Cosmos0.175450to-read fantasy favorites currently-reading fi...10033.000000
3574A Man Without a Country0.175415to-read favorites currently-reading fiction bo...10039.000000
3575Plainsong (Plainsong, #1)0.175405to-read favorites currently-reading fiction bo...10040.000000
3576P.S. I Still Love You (To All the Boys I've Lo...0.175361to-read favorites currently-reading young-adul...10035.000000
3577Don't Judge a Girl by Her Cover (Gallagher Gir...0.175356to-read fantasy favorites currently-reading yo...10038.000000
3578Airport0.175329to-read favorites currently-reading fiction bo...10035.000000
3579Special Topics in Calamity Physics0.175325to-read favorites currently-reading young-adul...10042.000000
3580Apollyon (Left Behind, #5)0.175301to-read fantasy favorites currently-reading fi...10035.000000
3581Horde (Razorland, #3)0.175239to-read fantasy favorites currently-reading yo...10037.000000
3582When I Found You0.175231to-read favorites currently-reading young-adul...10032.000000
3583Incendiary (The Premonition, #4)0.175225to-read fantasy favorites currently-reading yo...10032.000000
3584Wicked Appetite (Lizzy & Diesel, #1)0.175193to-read fantasy favorites currently-reading fi...10032.000000
3585Second Grave on the Left (Charley Davidson, #2)0.175173to-read fantasy favorites currently-reading fi...10033.000000
3586Something Blue (Darcy & Rachel, #2)0.175099to-read favorites currently-reading young-adul...10041.000000
3587The Art of Racing in the Rain0.175059to-read fantasy favorites currently-reading yo...10038.000000
3588The Jungle Books0.175006to-read fantasy favorites currently-reading fi...10039.000000
3589Relic (Pendergast, #1)0.174999to-read fantasy favorites currently-reading fi...10036.000000
3590Sunset (Warriors: The New Prophecy, #6)0.174955to-read fantasy favorites currently-reading yo...10034.000000
3591Gates of Fire: An Epic Novel of the Battle of ...0.174946to-read fantasy favorites currently-reading fi...10042.000000
3592Eighth Grade Bites (The Chronicles of Vladimir...0.174942to-read fantasy favorites currently-reading yo...10034.000000
3593Bee Season0.174900to-read favorites currently-reading young-adul...10034.000000
3594Rising Storm (Warriors, #4)0.174808to-read fantasy favorites currently-reading yo...10037.000000
3595Lady Audley's Secret0.174806to-read favorites currently-reading fiction bo...10032.000000
3596The Immortal Highlander (Highlander, #6)0.174800to-read fantasy favorites currently-reading fi...10033.000000
3597Bright Shiny Morning0.174762to-read favorites currently-reading fiction bo...10030.000000
3598What If?: Serious Scientific Answers to Absurd...0.174719to-read favorites currently-reading fiction bo...10033.000000
3599How the Grinch Stole Christmas!0.174707to-read fantasy favorites currently-reading yo...10027.000000
3600The Book of Tomorrow0.174655to-read fantasy favorites currently-reading yo...10037.000000
3601Wild Swans: Three Daughters of China0.174646to-read favorites currently-reading fiction bo...10036.000000
3602The Worst Witch (Worst Witch, #1)0.174646to-read fantasy favorites currently-reading yo...10035.000000
3603The Complete Novels0.174621to-read favorites currently-reading fiction bo...10031.000000
3604Eventide (Plainsong, #2)0.174619to-read favorites currently-reading fiction bo...10038.000000
3605Petals on the Wind (Dollanganger, #2)0.174619to-read favorites currently-reading young-adul...10039.000000
3606Cross My Heart and Hope to Spy (Gallagher Girl...0.174568to-read fantasy favorites currently-reading yo...10039.000000
3607Deity (Covenant, #3)0.174562to-read fantasy favorites currently-reading yo...10034.000000
3608One Hundred Names0.174534to-read favorites currently-reading fiction bo...10036.000000
3609The Millennium Trilogy (Millennium Trilogy, #1-3)0.174533to-read fantasy favorites currently-reading fi...10040.000000
3610The Secret Keeper0.174508to-read favorites currently-reading fiction bo...10037.000000
3611Antony and Cleopatra0.174489to-read favorites currently-reading fiction bo...10037.000000
3612The Blood of Flowers0.174483to-read favorites currently-reading young-adul...10034.000000
3613This Lullaby0.174463to-read favorites currently-reading young-adul...10038.000000
3614Darkness at Noon0.174444to-read favorites currently-reading fiction bo...10036.000000
3615Hamlet: Screenplay, Introduction And Film Diary0.174398to-read favorites currently-reading young-adul...10031.000000
3616Brief Lives (The Sandman #7)0.174353to-read fantasy favorites currently-reading yo...10039.000000
3617Rainbow Valley (Anne of Green Gables, #7)0.174308to-read favorites currently-reading young-adul...10041.000000
3618Charlie and the Chocolate Factory (Charlie Buc...0.174279to-read favorites currently-reading young-adul...10040.000000
3619The Universe Versus Alex Woods0.174271to-read favorites currently-reading young-adul...10036.000000
3620Can You Keep a Secret?0.174244to-read favorites currently-reading young-adul...10040.000000
3621Elizabeth Is Missing0.174197to-read favorites currently-reading fiction bo...10035.000000
3622Nine Stories0.174191to-read favorites young-adult re-read default ...10031.000000
3623The Storyteller0.174110to-read favorites currently-reading fiction bo...10035.000000
3624Black Ice0.174097to-read fantasy favorites currently-reading yo...10037.000000
3625The Dream Hunter (Dark-Hunter #10, Dream-Hunte...0.174092to-read fantasy favorites currently-reading fi...10035.000000
3626Unleash the Night (Dark Hunter, #8; Were-Hunte...0.174091to-read fantasy favorites currently-reading fi...10035.000000
3627The Brothers K0.174068to-read favorites currently-reading fiction bo...10038.000000
3628Austenland (Austenland, #1)0.174026to-read fantasy favorites young-adult fiction ...10037.000000
3629Confessions of a Murder Suspect (Confessions, #1)0.173997to-read favorites currently-reading young-adul...10038.000000
3630درخت زیبای من0.173994to-read favorites currently-reading young-adul...10033.000000
3631Glue0.173982to-read favorites currently-reading fiction bo...10030.000000
3632The Guernsey Literary and Potato Peel Pie Society0.173977to-read favorites currently-reading fiction bo...10041.000000
3633Jedi Search (Star Wars: The Jedi Academy Trilo...0.173970to-read fantasy favorites currently-reading yo...10035.000000
3634Daughter of Fortune0.173956to-read favorites currently-reading fiction bo...10032.000000
3635Maurice0.173915to-read favorites currently-reading fiction bo...10035.000000
3636Warlock (Ancient Egypt, #3)0.173908to-read fantasy favorites currently-reading fi...10038.000000
3637The Future of Us0.173842to-read fantasy favorites currently-reading yo...10030.000000
3638The Girl Who Came Home0.173769to-read favorites currently-reading fiction bo...10028.000000
3639The Rules of Attraction0.173754to-read favorites currently-reading young-adul...10036.000000
3640The Tempest0.173752to-read fantasy favorites currently-reading fi...10029.000000
3641I, Claudius (Claudius, #1)0.173688to-read favorites currently-reading fiction bo...10043.000000
3642A Walk to Remember0.173675to-read favorites currently-reading fiction bo...10036.000000
3643Rebel Heart (Dust Lands, #2)0.173659to-read fantasy favorites currently-reading yo...10038.000000
3644Bonjour tristesse0.173647to-read favorites currently-reading young-adul...10030.000000
3645Driving Miss Daisy0.173524to-read favorites currently-reading fiction bo...10020.000000
3646Essential Tales and Poems0.173437to-read fantasy favorites currently-reading fi...10031.000000
3647Corelli's Mandolin0.173404to-read favorites currently-reading fiction bo...10034.000000
3648The Dead of Night (The 39 Clues: Cahills vs. V...0.173394to-read fantasy favorites currently-reading yo...10030.000000
3649Second Helpings (Jessica Darling, #2)0.173380to-read favorites currently-reading young-adul...10039.000000
3650American Pastoral (The American Trilogy, #1)0.173352to-read favorites currently-reading fiction bo...10042.000000
3651Marathon Man0.173332to-read favorites currently-reading fiction bo...10023.000000
3652When the Wind Blows (When the Wind Blows, #1)0.173238to-read fantasy favorites currently-reading yo...10035.000000
3653Juliet, Naked0.173197to-read favorites currently-reading fiction bo...10034.000000
3654A Hero of Our Time0.173187to-read favorites currently-reading fiction bo...10032.000000
3655The Fallen Star (Fallen Star, #1)0.173170to-read fantasy favorites currently-reading yo...10029.000000
3656Songbook0.173163to-read favorites currently-reading fiction bo...10026.000000
3657Fathers and Sons0.173143favorites currently-reading fiction books-i-ow...10031.000000
3658The Running Man0.173119to-read fantasy favorites currently-reading fi...10038.000000
3659Day of Doom (The 39 Clues: Cahills vs. Vespers...0.173073to-read fantasy favorites currently-reading yo...10028.000000
3660The Bhagavad Gita0.173059to-read favorites currently-reading fiction bo...10027.000000
3661Hard Bitten (Chicagoland Vampires, #4)0.172953to-read fantasy favorites currently-reading yo...10031.000000
3662Anne Rice's The Tale of the Body Thief (A Grap...0.172881to-read fantasy favorites currently-reading fi...10022.000000
3663Shadow's Claim (Immortals After Dark, #13; The...0.172825to-read fantasy favorites currently-reading fi...10030.000000
3664The Shadows (Black Dagger Brotherhood, #13)0.172807to-read fantasy favorites currently-reading fi...10031.000000
3665Endlessly (Paranormalcy, #3)0.172800to-read fantasy favorites currently-reading yo...10029.000000
3666Shadow Spell (The Cousins O'Dwyer Trilogy, #2)0.172742to-read fantasy favorites currently-reading fi...10033.000000
3667To Tame a Highland Warrior (Highlander, #2)0.172641to-read fantasy favorites currently-reading fi...10033.000000
3668Me Before You (Me Before You, #1)0.172562to-read favorites fiction books-i-own owned ya...10032.000000
3669Go Set a Watchman0.172519to-read favorites currently-reading fiction bo...10039.000000
3670My Soul to Steal (Soul Screamers, #4)0.172512to-read fantasy favorites currently-reading yo...10030.000000
3671Moonrise (Warriors: The New Prophecy, #2)0.172502to-read fantasy favorites currently-reading yo...10034.000000
3672Supernaturally (Paranormalcy, #2)0.172464to-read fantasy favorites currently-reading yo...10029.000000
3673Water for Elephants0.172419to-read favorites currently-reading young-adul...10035.000000
3674The Face on the Milk Carton (Janie Johnson, #1)0.172371to-read favorites currently-reading young-adul...10033.000000
3675Magic Breaks (Kate Daniels, #7)0.172283to-read fantasy favorites currently-reading fi...10032.000000
3676Eight Cousins (Eight Cousins, #1)0.172274to-read favorites currently-reading young-adul...10036.000000
3677In Too Deep (The 39 Clues, #6)0.172241to-read fantasy favorites currently-reading yo...10032.000000
3678Mercy0.172186to-read favorites currently-reading fiction bo...10038.000000
3679Fracture Me (Shatter Me, #2.5)0.172147to-read fantasy favorites currently-reading yo...10028.000000
3680The Short Stories0.172141to-read fantasy favorites currently-reading fi...10023.000000
3681Firefly Lane (Firefly Lane, #1)0.172071to-read favorites currently-reading young-adul...10038.000000
3682The Underworld (Fallen Star, #2)0.172067to-read fantasy favorites currently-reading yo...10028.000000
3683The Museum of Extraordinary Things0.172044to-read fantasy favorites currently-reading yo...10034.000000
3684Dance with the Devil (Dark-Hunter #3)0.172027to-read fantasy favorites currently-reading fi...10037.000000
3685The Snow Child0.172009to-read fantasy favorites young-adult fiction ...10029.000000
3686Binge0.171969to-read favorites currently-reading young-adul...10033.000000
3687Scorpia Rising (Alex Rider #9)0.171963to-read fantasy favorites currently-reading yo...10036.000000
3688Dance with a Vampire (Vampire Kisses, #4)0.171941to-read fantasy favorites currently-reading yo...10033.000000
3689The Swan Thieves0.171925to-read fantasy favorites currently-reading fi...10037.000000
3690Ballet Shoes (Shoes, #1)0.171923to-read favorites currently-reading young-adul...10037.000000
3691Holidays on Ice0.171905to-read favorites currently-reading fiction bo...10030.000000
3692The King's Curse (The Plantagenet and Tudor No...0.171885to-read favorites currently-reading fiction bo...10034.000000
3693Arch of Triumph: A Novel of a Man Without a Co...0.171883to-read favorites currently-reading fiction bo...10036.000000
3694The Story of My Life0.171851to-read favorites currently-reading young-adul...10033.000000
3695The Red Pony0.171831to-read favorites currently-reading young-adul...10036.000000
3696Aztec (Aztec, #1)0.171758to-read fantasy favorites currently-reading fi...10040.000000
3697The Autograph Man0.171724to-read favorites currently-reading fiction bo...10034.000000
3698Demonglass (Hex Hall, #2)0.171718to-read fantasy favorites currently-reading yo...10028.000000
3699Private Peaceful0.171696to-read favorites currently-reading young-adul...10031.000000
3700The Truth About Forever0.171683to-read favorites currently-reading young-adul...10039.000000
3701Wolfsbane (Nightshade #2; Nightshade World #5)0.171656to-read fantasy favorites currently-reading yo...10033.000000
3702Danny the Champion of the World0.171648to-read fantasy favorites currently-reading yo...10039.000000
3703Armageddon: The Cosmic Battle of the Ages (Lef...0.171623to-read fantasy favorites currently-reading fi...10035.000000
3704The Blue Castle0.171621to-read favorites currently-reading young-adul...10038.000000
3705Lola and the Boy Next Door (Anna and the Frenc...0.171593to-read favorites currently-reading young-adul...10036.000000
3706The Legend of Sleepy Hollow0.171592to-read fantasy favorites currently-reading yo...10034.000000
3707The Spectacular Now0.171573to-read favorites currently-reading young-adul...10035.000000
3708Nick & Norah's Infinite Playlist0.171534to-read favorites currently-reading young-adul...10036.000000
3709Scarecrow (Shane Schofield, #3)0.171403to-read fantasy favorites currently-reading fi...10038.000000
3710Tyrannosaur Canyon (Wyman Ford #1)0.171358to-read favorites currently-reading fiction bo...10033.000000
3711Lock and Key0.171310to-read favorites currently-reading young-adul...10039.000000
3712Silver Bay0.171240to-read favorites currently-reading fiction bo...10031.000000
3713Eugénie Grandet0.170956to-read favorites fiction books-i-own owned se...10027.000000
3714Soul Harvest: The World Takes Sides (Left Behi...0.170885to-read fantasy favorites currently-reading fi...10032.000000
3715The Judas Strain (Sigma Force, #4)0.170813to-read fantasy favorites currently-reading fi...10036.000000
3716The Shipping News0.170792to-read favorites currently-reading fiction bo...10038.000000
3717My Grandmother Asked Me to Tell You She's Sorry0.170731to-read fantasy favorites currently-reading yo...10038.000000
3718National Velvet0.170719to-read favorites currently-reading young-adul...10028.000000
3719The Book of Speculation0.170711to-read fantasy favorites currently-reading fi...10031.000000
3720Big Little Lies0.170645to-read favorites currently-reading fiction bo...10029.000000
3721Vampireville (Vampire Kisses, #3)0.170594to-read fantasy favorites currently-reading yo...10031.000000
3722All-American Girl (All-American Girl, #1)0.170576to-read favorites currently-reading young-adul...10039.000000
3723Revenge Wears Prada: The Devil Returns (The De...0.170457to-read favorites currently-reading young-adul...10038.000000
3724On the Bright Side, I'm Now the Girlfriend of ...0.170416to-read favorites currently-reading young-adul...10035.000000
3725And Then There Were None0.170414to-read favorites currently-reading young-adul...10044.000000
3726Endure (Need, #4)0.170336to-read fantasy favorites currently-reading yo...10027.000000
3727The House at Riverton0.170288to-read favorites currently-reading fiction bo...10038.000000
3728Shopaholic to the Stars (Shopaholic, #7)0.170237to-read favorites currently-reading fiction bo...10034.000000
3729Assassins (Left Behind, #6)0.170206to-read fantasy favorites currently-reading fi...10034.000000
3730The Life List0.170199to-read favorites currently-reading fiction bo...10033.000000
3731Saint Maybe0.170152to-read favorites currently-reading fiction bo...10034.000000
3732After Dark0.170082to-read fantasy favorites currently-reading fi...10036.000000
3733If There Be Thorns (Dollanganger, #3)0.170070to-read favorites currently-reading young-adul...10037.000000
3734QB VII0.169952to-read favorites currently-reading fiction bo...10035.000000
3735Schindler's List0.169948to-read favorites currently-reading fiction bo...10039.000000
3736Area 7 (Shane Schofield, #2)0.169930to-read fantasy favorites currently-reading fi...10038.000000
3737She's Come Undone0.169903to-read favorites currently-reading young-adul...10042.000000
3738Vampire, Interrupted (Argeneau #9)0.169902to-read fantasy favorites currently-reading fi...10034.000000
3739Sisterhood Everlasting (Sisterhood, #5)0.169893to-read favorites currently-reading young-adul...10034.000000
3740Stella Bain0.169879to-read favorites currently-reading fiction bo...10029.000000
3741Vampire Kisses (Vampire Kisses, #1)0.169847to-read fantasy favorites currently-reading yo...10033.000000
3742The Orange Girl0.169823to-read fantasy favorites currently-reading yo...10036.000000
3743Q & A0.169818to-read favorites currently-reading young-adul...10043.000000
3744Kiss of the Night (Dark-Hunter, #4)0.169816to-read fantasy favorites currently-reading fi...10036.000000
3745The Fuck-Up0.169803to-read favorites currently-reading young-adul...10032.000000
3746Lake in the Clouds (Wilderness, #3)0.169771to-read fantasy favorites currently-reading fi...10032.000000
3747The Versions of Us0.169725to-read favorites currently-reading fiction bo...10033.000000
3748Old Possum's Book of Practical Cats0.169637to-read fantasy favorites currently-reading yo...10032.000000
3749NW0.169609to-read favorites currently-reading fiction bo...10035.000000
3750The Mind Readers (Mind Readers, #1)0.169592to-read fantasy favorites currently-reading yo...10028.000000
3751Kissing Coffins (Vampire Kisses, #2)0.169561to-read fantasy favorites currently-reading yo...10033.000000
3752Deep Storm (Jeremy Logan, #1)0.169550to-read fantasy favorites currently-reading fi...10033.000000
3753Animal Dreams0.169504to-read favorites currently-reading fiction bo...10038.000000
3754The Darkest Kiss (Lords of the Underworld #2)0.169460to-read fantasy favorites currently-reading fi...10034.000000
3755Article 5 (Article 5, #1)0.169430to-read fantasy favorites currently-reading yo...10033.000000
3756Noble House (Asian Saga, #5)0.169403to-read favorites currently-reading fiction bo...10043.000000
3757The Water-Method Man0.169392to-read favorites currently-reading fiction bo...10027.000000
3758Astonish Me0.169348to-read favorites currently-reading fiction bo...10024.000000
3759The Hours0.169299to-read favorites currently-reading fiction bo...10042.000000
3760A Place Called Freedom0.169290to-read favorites currently-reading fiction bo...10035.000000
3761An Old-Fashioned Girl0.169285to-read favorites currently-reading young-adul...10031.000000
3762Nineteen Minutes0.169267to-read favorites currently-reading young-adul...10038.000000
3763The DUFF: Designated Ugly Fat Friend0.169251to-read favorites currently-reading young-adul...10036.000000
3764The Accidental Tourist0.169163to-read favorites currently-reading fiction bo...10040.000000
3765United We Spy (Gallagher Girls, #6)0.169131to-read fantasy favorites currently-reading yo...10034.000000
3766Only the Good Spy Young (Gallagher Girls, #4)0.169123to-read fantasy favorites currently-reading yo...10036.000000
3767Raised by Wolves (Raised by Wolves, #1)0.169101to-read fantasy favorites currently-reading yo...10033.000000
3768Sea Glass0.168978to-read favorites currently-reading fiction bo...10032.000000
3769A Bite to Remember (Argeneau #5)0.168956to-read fantasy favorites currently-reading fi...10030.000000
3770Trinity0.168929to-read favorites currently-reading fiction bo...10036.000000
3771The Coffin Club (Vampire Kisses, #5)0.168890to-read fantasy favorites currently-reading yo...10033.000000
3772Stargazer (Evernight, #2)0.168873to-read fantasy favorites currently-reading yo...10033.000000
3773End of Days (Penryn & the End of Days, #3)0.168859to-read fantasy favorites currently-reading yo...10036.000000
3774The Unlikely Pilgrimage of Harold Fry (Harold ...0.168799to-read favorites currently-reading fiction bo...10036.000000
3775Existence (Existence Trilogy, #1)0.168787to-read fantasy favorites currently-reading yo...10030.000000
3776November 90.168764to-read favorites young-adult fiction books-i-...10037.000000
3777Love Anthony0.168731to-read favorites currently-reading fiction bo...10031.000000
3778The Bloodletter's Daughter: A Novel of Old Boh...0.168707to-read favorites currently-reading young-adul...10027.000000
3779The Girl Who Played with Fire (Millennium, #2)0.168678to-read favorites currently-reading fiction bo...10041.000000
3780The Pact0.168675to-read favorites currently-reading young-adul...20021.500000
3781The Pact0.101788to-read favorites currently-reading fiction bo...20021.500000
3782The Absolute Sandman, Volume One0.168674to-read fantasy favorites currently-reading fi...10032.000000
3783The Girl Who Saved the King of Sweden0.168609to-read favorites currently-reading fiction bo...10037.000000
3784The Inn at Rose Harbor (Rose Harbor #1)0.168596to-read currently-reading fiction books-i-own ...10030.000000
3785Captains and the Kings0.168595to-read favorites currently-reading fiction bo...10032.000000
3786The Railway Children0.168571to-read fantasy favorites currently-reading yo...10041.000000
3787Little Mercies0.168556to-read favorites currently-reading fiction bo...10032.000000
3788South of the Border, West of the Sun0.168549to-read fantasy favorites currently-reading fi...10036.000000
3789The Agony and the Ecstasy0.168537to-read favorites currently-reading fiction bo...10041.000000
3790Glengarry Glen Ross0.168514to-read favorites currently-reading fiction bo...10028.000000
3791Kane and Abel (Kane and Abel, #1)0.168500to-read favorites currently-reading fiction bo...10045.000000
3792Ethics0.168482to-read favorites currently-reading books-i-ow...10020.000000
3793My Lady Jane (The Lady Janies, #1)0.168452to-read fantasy favorites currently-reading yo...10031.000000
3794Hopeless (Hopeless, #1)0.168378to-read favorites currently-reading young-adul...10033.000000
3795Forsaken (The Demon Trappers, #1)0.168342to-read fantasy favorites currently-reading yo...10028.000000
3796Dead and Alive (Dean Koontz's Frankenstein, #3)0.168326to-read fantasy favorites currently-reading fi...10035.000000
3797The Eye of God (Sigma Force #9)0.168250to-read favorites currently-reading fiction bo...10037.000000
3798River God (Ancient Egypt, #1)0.168246to-read fantasy favorites fiction books-i-own ...10040.000000
3799Bloodrose (Nightshade #3; Nightshade World #6)0.168179to-read fantasy favorites currently-reading yo...10033.000000
3800Fever (The Chemical Garden, #2)0.168170to-read fantasy favorites young-adult fiction ...10032.000000
3801My Best Friend's Girl0.168161to-read favorites currently-reading fiction bo...10035.000000
3802Keep Quiet0.168125to-read favorites currently-reading fiction bo...10031.000000
3803The Great Train Robbery0.168121to-read favorites currently-reading fiction bo...10036.000000
3804Now We Are Six (Winnie-the-Pooh, #4)0.168118to-read fantasy favorites currently-reading yo...10036.000000
3805Go Tell It on the Mountain0.168112to-read favorites currently-reading young-adul...10034.000000
3806Fables and Reflections (The Sandman #6)0.168036to-read fantasy favorites fiction books-i-own ...10036.000000
3807Love Walked In0.168021to-read favorites currently-reading fiction bo...10041.000000
380813 Gifts (Willow Falls, #3)0.167977to-read fantasy favorites currently-reading yo...10034.000000
3809The Sunne in Splendour0.167964to-read fantasy favorites currently-reading fi...10038.000000
3810A Week in Winter0.167896to-read favorites currently-reading fiction bo...10031.000000
3811Indignation0.167893to-read favorites currently-reading fiction bo...10034.000000
3812Nice Girls Don't Have Fangs (Jane Jameson, #1)0.167887to-read fantasy favorites currently-reading yo...10031.000000
3813Garden of Shadows (Dollanganger, #5)0.167874to-read favorites currently-reading young-adul...10040.000000
3814The Post-Birthday World0.167826to-read favorites currently-reading fiction bo...10034.000000
3815Undead and Unreturnable (Undead, #4)0.167807to-read fantasy favorites currently-reading fi...10031.000000
3816The Tea Rose (The Tea Rose, #1)0.167771to-read favorites currently-reading young-adul...10043.000000
3817A Woman of Substance (Emma Harte Saga #1)0.167729to-read favorites currently-reading fiction bo...10035.000000
3818Be Careful What You Wish For (The Clifton Chro...0.167726to-read favorites currently-reading fiction bo...10032.000000
3819Calico Joe0.167684to-read favorites currently-reading young-adul...10033.000000
3820The Indwelling (Left Behind, #7)0.167673to-read fantasy favorites currently-reading fi...10034.000000
3821No Country for Old Men0.167672to-read favorites currently-reading fiction bo...10040.000000
3822No One Writes to the Colonel and Other Stories0.167672to-read favorites currently-reading fiction bo...10029.000000
3823Kiss of the Highlander (Highlander, #4)0.167634to-read fantasy favorites currently-reading fi...10034.000000
3824The Valkyries0.167622to-read fantasy favorites currently-reading fi...10034.000000
3825Into the Wilderness (Wilderness, #1)0.167466to-read fantasy favorites currently-reading fi...10039.000000
3826Falling Under (Falling Under, #1)0.167372to-read fantasy favorites currently-reading yo...10028.000000
3827One Plus One0.167359to-read favorites currently-reading fiction bo...10032.000000
3828First Among Equals0.167332to-read fantasy favorites currently-reading fi...10033.000000
3829Flipped0.167326to-read favorites currently-reading young-adul...10037.000000
3830Cold Sassy Tree0.167319to-read favorites currently-reading young-adul...10041.000000
3831A Widow for One Year0.167307to-read favorites currently-reading fiction bo...10040.000000
3832Archangel's Consort (Guild Hunter, #3)0.167277to-read fantasy favorites currently-reading fi...10036.000000
3833Vector Prime (Star Wars: The New Jedi Order, #1)0.167220to-read fantasy favorites currently-reading fi...10040.000000
3834The Lord God Made Them All0.167160to-read favorites currently-reading young-adul...10044.000000
3835A Bend in the Road0.167159to-read favorites currently-reading young-adul...10037.000000
3836The Folk of the Faraway Tree (The Faraway Tree...0.167151to-read fantasy favorites currently-reading yo...10032.000000
3837Nothing0.167149to-read favorites currently-reading young-adul...10027.000000
3838Sloppy Firsts (Jessica Darling, #1)0.167016to-read favorites currently-reading young-adul...10037.000000
3839Travels with Charley: In Search of America0.166952to-read favorites currently-reading fiction bo...10041.000000
3840Selected Stories0.166924to-read fantasy favorites currently-reading yo...20019.500000
3841Selected Stories0.116131to-read favorites currently-reading fiction bo...20019.500000
3842Mightier Than the Sword (The Clifton Chronicle...0.166912to-read favorites currently-reading fiction bo...10032.000000
3843War and Remembrance (The Henry Family, #2)0.166903to-read favorites currently-reading fiction bo...10043.000000
3844The Lost Saint (The Dark Divine, #2)0.166739to-read fantasy favorites currently-reading yo...10031.000000
3845Beyond the Highland Mist (Highlander, #1)0.166730to-read fantasy favorites currently-reading fi...10033.000000
3846A Northern Light0.166725to-read favorites currently-reading young-adul...10034.000000
3847A Game of You (The Sandman #5)0.166700to-read fantasy favorites currently-reading fi...10036.000000
3848Forgotten0.166699to-read fantasy favorites currently-reading yo...10030.000000
3849Tatiana and Alexander (The Bronze Horseman, #2)0.166697to-read favorites currently-reading fiction bo...10036.000000
3850Take Me with You0.166607to-read favorites currently-reading fiction bo...10030.000000
3851Wicked (Pretty Little Liars, #5)0.166598to-read favorites currently-reading young-adul...10036.000000
3852Mad About the Boy (Bridget Jones, #3)0.166565to-read favorites currently-reading fiction bo...10034.000000
3853Blood Kiss (Black Dagger Legacy, #1)0.166550to-read fantasy favorites currently-reading fi...10030.000000
3854The Story of Doctor Dolittle (Doctor Dolittle,...0.166519to-read fantasy favorites currently-reading yo...10038.000000
3855Blood Rites (The Grey Wolves, #2)0.166442to-read fantasy favorites currently-reading yo...10029.000000
3856A Constellation of Vital Phenomena0.166376to-read favorites currently-reading fiction bo...10033.000000
3857The Second Sex0.166342to-read favorites currently-reading fiction bo...10026.000000
3858Forever Amber0.166316to-read favorites currently-reading fiction bo...10038.000000
3859Bridge to Terabithia0.166233to-read fantasy favorites currently-reading yo...10038.000000
3860The Princess Diaries (The Princess Diaries, #1)0.166176to-read fantasy favorites currently-reading yo...10037.000000
3861Death With Interruptions0.166154to-read fantasy favorites currently-reading fi...10038.000000
3862S is for Silence (Kinsey Millhone, #19)0.166141to-read favorites currently-reading fiction ow...10027.000000
3863Fallen in Love (Fallen, #3.5)0.166108to-read fantasy favorites currently-reading yo...10034.000000
3864The Doll's House (The Sandman #2)0.166098to-read fantasy favorites currently-reading fi...10037.000000
3865The Keep (Adversary Cycle, #1)0.166070to-read fantasy favorites currently-reading fi...10033.000000
3866Twilight and History0.166053to-read fantasy favorites currently-reading yo...10019.000000
3867Shalimar the Clown0.166026to-read fantasy favorites currently-reading fi...10036.000000
3868Smack0.166025to-read favorites currently-reading young-adul...10028.000000
3869Magic Hour0.166025to-read favorites currently-reading fiction bo...10032.000000
3870Jo's Boys (Little Women, #3)0.166001to-read favorites currently-reading young-adul...10036.000000
3871Heist Society (Heist Society, #1)0.165990to-read favorites currently-reading young-adul...10036.000000
3872The Zombie Room0.165937to-read favorites currently-reading young-adul...10028.000000
3873Naked in Death (In Death, #1)0.165887to-read fantasy favorites currently-reading fi...10036.000000
3874The Sins of the Father (The Clifton Chronicles...0.165846to-read favorites currently-reading fiction bo...10034.000000
3875Falling into Place0.165843to-read fantasy favorites currently-reading yo...10032.000000
3876Between Shades of Gray0.165826to-read favorites currently-reading young-adul...10033.000000
3877Ice Station (Shane Schofield, #1)0.165817to-read fantasy favorites currently-reading fi...10042.000000
3878The Second Summer of the Sisterhood (Sisterhoo...0.165806to-read favorites currently-reading young-adul...10039.000000
3879Who Moved My Cheese?0.165786to-read favorites currently-reading fiction bo...10031.000000
3880Rocket Boys (Coalwood #1)0.165784to-read favorites currently-reading young-adul...10041.000000
3881Circling the Sun0.165781to-read favorites currently-reading fiction bo...10030.000000
3882Friday Night Lights: A Town, a Team, and a Dream0.165776to-read favorites currently-reading young-adul...10034.000000
3883A Scandal in Bohemia (The Adventures of Sherlo...0.165763to-read currently-reading young-adult books-i-...10033.000000
3884A Dog's Journey (A Dog's Purpose, #2)0.165720to-read fantasy favorites currently-reading yo...10039.000000
3885Asylum (Asylum, #1)0.165717to-read fantasy favorites currently-reading yo...10035.000000
3886Mila 180.165690to-read favorites currently-reading fiction bo...10037.000000
3887The Bad Place0.165683to-read fantasy favorites currently-reading fi...10038.000000
3888Sever (The Chemical Garden, #3)0.165640to-read fantasy favorites currently-reading yo...10034.000000
3889Digital Fortress0.165635to-read fantasy favorites currently-reading fi...10039.000000
3890Forever . . .0.165630to-read favorites currently-reading young-adul...10033.000000
3891Trojan Odyssey (Dirk Pitt, #17)0.165605to-read fantasy favorites currently-reading fi...10034.000000
3892Dark Side of the Moon (Dark-Hunter #9, Were-Hu...0.165587to-read fantasy favorites currently-reading fi...10032.000000
3893Dynasty of Evil (Star Wars: Darth Bane, #3)0.165581to-read fantasy favorites currently-reading fi...10039.000000
3894Five Quarters of the Orange0.165567to-read fantasy favorites currently-reading fi...10035.000000
3895Stolen: A Letter to My Captor0.165435to-read favorites currently-reading young-adul...10037.000000
3896The Manchurian Candidate (Movie Tie-In Edition)0.165428to-read favorites currently-reading fiction bo...10033.000000
3897Plain Truth0.165408to-read favorites currently-reading young-adul...10027.000000
3898The Sandman: Endless Nights0.165363to-read fantasy favorites currently-reading yo...10036.000000
3899Jacob (Nightwalkers, #1)0.165353to-read fantasy favorites currently-reading fi...10035.000000
3900The Tell-Tale Heart0.165342to-read fantasy favorites currently-reading fi...10034.000000
3901The Winter's Tale0.165306to-read fantasy favorites currently-reading fi...10036.000000
3902The Immortals Boxed Set (The Immortals, #1-3)0.165211to-read fantasy favorites currently-reading yo...10020.000000
3903No Mercy (Dark-Hunter #18, Were-Hunter, #5)0.165196to-read fantasy favorites currently-reading fi...10029.000000
3904A Case of Need0.165185to-read favorites currently-reading fiction bo...10028.000000
3905A Quick Bite (Argeneau #1)0.165171to-read fantasy favorites currently-reading fi...10030.000000
3906A Little Life0.165159to-read favorites currently-reading fiction bo...10036.000000
3907The Magic Finger (Young Puffin Developing Reader)0.165120to-read fantasy favorites currently-reading yo...10033.000000
3908The Gift of the Magi0.165116to-read fantasy favorites currently-reading yo...10033.000000
3909His Last Bow: 8 Stories0.165087to-read favorites currently-reading fiction bo...10040.000000
3910The Complete Tales and Poems of Winnie-the-Poo...0.165085to-read fantasy favorites currently-reading yo...10036.000000
3911Mythology: Timeless Tales of Gods and Heroes0.165025to-read fantasy favorites currently-reading fi...10041.000000
3912Atlantis Found (Dirk Pitt, #15)0.165002to-read fantasy favorites currently-reading fi...10035.000000
3913Good Wives (Little Women, #1.5)0.164973to-read favorites currently-reading young-adul...10039.000000
3914Sixth Grave on the Edge (Charley Davidson, #6)0.164960to-read fantasy favorites currently-reading fi...10030.000000
3915204 Rosewood Lane (Cedar Cove, #2)0.164901to-read favorites currently-reading fiction bo...10028.000000
3916Purity0.164898to-read favorites currently-reading fiction bo...10035.000000
3917Breaking Point (Tom Clancy's Net Force, #4)0.164895to-read currently-reading fiction books-i-own ...10020.000000
3918It's Not Summer Without You (Summer, #2)0.164852to-read favorites currently-reading young-adul...10037.000000
3919Eve (Eve, #1)0.164818to-read fantasy favorites currently-reading yo...10034.000000
3920The Ice Queen0.164805to-read fantasy favorites currently-reading fi...10037.000000
3921Heart-Shaped Box0.164799to-read fantasy favorites currently-reading fi...10036.000000
3922Os Maias0.164781to-read favorites fiction books-i-own owned fa...10029.000000
3923The Giraffe and the Pelly and Me0.164756to-read fantasy favorites currently-reading yo...10036.000000
3924Just Listen0.164708to-read favorites currently-reading young-adul...10039.000000
3925Who Could That Be at This Hour? (All the Wrong...0.164689to-read fantasy favorites currently-reading yo...10038.000000
3926A Spot of Bother0.164681to-read favorites currently-reading fiction bo...10037.000000
3927Girl at War0.164577to-read favorites currently-reading young-adul...10032.000000
3928Sundays at Tiffany's0.164549to-read fantasy favorites currently-reading yo...10041.000000
3929Sepulchre (Languedoc, #2)0.164548to-read fantasy favorites currently-reading fi...10038.000000
3930True Believer (Jeremy Marsh & Lexie Darnell, #1)0.164516to-read favorites currently-reading young-adul...10036.000000
3931Night Star (The Immortals, #5)0.164485to-read fantasy favorites currently-reading ow...10026.000000
3932The Elephant Tree0.164465to-read favorites currently-reading young-adul...10028.000000
3933The Winds of War (The Henry Family, #1)0.164447to-read favorites currently-reading fiction bo...10036.000000
3934The Haunting of Hill House0.164446to-read fantasy favorites currently-reading fi...10038.000000
3935Cometh the Hour (The Clifton Chronicles, #6)0.164441to-read favorites currently-reading fiction ow...10028.000000
3936The Vision (Fallen Star, #3)0.164402to-read fantasy favorites currently-reading yo...10029.000000
3937The Little Mermaid0.164321to-read fantasy favorites currently-reading yo...20017.500000
3938The Little Mermaid0.099315to-read fantasy favorites currently-reading bo...20017.500000
3939At the Water's Edge0.164260to-read favorites currently-reading fiction bo...10031.000000
3940Lover Mine (Black Dagger Brotherhood, #8)0.164240to-read fantasy favorites currently-reading fi...10036.000000
3941This Side of the Grave (Night Huntress, #5)0.164236to-read fantasy favorites currently-reading fi...10034.000000
3942Fourth of July Creek0.164089to-read favorites currently-reading fiction bo...10031.000000
3943The Glass Lake0.164085to-read favorites currently-reading fiction bo...10036.000000
3944The House We Grew Up In0.164067to-read favorites currently-reading fiction bo...10031.000000
3945Immortality0.164064to-read favorites currently-reading fiction bo...10035.000000
3946My Sweet Audrina (Audrina, #1)0.164063to-read fantasy favorites currently-reading yo...10038.000000
3947Pleasure of a Dark Prince (Immortals After Dar...0.164056to-read fantasy favorites currently-reading fi...10033.000000
3948The Dogs of Babel0.164051to-read fantasy favorites currently-reading fi...10031.000000
3949Wedding Night0.164044to-read favorites currently-reading fiction bo...10033.000000
3950Longbourn0.164012to-read favorites currently-reading fiction bo...10035.000000
3951The Woman Who Stole My Life0.163999to-read favorites currently-reading fiction bo...10031.000000
3952Midnight (The Vampire Diaries: The Return, #3)0.163980to-read fantasy favorites currently-reading yo...10035.000000
3953The Dice Man0.163974to-read fantasy favorites currently-reading fi...10032.000000
3954The Virgin's Lover (The Plantagenet and Tudor ...0.163970to-read favorites currently-reading fiction bo...10038.000000
3955Second Glance0.163932to-read fantasy favorites currently-reading fi...10035.000000
3956The Monkey Wrench Gang (Monkey Wrench Gang, #1)0.163931to-read favorites currently-reading fiction bo...10036.000000
3957Lullabies0.163922to-read favorites currently-reading young-adul...10034.000000
3958Books of Blood: Volumes One to Three (Books of...0.163909to-read fantasy favorites currently-reading fi...10034.000000
3959New York0.163884to-read favorites currently-reading fiction bo...10037.000000
3960The Sign of Four0.163882to-read favorites currently-reading fiction bo...10037.000000
3961Falling Angels0.163834to-read favorites currently-reading fiction bo...10037.000000
3962A Dangerous Fortune0.163811to-read favorites currently-reading fiction bo...10038.000000
3963Impulse (Impulse, #1)0.163786to-read favorites currently-reading young-adul...10035.000000
3964Billions & Billions: Thoughts on Life and Deat...0.163739to-read favorites currently-reading books-i-ow...10024.000000
3965Hawaii0.163729to-read favorites currently-reading fiction bo...10038.000000
3966The Story of B: An Adventure of the Mind and S...0.163589to-read fantasy favorites currently-reading fi...10032.000000
3967Nutshell0.163569to-read favorites currently-reading fiction bo...10031.000000
3968Anne of Ingleside (Anne of Green Gables, #6)0.163567to-read favorites currently-reading young-adul...10037.000000
3969Lover Eternal (Black Dagger Brotherhood, #2)0.163563to-read fantasy favorites currently-reading fi...10036.000000
3970Where the Red Fern Grows0.163560to-read favorites currently-reading young-adul...10035.000000
3971Black House (The Talisman, #2)0.163557to-read fantasy favorites currently-reading fi...10041.000000
3972The Year of Secret Assignments (Ashbury/Brookf...0.163549to-read favorites currently-reading young-adul...10034.000000
3973Kaleidoscope0.163543to-read favorites currently-reading fiction bo...10032.000000
3974The Virgin Blue0.163527to-read fantasy favorites currently-reading fi...10037.000000
3975The Carrie Diaries (The Carrie Diaries, #1)0.163501to-read favorites currently-reading young-adul...10036.000000
3976Intertwined (Intertwined, #1)0.163487to-read fantasy favorites currently-reading yo...10031.000000
3977Vanishing Acts0.163477to-read favorites currently-reading young-adul...10035.000000
3978The Savage Detectives0.163466to-read favorites currently-reading fiction bo...10032.000000
3979Mini Shopaholic (Shopaholic, #6)0.163401to-read favorites currently-reading young-adul...10035.000000
3980The Blood Gospel (The Order of the Sanguines, #1)0.163391to-read fantasy favorites currently-reading fi...10036.000000
3981The Heart is a Lonely Hunter0.163387to-read favorites currently-reading young-adul...10044.000000
3982The Sisterhood of the Traveling Pants (Sisterh...0.163374to-read favorites currently-reading young-adul...10035.000000
3983Much Ado About Nothing0.163338to-read favorites currently-reading fiction bo...10038.000000
3984The Secret Life of Violet Grant0.163337to-read favorites currently-reading fiction bo...10026.000000
3985In Our Time0.163313to-read favorites currently-reading fiction bo...10037.000000
3986Boundless (Unearthly, #3)0.163306to-read fantasy favorites currently-reading yo...10031.000000
3987The Silkworm (Cormoran Strike, #2)0.163305to-read favorites currently-reading fiction bo...10035.000000
3988The Odyssey0.163288to-read fantasy favorites currently-reading fi...10039.000000
3989My Life Next Door0.163262to-read favorites currently-reading young-adul...10036.000000
3990Homage to Catalonia0.163253to-read favorites currently-reading fiction bo...10038.000000
3991Boy, Snow, Bird0.163225to-read fantasy favorites currently-reading fi...10031.000000
3992The Last Letter from Your Lover0.163215to-read favorites currently-reading fiction bo...10036.000000
3993Dinner at the Homesick Restaurant0.163172to-read favorites currently-reading fiction bo...10035.000000
3994Lone Wolf0.163122to-read favorites currently-reading young-adul...10037.000000
3995Wicked Deeds on a Winter's Night (Immortals Af...0.163101to-read fantasy favorites currently-reading fi...10034.000000
3996The Flight of Gemma Hardy0.163081to-read favorites currently-reading young-adul...10032.000000
3997Beaches0.163051to-read favorites currently-reading fiction bo...10027.000000
3998Everyman0.163039to-read favorites currently-reading fiction bo...10032.000000
3999The Hundred-Foot Journey0.163017to-read favorites currently-reading fiction bo...10034.000000
4000The Dead Zone0.162971to-read fantasy favorites currently-reading fi...10040.000000
4001What Katy Did (Carr Family, #1)0.162956to-read favorites currently-reading young-adul...10033.000000
4002Lassie Come-Home0.162950to-read favorites currently-reading young-adul...10029.000000
4003Tell the Wolves I'm Home0.162929to-read favorites currently-reading young-adul...10035.000000
4004This Star Won't Go Out: The Life and Words of ...0.162928to-read favorites currently-reading young-adul...10036.000000
4005Washington Square0.162910to-read favorites currently-reading fiction bo...10033.000000
4006Rule of Two (Star Wars: Darth Bane, #2)0.162894to-read fantasy favorites currently-reading yo...10040.000000
4007Fairest (An Unfortunate Fairy Tale, #2)0.162871to-read fantasy favorites currently-reading yo...10032.000000
4008The Sky Is Everywhere0.162864to-read favorites currently-reading young-adul...10033.000000
4009The Black Circle (The 39 Clues, #5)0.162861to-read fantasy favorites currently-reading yo...10032.000000
4010The Paying Guests0.162842to-read favorites currently-reading fiction bo...10033.000000
4011Kiss of Crimson (Midnight Breed, #2)0.162823to-read fantasy favorites currently-reading fi...10033.000000
4012When You Reach Me0.162782to-read fantasy favorites currently-reading yo...10027.000000
4013One Last Thing Before I Go0.162732to-read favorites currently-reading fiction bo...10031.000000
4014The Violets of March0.162717to-read favorites currently-reading fiction bo...10033.000000
4015Taken by Midnight (Midnight Breed, #8)0.162690to-read fantasy favorites currently-reading fi...10032.000000
4016First Term at Malory Towers (Malory Towers, #1)0.162614to-read favorites currently-reading young-adul...10032.000000
4017Wait Till Helen Comes0.162593to-read fantasy favorites currently-reading yo...10031.000000
4018Kings Rising (Captive Prince, #3)0.162589to-read fantasy favorites fiction series favou...10024.000000
4019The Great Divorce0.162524to-read fantasy favorites currently-reading fi...10042.000000
4020Then We Came to the End0.162501to-read favorites currently-reading fiction bo...10036.000000
4021The Gatecrasher0.162477to-read favorites currently-reading fiction bo...10038.000000
4022The Red Badge of Courage0.162379to-read favorites currently-reading young-adul...10040.000000
4023Beauty's Punishment (Sleeping Beauty, #2)0.162360to-read favorites currently-reading fiction bo...10031.000000
4024Bloody Valentine (Blue Bloods, #5.5)0.162354to-read fantasy favorites currently-reading yo...10029.000000
4025Night Play (Dark-Hunter #5, Were-Hunter #1)0.162277to-read fantasy favorites currently-reading fi...10036.000000
4026Love, Stargirl (Stargirl, #2)0.162207to-read favorites currently-reading young-adul...10036.000000
4027Cell0.162171to-read fantasy favorites currently-reading fi...10044.000000
4028Lover Avenged (Black Dagger Brotherhood, #7)0.162125to-read fantasy favorites currently-reading fi...10035.000000
4029Year of Wonders0.162115to-read favorites currently-reading young-adul...10038.000000
4030The Bazaar of Bad Dreams0.162081to-read fantasy favorites currently-reading fi...10039.000000
4031Songs of the Humpback Whale0.162057to-read favorites currently-reading young-adul...10034.000000
4032The Black Stallion (The Black Stallion, #1)0.162011to-read fantasy favorites currently-reading yo...10031.000000
4033Preludes & Nocturnes (The Sandman #1)0.162009to-read fantasy favorites currently-reading yo...10037.000000
4034And Ladies of the Club0.162008to-read favorites currently-reading fiction bo...10032.000000
4035Just One Drop (The Grey Wolves, #3)0.161989to-read fantasy favorites currently-reading yo...10030.000000
4036Shopaholic and Sister (Shopaholic, #4)0.161953to-read favorites currently-reading young-adul...10037.000000
4037Big Brother0.161948to-read favorites currently-reading fiction bo...10031.000000
4038Forever in Blue: The Fourth Summer of the Sist...0.161936to-read favorites currently-reading young-adul...10036.000000
4039Champions of the Force (Star Wars: The Jedi Ac...0.161857to-read fantasy favorites currently-reading yo...10034.000000
4040Edenbrooke (Edenbrooke, #1)0.161855to-read favorites currently-reading young-adul...10041.000000
4041You Had Me At Hello0.161842to-read favorites currently-reading young-adul...10035.000000
4042Alice's Adventures in Wonderland: A Pop-Up Ada...0.161838to-read fantasy favorites currently-reading yo...10023.000000
4043Firestarter0.161813to-read fantasy favorites currently-reading fi...10041.000000
4044A Good Yarn (Blossom Street, #2)0.161801to-read favorites currently-reading fiction bo...10028.000000
4045Requiem (Delirium, #3)0.161789to-read fantasy favorites currently-reading yo...10035.000000
4046The Long Goodbye (Philip Marlowe, #6)0.161774to-read favorites currently-reading fiction bo...10034.000000
4047One Past Midnight: The Langoliers0.161686to-read fantasy favorites currently-reading fi...10033.000000
4048Ashes of Midnight (Midnight Breed, #6)0.161658to-read fantasy favorites currently-reading fi...10031.000000
4049Twilight and Philosophy: Vampires, Vegetarians...0.161655to-read fantasy favorites currently-reading bo...10017.000000
4050The Prague Cemetery0.161650to-read favorites currently-reading fiction bo...10034.000000
4051The Lady of Shalott0.161636to-read fantasy favorites currently-reading fi...10026.000000
4052Me Talk Pretty One Day0.161631to-read favorites currently-reading fiction bo...10035.000000
4053Possessing the Secret of Joy0.161625to-read favorites currently-reading fiction bo...10025.000000
4054The Summer I Turned Pretty (Summer, #1)0.161624to-read favorites currently-reading young-adul...10037.000000
4055Apathy and Other Small Victories0.161588to-read favorites currently-reading fiction bo...10026.000000
4056Dark Legend (Dark, #8)0.161582to-read fantasy favorites currently-reading fi...10032.000000
4057My Side of the Mountain (Mountain, #1)0.161502to-read favorites currently-reading young-adul...10033.000000
4058I'm with the Band: Confessions of a Groupie0.161493to-read favorites currently-reading books-i-ow...10019.000000
4059Doctors0.161460to-read favorites currently-reading young-adul...10034.000000
4060No Rest for the Wicked (Immortals After Dark #3)0.161452to-read fantasy favorites currently-reading fi...10034.000000
4061Minding Frankie0.161448to-read favorites currently-reading fiction bo...10034.000000
4062Shopaholic Takes Manhattan (Shopaholic, #2)0.161431to-read favorites currently-reading young-adul...10038.000000
4063The Patron Saint of Liars0.161391to-read favorites currently-reading fiction bo...10032.000000
4064Fifty Shades Freed (Fifty Shades, #3)0.161384to-read fantasy favorites currently-reading fi...10038.000000
4065Lies & the Lying Liars Who Tell Them: A Fair &...0.161370to-read favorites currently-reading fiction bo...10020.000000
4066Matterhorn0.161370to-read favorites currently-reading fiction bo...10035.000000
4067We Need to Talk About Kevin0.161363to-read favorites currently-reading fiction bo...10039.000000
4068Lady Windermere's Fan0.161341to-read favorites currently-reading fiction bo...10030.000000
4069The Story of a New Name (The Neapolitan Novels...0.161287to-read favorites currently-reading fiction bo...10032.000000
4070The Guardian0.161283to-read favorites currently-reading young-adul...10038.000000
4071Marked / Betrayed / Chosen / Untamed (House of...0.161273to-read fantasy favorites currently-reading yo...10020.000000
4072Stay Out of the Basement (Goosebumps, #2)0.161264to-read fantasy favorites currently-reading yo...10031.000000
4073Save the Date0.161219to-read favorites currently-reading fiction bo...10026.000000
4074Prodigal Summer0.161178to-read favorites currently-reading fiction bo...10037.000000
4075Sharpe's Rifles (Sharpe, #6)0.161142to-read favorites currently-reading fiction bo...10035.000000
4076The Thorn Birds0.161137to-read favorites currently-reading fiction bo...10036.000000
4077The Importance of Being Earnest and Other Plays0.161127to-read favorites currently-reading fiction bo...10035.000000
4078Amy & Roger's Epic Detour0.161120to-read favorites currently-reading young-adul...10032.000000
4079Deep Kiss of Winter (Includes: Immortals After...0.161067to-read fantasy favorites currently-reading fi...10028.000000
4080Mutant Message Down Under0.161008to-read fantasy favorites currently-reading fi...10034.000000
4081Then He Ate My Boy Entrancers (Confessions of ...0.160999to-read favorites currently-reading young-adul...10036.000000
4082The Ship of Brides0.160975to-read favorites currently-reading fiction bo...10034.000000
4083Halo (Halo, #1)0.160971to-read fantasy favorites currently-reading yo...10034.000000
4084The Hypnotist's Love Story0.160939to-read favorites currently-reading fiction bo...10031.000000
4085The Brothers Lionheart0.160911to-read fantasy favorites currently-reading yo...10035.000000
4086Home Front0.160848to-read favorites currently-reading fiction bo...10032.000000
4087Survivor0.160811to-read favorites currently-reading fiction bo...10038.000000
4088The Tommyknockers0.160793to-read fantasy favorites currently-reading fi...10039.000000
4089Started Early, Took My Dog (Jackson Brodie, #4)0.160781to-read favorites currently-reading fiction bo...10034.000000
4090Pollyanna (Pollyanna, #1)0.160718to-read favorites currently-reading young-adul...10041.000000
4091Anne of Windy Poplars (Anne of Green Gables, #4)0.160708to-read favorites currently-reading young-adul...10038.000000
4092Moloka'i0.160650to-read favorites currently-reading young-adul...10038.000000
4093The Dirt: Confessions of the World's Most Noto...0.160639to-read favorites currently-reading books-i-ow...10021.000000
4094The Boleyn Inheritance (The Plantagenet and Tu...0.160525to-read favorites currently-reading fiction bo...10032.000000
4095Songs of Innocence and of Experience0.160507to-read favorites currently-reading fiction bo...10033.000000
4096Seventh Grave and No Body (Charley Davidson, #7)0.160505to-read fantasy favorites currently-reading fi...10029.000000
4097Shotgun Lovesongs0.160459to-read favorites currently-reading fiction bo...10031.000000
4098The Masque of the Red Death0.160427to-read fantasy favorites currently-reading fi...10036.000000
4099Along for the Ride0.160418to-read favorites currently-reading young-adul...10029.000000
4100The Weird Sisters0.160404to-read fantasy favorites fiction books-i-own ...10032.000000
4101Euphoria0.160392to-read favorites currently-reading fiction bo...10029.000000
4102The Crossing (The Border Trilogy, #2)0.160344to-read favorites currently-reading fiction ow...10035.000000
4103What Was She Thinking? [Notes on a Scandal]0.160340to-read favorites currently-reading fiction bo...10033.000000
4104Map of Bones (Sigma Force, #2)0.160319to-read fantasy favorites currently-reading fi...10039.000000
4105The Ladies' Room0.160314to-read favorites currently-reading fiction bo...10022.000000
4106The White Princess (The Plantagenet and Tudor ...0.160301to-read fantasy favorites currently-reading fi...10031.000000
4107Ashfall (Ashfall, #1)0.160289to-read fantasy favorites currently-reading yo...10027.000000
4108Narcissus and Goldmund0.160278to-read favorites currently-reading fiction bo...10034.000000
4109Fifth Grave Past the Light (Charley Davidson, #5)0.160274to-read fantasy favorites currently-reading fi...10031.000000
4110Dark Guardian (Dark, #9)0.160269to-read fantasy favorites currently-reading fi...10032.000000
4111Darth Vader and Son0.160216to-read fantasy favorites currently-reading yo...10027.000000
4112The Summer Before the War0.160213to-read favorites currently-reading fiction bo...10029.000000
4113The Woman in the Dunes0.160166to-read fantasy favorites currently-reading fi...10035.000000
4114To Build a Fire0.160166to-read favorites currently-reading young-adul...10033.000000
4115Shades of Midnight (Midnight Breed, #7)0.160142to-read fantasy favorites currently-reading fi...10032.000000
4116The English Patient0.160086to-read favorites currently-reading fiction bo...10042.000000
4117Going After Cacciato0.160061to-read fantasy favorites currently-reading fi...10031.000000
4118Sentimental Education0.160035to-read favorites currently-reading fiction bo...10028.000000
4119The Paris Architect0.159963to-read favorites currently-reading fiction bo...10030.000000
4120How to Fall in Love0.159958to-read favorites currently-reading fiction bo...10036.000000
4121The Road Not Taken and Other Poems0.159931to-read favorites currently-reading young-adul...10029.000000
4122The Red Badge of Courage and Selected Short Fi...0.159921to-read fantasy favorites currently-reading yo...10029.000000
4123The Complete Anne of Green Gables Boxed Set (A...0.159909to-read favorites currently-reading owned ya s...10030.000000
4124Heidi0.159900to-read favorites currently-reading young-adul...10038.000000
4125Too Loud a Solitude0.159874to-read favorites currently-reading fiction bo...10031.000000
4126The First Four Years (Little House, #9)0.159726to-read favorites currently-reading young-adul...10030.000000
4127Nostromo0.159706to-read favorites currently-reading fiction bo...10035.000000
4128A Son of the Circus0.159684to-read favorites currently-reading fiction bo...10038.000000
4129The Darkest Pleasure (Lords of the Underworld #3)0.159670to-read fantasy favorites currently-reading fi...10034.000000
4130If I Stay Collection (If I Stay, #1-2)0.159666to-read favorites currently-reading young-adul...10025.000000
4131One Grave at a Time (Night Huntress, #6)0.159654to-read fantasy favorites currently-reading fi...10033.000000
4132Oz: The Wonderful Wizard of Oz0.159646to-read fantasy favorites currently-reading yo...10030.000000
4133The Beekeeper's Apprentice (Mary Russell, #1)0.159635to-read fantasy favorites currently-reading yo...10038.000000
4134Safe Harbour0.159567to-read favorites currently-reading fiction bo...10028.000000
4135Little House in the Big Woods (Little House, #1)0.159558to-read favorites currently-reading young-adul...10034.000000
4136Snow0.159517to-read favorites currently-reading fiction bo...10033.000000
4137The Morganville Vampires, Volume 3 (The Morgan...0.159509to-read fantasy favorites currently-reading yo...10026.000000
4138Bright Side (Bright Side, #1)0.159465to-read favorites currently-reading young-adul...10031.000000
4139Physics of the Future: How Science Will Shape ...0.159454to-read favorites currently-reading fiction bo...10030.000000
4140The Girl with the Dragon Tattoo (Millennium, #1)0.159416to-read favorites currently-reading fiction bo...10045.000000
4141Pale Blue Dot: A Vision of the Human Future in...0.159406to-read favorites currently-reading fiction bo...10028.000000
4142Confess0.159376to-read favorites currently-reading young-adul...10037.000000
4143The Distant Hours0.159366to-read favorites currently-reading fiction bo...10037.000000
4144I Wrote This For You0.159363to-read favorites currently-reading young-adul...10035.000000
4145The Invention of Hugo Cabret0.159346to-read fantasy favorites currently-reading yo...10033.000000
4146Cold Mountain0.159338to-read favorites currently-reading fiction bo...10041.000000
4147Fiddler on the Roof0.159285to-read favorites currently-reading fiction bo...10014.000000
4148Portnoy's Complaint0.159249to-read favorites currently-reading fiction bo...10033.000000
4149Once (Eve, #2)0.159224to-read fantasy favorites currently-reading yo...10034.000000
4150Skipping Christmas0.159172to-read favorites currently-reading fiction bo...10034.000000
4151Still Life with Bread Crumbs0.159145to-read favorites currently-reading fiction bo...10028.000000
4152Never Have I Ever (The Lying Game, #2)0.159140to-read fantasy favorites currently-reading yo...10033.000000
4153Story of a Girl0.159112to-read favorites currently-reading young-adul...10030.000000
4154The Lover's Dictionary0.159101to-read favorites currently-reading young-adul...10034.000000
4155The Chocolate War (Chocolate War, #1)0.159099to-read favorites currently-reading young-adul...10033.000000
4156The Tell-Tale Heart and Other Writings0.159071to-read fantasy favorites young-adult fiction ...10029.000000
4157The House at Pooh Corner (Winnie-the-Pooh, #2)0.159039to-read fantasy favorites currently-reading yo...10036.000000
4158A Work in Progress0.159036to-read favorites currently-reading young-adul...10032.000000
4159Requiem (Providence, #2)0.158992to-read fantasy favorites currently-reading yo...10031.000000
4160Something Borrowed (Darcy & Rachel, #1)0.158990to-read favorites currently-reading young-adul...10038.000000
4161Bloodlust (The Vampire Diaries: Stefan's Diari...0.158983to-read fantasy favorites currently-reading yo...10031.000000
4162The Red House0.158971to-read favorites currently-reading fiction ow...10033.000000
4163Physics of the Impossible: A Scientific Explor...0.158967to-read favorites currently-reading fiction bo...10028.000000
4164The Memory Keeper's Daughter0.158956to-read favorites currently-reading young-adul...10038.000000
4165Wideacre (The Wideacre Trilogy, #1)0.158930to-read fantasy favorites currently-reading fi...10036.000000
4166Fire and Ice (Warriors, #2)0.158928to-read fantasy currently-reading young-adult ...10031.000000
4167Rumour Has It0.158915to-read favorites currently-reading fiction bo...10032.000000
4168Goddess Interrupted (Goddess Test, #2)0.158887to-read fantasy favorites currently-reading yo...10032.000000
4169Starlight (Warriors: The New Prophecy, #4)0.158875to-read fantasy favorites currently-reading yo...10033.000000
4170Two By Two0.158870to-read favorites currently-reading fiction bo...10032.000000
4171Emily of New Moon (Emily, #1)0.158855to-read favorites currently-reading young-adul...10035.000000
4172Girls in Pants: The Third Summer of the Sister...0.158832to-read favorites currently-reading young-adul...10036.000000
4173Island of the Blue Dolphins (Island of the Blu...0.158805to-read fantasy favorites currently-reading yo...10036.000000
4174War Brides0.158790to-read favorites currently-reading fiction bo...10032.000000
4175Fantastic Mr. Fox0.158707to-read fantasy favorites currently-reading yo...10037.000000
4176Unbelievable (Pretty Little Liars, #4)0.158680to-read favorites currently-reading young-adul...10035.000000
4177The Last Anniversary0.158641to-read favorites currently-reading fiction bo...10030.000000
4178Hell House0.158611to-read fantasy favorites currently-reading fi...10040.000000
4179When Nietzsche Wept0.158484to-read favorites currently-reading fiction bo...10033.000000
4180Inherent Vice0.158467to-read favorites currently-reading fiction bo...10037.000000
4181Hollywood0.158446to-read favorites currently-reading fiction bo...10031.000000
4182Shopaholic to the Rescue (Shopaholic, #8)0.158434to-read favorites fiction books-i-own owned se...10030.000000
4183Père Goriot0.158405to-read favorites currently-reading fiction bo...10030.000000
4184Salem Falls0.158385to-read favorites currently-reading young-adul...10036.000000
4185Autobiography of a Face0.158335to-read favorites currently-reading fiction bo...10019.000000
4186The Complete Clive Barker's The Great And Secr...0.158333to-read fantasy favorites currently-reading fi...10022.000000
4187My Life with the Walter Boys (My Life with the...0.158320to-read favorites currently-reading young-adul...10032.000000
4188Let It Snow: Three Holiday Romances0.158291to-read favorites fiction owned favourites own...10031.000000
4189The House on Mango Street0.158278to-read favorites currently-reading young-adul...10032.000000
4190The Glassblower0.158271to-read fantasy favorites currently-reading yo...10031.000000
4191If Tomorrow Comes (Tracy Whitney Series, #1)0.158270to-read favorites currently-reading young-adul...10043.000000
4192Season of Mists (The Sandman #4)0.158254to-read fantasy favorites currently-reading fi...10037.000000
4193Deep Six (Dirk Pitt, #7)0.158242to-read favorites currently-reading fiction bo...10035.000000
4194Maximum Security (Cherub, #3)0.158185to-read fantasy favorites currently-reading yo...10034.000000
4195The Highlander's Touch (Highlander, #3)0.158165to-read fantasy favorites currently-reading fi...10033.000000
4196Big Girl Panties0.158106to-read favorites currently-reading fiction bo...10029.000000
4197The Complete Short Stories0.158100to-read favorites currently-reading fiction bo...10038.000000
4198Shopaholic & Baby (Shopaholic, #5)0.158074to-read favorites currently-reading young-adul...10038.000000
4199Uncommon Criminals (Heist Society, #2)0.158032to-read favorites currently-reading young-adul...10035.000000
4200Dreamland0.158030to-read favorites currently-reading young-adul...10034.000000
4201The Gnostic Gospels0.157993to-read favorites currently-reading fiction bo...10020.000000
4202Lover Revealed (Black Dagger Brotherhood, #4)0.157988to-read fantasy favorites currently-reading fi...10034.000000
4203Finally (Willow Falls, #2)0.157982to-read fantasy favorites currently-reading yo...10031.000000
4204The Signature of All Things0.157971to-read favorites currently-reading fiction bo...10032.000000
4205The Kindly Ones (The Sandman #9)0.157969to-read fantasy favorites currently-reading yo...10036.000000
4206The Darkest Passion (Lords of the Underworld #5)0.157882to-read fantasy favorites currently-reading fi...10033.000000
4207Lover Awakened (Black Dagger Brotherhood, #3)0.157874to-read fantasy favorites currently-reading fi...10035.000000
4208Slowness0.157806to-read favorites currently-reading fiction bo...10029.000000
4209The River Why0.157802to-read favorites currently-reading fiction bo...10035.000000
4210Midnight0.157794to-read fantasy favorites currently-reading fi...10038.000000
4211When We Were Very Young (Winnie-the-Pooh, #3)0.157761to-read fantasy favorites currently-reading yo...10034.000000
4212Perfect (Pretty Little Liars, #3)0.157702to-read favorites currently-reading young-adul...10035.000000
4213The Sight (Warriors: Power of Three, #1)0.157696to-read fantasy favorites currently-reading yo...10031.000000
4214The Imperfectionists0.157662to-read favorites currently-reading fiction bo...10034.000000
4215A Beautiful Dark (A Beautiful Dark, #1)0.157657to-read fantasy favorites currently-reading yo...10028.000000
4216Remember Me?0.157649to-read favorites currently-reading young-adul...10038.000000
4217What She Left Behind0.157628to-read favorites currently-reading young-adul...10029.000000
4218Stone Mattress: Nine Tales0.157597to-read fantasy favorites currently-reading fi...10031.000000
4219Mornings in Jenin0.157594to-read favorites currently-reading fiction bo...10032.000000
4220Sweet Tooth0.157588to-read favorites currently-reading fiction bo...10033.000000
4221Back When We Were Grownups0.157587to-read favorites currently-reading fiction bo...10035.000000
4222The Lady and the Unicorn0.157560to-read fantasy favorites currently-reading fi...10036.000000
4223Outpost (Razorland, #2)0.157559to-read fantasy favorites currently-reading yo...10033.000000
4224A Bear Called Paddington (Paddington, #1)0.157535to-read fantasy favorites currently-reading yo...10033.000000
4225Where the Heart Is0.157521to-read favorites currently-reading young-adul...10036.000000
4226A Tale Dark & Grimm (A Tale Dark & Grimm, #1)0.157516to-read fantasy favorites currently-reading yo...10028.000000
4227We Were Liars0.157507to-read fiction owned ya favourites owned-book...10026.000000
4228Five on a Treasure Island (Famous Five, #1)0.157500to-read favorites currently-reading young-adul...10034.000000
4229Leviathan0.157471to-read favorites currently-reading fiction bo...20020.000000
4230Leviathan0.121165to-read favorites currently-reading fiction bo...20020.000000
4231The Penderwicks on Gardam Street (The Penderwi...0.157446to-read favorites currently-reading young-adul...10034.000000
4232Tai-Pan (Asian Saga, #2)0.157432to-read favorites currently-reading fiction bo...10041.000000
4233These Is My Words: The Diary of Sarah Agnes Pr...0.157399to-read favorites currently-reading young-adul...10036.000000
4234Three Wishes0.157395to-read favorites currently-reading fiction bo...10028.000000
4235Ugly Love0.157357to-read favorites currently-reading young-adul...10037.000000
4236Tick Tock0.157308to-read fantasy favorites currently-reading fi...10038.000000
4237The Incredible Journey0.157290to-read fantasy favorites currently-reading yo...10030.000000
4238The Fall0.157289to-read favorites currently-reading fiction bo...10039.000000
4239The Edible Woman0.157272to-read favorites currently-reading fiction bo...10039.000000
4240Five Run Away Together (Famous Five, #3)0.157210to-read favorites currently-reading young-adul...10033.000000
4241Behind the Scenes at the Museum0.157166to-read favorites fiction books-i-own owned fa...10038.000000
4242Under the Wide and Starry Sky0.157151to-read favorites currently-reading fiction bo...10030.000000
4243The Night Sister0.157139to-read fantasy favorites currently-reading fi...10023.000000
4244Ariel0.157130to-read favorites currently-reading fiction bo...10034.000000
4245White Girl Problems0.157129to-read favorites currently-reading fiction bo...10034.000000
4246Us0.157077to-read favorites currently-reading fiction bo...10035.000000
4247The Magic of Reality: How We Know What's Reall...0.157048to-read favorites currently-reading young-adul...10030.000000
4248Firestar's Quest (Warriors Super Edition, #1)0.157001to-read fantasy favorites currently-reading yo...10033.000000
4249Who Do You Love0.156986to-read favorites currently-reading fiction bo...10030.000000
4250Angelfire (Angelfire, #1)0.156983to-read fantasy favorites currently-reading yo...10030.000000
4251The Enchantress of Florence0.156958to-read fantasy favorites currently-reading fi...10038.000000
4252The Beast (Black Dagger Brotherhood, #14)0.156888to-read fantasy favorites currently-reading fi...10028.000000
4253The Borrowers (The Borrowers, #1)0.156882to-read fantasy favorites currently-reading yo...10031.000000
4254Nancy Drew: #1-640.156879to-read favorites currently-reading young-adul...10024.000000
4255Don't Die, My Love0.156871to-read favorites currently-reading young-adul...10029.000000
4256The Darkest Whisper (Lords of the Underworld #4)0.156853to-read fantasy favorites currently-reading fi...10032.000000
4257The Truth According to Us0.156850to-read favorites currently-reading young-adul...10028.000000
4258Downtown Owl0.156829to-read favorites currently-reading fiction bo...10032.000000
4259Someone Like You0.156809to-read favorites currently-reading young-adul...10037.000000
4260Vespers Rising (The 39 Clues, #11)0.156794to-read fantasy favorites currently-reading yo...10031.000000
4261Princess in Waiting (The Princess Diaries, #4)0.156770to-read favorites currently-reading young-adul...10036.000000
4262Midnight Awakening (Midnight Breed, #3)0.156761to-read fantasy favorites currently-reading fi...10034.000000
4263The Six Sacred Stones (Jack West Jr, #2)0.156753to-read fantasy favorites currently-reading fi...10038.000000
4264The Things We Do for Love0.156717to-read favorites currently-reading fiction bo...10032.000000
4265Leaving Paradise (Leaving Paradise, #1)0.156673to-read favorites currently-reading young-adul...10036.000000
4266The Lying Game (The Lying Game, #1)0.156629to-read fantasy favorites currently-reading yo...10033.000000
4267This Is What Happy Looks Like (This is What Ha...0.156624to-read favorites currently-reading young-adul...10034.000000
4268Just So Stories0.156604to-read fantasy favorites currently-reading yo...10038.000000
4269The Perfume Collector0.156586to-read favorites currently-reading fiction bo...10029.000000
4270Just One Year (Just One Day, #2)0.156584to-read favorites currently-reading young-adul...10033.000000
4271Twenty Wishes (Blossom Street, #5)0.156571to-read favorites currently-reading fiction bo...10032.000000
4272Keeping Faith0.156560to-read favorites currently-reading young-adul...10037.000000
4273The Last Summer (of You and Me)0.156484to-read favorites currently-reading young-adul...10037.000000
4274Death by Black Hole - And Other Cosmic Quandaries0.156465to-read favorites currently-reading books-i-ow...10027.000000
4275Living History0.156463to-read favorites currently-reading books-i-ow...10025.000000
4276Veil of Midnight (Midnight Breed, #5)0.156438to-read fantasy favorites currently-reading fi...10033.000000
4277Winter Garden0.156414to-read favorites currently-reading fiction bo...10034.000000
4278While My Sister Sleeps0.156407to-read favorites currently-reading fiction bo...10029.000000
4279The Sword Thief (The 39 Clues, #3)0.156396to-read fantasy favorites currently-reading yo...10031.000000
4280Ronia, the Robber's Daughter0.156376to-read fantasy favorites currently-reading yo...10030.000000
4281Centennial0.156361to-read favorites currently-reading fiction bo...10039.000000
4282Up from the Grave (Night Huntress, #7)0.156335to-read fantasy favorites currently-reading fi...10032.000000
4283Killer (Pretty Little Liars, #6)0.156309to-read favorites currently-reading young-adul...10034.000000
4284Reliquary (Pendergast, #2)0.156308to-read fantasy favorites currently-reading fi...10034.000000
4285Z: A Novel of Zelda Fitzgerald0.156251to-read favorites currently-reading fiction bo...10034.000000
4286Midnight (Warriors: The New Prophecy, #1)0.156192to-read fantasy favorites currently-reading yo...10033.000000
4287The Silent Sister (Riley MacPherson, #1)0.156077to-read favorites currently-reading fiction bo...10030.000000
4288Miles to Go (The Walk, #2)0.155993to-read favorites currently-reading fiction bo...10029.000000
4289Maybe Not (Maybe, #1.5)0.155982to-read favorites currently-reading young-adul...10032.000000
4290Fallout (Crank, #3)0.155976to-read favorites currently-reading young-adul...10032.000000
4291The Medusa Plot (39 Clues: Cahills vs. Vespers...0.155953to-read fantasy favorites currently-reading yo...10030.000000
4292Beautiful Disaster (Beautiful, #1)0.155931to-read favorites currently-reading young-adul...10038.000000
4293The Given Day (Coughlin #1)0.155927to-read favorites currently-reading fiction bo...10035.000000
4294Eternal Rider (Lords of Deliverance, #1, Demon...0.155878to-read fantasy favorites currently-reading fi...10034.000000
4295Orphan Number Eight0.155877to-read favorites currently-reading fiction bo...10032.000000
4296On the Island (On the Island, #1)0.155867to-read favorites currently-reading young-adul...10034.000000
4297Whistling Past the Graveyard0.155858to-read favorites currently-reading young-adul...10031.000000
4298My Brilliant Friend (The Neapolitan Novels #1)0.155841to-read favorites currently-reading fiction bo...10032.000000
429944 Scotland Street (44 Scotland Street, #1)0.155770to-read favorites currently-reading fiction bo...10036.000000
4300Light on Snow0.155741to-read favorites currently-reading fiction bo...10032.000000
4301The Wonderful Story of Henry Sugar and Six More0.155675to-read fantasy favorites currently-reading fi...10029.000000
4302When We Were Orphans0.155668to-read favorites currently-reading fiction bo...10039.000000
4303The Exorcist0.155616to-read fantasy favorites currently-reading fi...10041.000000
4304Tricks (Tricks, #1)0.155542to-read favorites currently-reading young-adul...10034.000000
4305The Sense of an Ending0.155498to-read favorites currently-reading fiction bo...10033.000000
4306The Cobra Event0.155493to-read favorites currently-reading fiction bo...10031.000000
4307Someday, Someday, Maybe0.155481to-read favorites currently-reading young-adul...10034.000000
4308The Darkest Secret (Lords of the Underworld #7)0.155475to-read fantasy favorites currently-reading fi...10033.000000
4309The Story of Beautiful Girl0.155451to-read favorites currently-reading young-adul...10034.000000
4310Stupeur et tremblements0.155401to-read favorites currently-reading fiction bo...10025.000000
4311Sisterland0.155398to-read fantasy favorites currently-reading fi...10029.000000
4312Once We Were Brothers0.155387to-read favorites currently-reading fiction bo...10033.000000
4313Dark Needs at Night's Edge (Immortals After Da...0.155330to-read fantasy favorites currently-reading fi...10034.000000
4314Princess in Love (The Princess Diaries, #3)0.155326to-read favorites currently-reading young-adul...10036.000000
4315Flawless (Pretty Little Liars, #2)0.155296to-read favorites currently-reading young-adul...10035.000000
4316I Never Promised You a Rose Garden0.155262to-read favorites currently-reading young-adul...10037.000000
4317Christy0.155257to-read favorites currently-reading young-adul...10037.000000
4318The Friday Night Knitting Club (Friday Night K...0.155239to-read favorites currently-reading fiction bo...10036.000000
4319A Man Called Ove0.155216to-read favorites fiction books-i-own owned fa...10033.000000
4320Lunar Park0.155205to-read fantasy favorites currently-reading fi...10032.000000
4321Serena0.155159to-read favorites currently-reading fiction bo...10032.000000
4322Wreck This Journal0.155086to-read favorites currently-reading young-adul...10031.000000
4323Hannibal (Hannibal Lecter, #3)0.155077to-read fantasy favorites currently-reading fi...10040.000000
4324Needful Things0.155076to-read fantasy favorites currently-reading fi...10042.000000
4325Farewell, My Lovely (Philip Marlowe, #2)0.155017to-read favorites currently-reading fiction bo...10032.000000
4326Shall We Tell the President? (Kane & Abel, #3)0.155006to-read favorites currently-reading fiction bo...10037.000000
4327Royal Blood (Vampire Kisses, #6)0.155002to-read fantasy favorites currently-reading yo...10032.000000
4328The Fourth Estate0.154964to-read favorites currently-reading fiction bo...10030.000000
4329The Man Who Mistook His Wife for a Hat and Oth...0.154914to-read favorites currently-reading fiction bo...10037.000000
4330The Lost Symbol (Robert Langdon, #3)0.154910to-read fantasy favorites currently-reading fi...10039.000000
4331Dance of Death (Pendergast, #6; Diogenes, #2)0.154882to-read fantasy favorites currently-reading fi...10037.000000
4332The Cellar (The Cellar, #1)0.154880to-read favorites currently-reading young-adul...10033.000000
4333The Emperor's Children0.154878to-read favorites currently-reading fiction bo...10031.000000
4334On the Jellicoe Road0.154816to-read favorites currently-reading young-adul...10034.000000
4335The Return of Sherlock Holmes0.154781to-read favorites currently-reading fiction ow...10039.000000
4336The House at Tyneford0.154779to-read favorites currently-reading fiction bo...10035.000000
4337Picture Perfect0.154727to-read favorites currently-reading fiction bo...10035.000000
4338Cosmopolis0.154720to-read favorites currently-reading fiction bo...10032.000000
4339I'll Give You the Sun0.154696to-read favorites currently-reading young-adul...10034.000000
4340Nimona0.154620to-read fantasy favorites currently-reading yo...10025.000000
4341Trail of Broken Wings0.154596to-read favorites currently-reading fiction bo...10026.000000
4342The Bronze Horseman (The Bronze Horseman, #1)0.154583to-read favorites currently-reading young-adul...10039.000000
4343Billy Lynn's Long Halftime Walk0.154562to-read favorites currently-reading fiction bo...10031.000000
4344Titus Andronicus0.154529to-read favorites currently-reading fiction bo...10031.000000
4345The Disreputable History of Frankie Landau-Banks0.154528to-read favorites currently-reading young-adul...10033.000000
4346Heartless (Pretty Little Liars, #7)0.154513to-read favorites currently-reading young-adul...10034.000000
4347Best Friends for Never (The Clique, #2)0.154510to-read favorites currently-reading young-adul...10026.000000
4348The Boston Girl0.154503to-read favorites currently-reading fiction bo...10027.000000
4349Never Never (Never Never, #1)0.154458to-read fantasy favorites currently-reading yo...10030.000000
4350The Wheel of Darkness (Pendergast, #8)0.154455to-read fantasy favorites currently-reading fi...10036.000000
4351Pandemonium (Delirium, #2)0.154411to-read fantasy currently-reading young-adult ...10032.000000
4352The Rescue0.154388to-read favorites currently-reading young-adul...10038.000000
4353Afterwards0.154387to-read fantasy favorites currently-reading fi...10033.000000
4354Desperation0.154383to-read fantasy favorites currently-reading fi...10039.000000
4355The Almost Moon0.154374to-read favorites currently-reading young-adul...10038.000000
4356The Grand Design0.154353to-read favorites currently-reading fiction bo...10030.000000
4357Humans of New York: Stories0.154344to-read favorites currently-reading young-adul...10028.000000
4358Sugar and Spice (L.A. Candy, #3)0.154263to-read favorites currently-reading young-adul...10030.000000
4359Identical0.154256to-read favorites currently-reading young-adul...10033.000000
4360Going Solo0.154230to-read fantasy favorites currently-reading yo...10038.000000
4361The Waste Land and Other Poems0.154180to-read favorites currently-reading fiction bo...10036.000000
4362In the Unlikely Event0.154126to-read favorites currently-reading young-adul...10030.000000
4363Thank You for Smoking0.154095to-read favorites currently-reading fiction bo...10035.000000
4364Belzhar0.154060to-read fantasy favorites currently-reading yo...10028.000000
4365Out of the Easy0.154039to-read favorites currently-reading young-adul...10034.000000
4366The Complete Poems of Emily Dickinson0.154009to-read favorites currently-reading fiction bo...10034.000000
4367Harry, a History: The True Story of a Boy Wiza...0.153988to-read fantasy favorites currently-reading yo...10036.000000
4368The Little Paris Bookshop0.153957to-read favorites currently-reading fiction bo...10032.000000
4369Er ist wieder da0.153955to-read fantasy favorites fiction books-i-own ...10038.000000
4370The Witch Of Portobello0.153948to-read fantasy favorites currently-reading fi...10038.000000
4371The Gates of Rome (Emperor, #1)0.153918to-read fantasy favorites currently-reading fi...10041.000000
4372Wishin' and Hopin'0.153855to-read favorites currently-reading young-adul...10032.000000
4373Don't Go0.153844to-read favorites currently-reading fiction bo...10031.000000
4374The Obituary Writer0.153840to-read favorites currently-reading fiction bo...10024.000000
4375The Charterhouse of Parma0.153826to-read favorites currently-reading fiction bo...10024.000000
4376Blink0.153798to-read fantasy favorites currently-reading yo...10033.000000
4377House Rules0.153757to-read favorites currently-reading young-adul...10036.000000
4378The Secret Life of CeeCee Wilkes0.153745to-read favorites currently-reading fiction bo...10031.000000
4379The Queen's Fool (The Plantagenet and Tudor No...0.153742to-read favorites currently-reading fiction bo...10041.000000
4380Psycho0.153723to-read favorites currently-reading fiction bo...10036.000000
4381The Pleasure of My Company0.153716to-read favorites currently-reading fiction bo...10034.000000
4382Family Matters0.153683to-read favorites currently-reading fiction bo...10034.000000
4383Please Kill Me: The Uncensored Oral History of...0.153670to-read favorites currently-reading books-i-ow...10020.000000
4384The Feast of the Goat0.153656to-read favorites currently-reading fiction bo...10029.000000
4385Lover Enshrined (Black Dagger Brotherhood, #6)0.153637to-read fantasy favorites currently-reading fi...10034.000000
4386Scarlet (Scarlet, #1)0.153615to-read fantasy favorites currently-reading yo...10031.000000
4387The Gun Seller0.153584to-read favorites currently-reading fiction bo...10038.000000
4388Reasons to Stay Alive0.153496to-read favorites currently-reading fiction bo...10030.000000
4389Adultery0.153494to-read favorites currently-reading fiction bo...10034.000000
4390Doctor No (James Bond, #6)0.153480to-read favorites currently-reading fiction bo...10041.000000
4391Tales of the City (Tales of the City, #1)0.153451to-read favorites currently-reading fiction ow...10038.000000
4392What Alice Forgot0.153441to-read favorites currently-reading fiction bo...10029.000000
4393Knocked Out by My Nunga-Nungas (Confessions of...0.153420to-read favorites currently-reading young-adul...10034.000000
4394The Secret of the Old Clock (Nancy Drew, #1)0.153414to-read favorites currently-reading young-adul...10034.000000
4395Winter in Madrid0.153406to-read favorites currently-reading fiction bo...10035.000000
4396Ahab's Wife, or The Star-Gazer0.153398to-read favorites currently-reading fiction bo...10035.000000
4397Fly Away (Firefly Lane, #2)0.153394to-read favorites currently-reading fiction bo...10033.000000
4398Twilight (Warriors: The New Prophecy, #5)0.153333to-read fantasy favorites currently-reading yo...10033.000000
4399Wintergirls0.153283to-read fantasy favorites currently-reading yo...10031.000000
4400Emily Climbs (Emily, #2)0.153216to-read favorites currently-reading young-adul...10035.000000
4401All My Sons0.153215to-read favorites currently-reading fiction bo...10036.000000
4402Shopaholic Ties the Knot (Shopaholic, #3)0.153204to-read favorites currently-reading young-adul...10038.000000
4403Last Train to Istanbul0.153199to-read favorites currently-reading fiction bo...10031.000000
4404Dark River (Warriors: Power of Three, #2)0.153139to-read fantasy favorites currently-reading yo...10031.000000
4405Worlds' End (The Sandman #8)0.153135to-read fantasy favorites currently-reading fi...10037.000000
4406I Heart New York (I Heart, #1)0.153122to-read favorites currently-reading young-adul...10034.000000
4407The Complete Phantom of the Opera0.153082to-read fantasy favorites currently-reading fi...10023.000000
4408Distant Shores0.153064to-read favorites currently-reading fiction bo...10030.000000
4409The Adventures of Augie March0.152986to-read favorites currently-reading fiction bo...10031.000000
4410Eden (Providence, #3)0.152970to-read fantasy favorites currently-reading yo...10028.000000
4411Circle of Friends0.152954to-read favorites currently-reading fiction bo...10036.000000
4412The Secret of the Nagas (Shiva Trilogy #2)0.152883to-read fantasy favorites currently-reading yo...10036.000000
4413The Forgetting Time0.152864to-read fantasy favorites currently-reading fi...10027.000000
4414Belinda0.152863to-read fantasy favorites currently-reading fi...10037.000000
4415The Smoke Jumper0.152854to-read favorites currently-reading fiction bo...10035.000000
4416Pudd'nhead Wilson0.152853to-read favorites currently-reading young-adul...10032.000000
4417Burn for Burn (Burn for Burn, #1)0.152848fantasy favorites young-adult fiction books-i-...10028.000000
4418The Invention of Morel0.152818to-read fantasy favorites currently-reading fi...10029.000000
4419The All-Girl Filling Station's Last Reunion0.152751to-read favorites currently-reading fiction bo...10029.000000
4420All Things Wise and Wonderful0.152744to-read favorites currently-reading young-adul...10043.000000
4421Skippy Dies0.152739to-read favorites currently-reading young-adul...10038.000000
4422H.M.S. Surprise0.152711to-read favorites currently-reading fiction bo...10034.000000
4423State of Wonder0.152649to-read favorites currently-reading fiction bo...10035.000000
4424Brooklyn0.152648to-read favorites currently-reading fiction bo...10035.000000
4425The Girl on the Train0.152645to-read favorites fiction books-i-own owned fa...10033.000000
4426City on Fire0.152590to-read favorites currently-reading fiction bo...10033.000000
4427The Whistling Season0.152589to-read favorites currently-reading young-adul...10035.000000
4428More Tales of the City (Tales of the City, #2)0.152572to-read favorites currently-reading fiction bo...10035.000000
4429The Devil Wears Prada (The Devil Wears Prada, #1)0.152552to-read favorites currently-reading young-adul...10041.000000
4430Back on Blossom Street (Blossom Street, #4)0.152547to-read favorites currently-reading fiction bo...10030.000000
4431Ordinary Grace0.152521to-read favorites currently-reading young-adul...10028.000000
4432Covet (Fallen Angels, #1)0.152509to-read fantasy favorites currently-reading fi...10030.000000
4433Snow Falling on Cedars0.152492to-read favorites currently-reading fiction bo...10035.000000
4434I Know This Much Is True0.152472to-read favorites currently-reading fiction bo...10039.000000
4435Love Bites (Vampire Kisses, #7)0.152459to-read fantasy favorites currently-reading yo...10031.000000
4436A Suitable Boy (A Suitable Boy, #1)0.152446to-read favorites currently-reading fiction bo...10035.000000
4437Love Letters to the Dead0.152439to-read favorites young-adult fiction books-i-...10032.000000
4438A Hidden Fire (Elemental Mysteries, #1)0.152431to-read fantasy favorites currently-reading yo...10032.000000
4439Pleasure Unbound (Demonica, #1)0.152369to-read fantasy favorites currently-reading fi...10031.000000
4440The Keep0.152359to-read fantasy favorites currently-reading fi...10032.000000
4441Calling Me Home0.152350to-read favorites currently-reading fiction bo...10029.000000
4442Pigs in Heaven0.152318to-read favorites currently-reading young-adul...10033.000000
4443The Darkest Night (Lords of the Underworld #1)0.152313to-read fantasy favorites currently-reading fi...10032.000000
4444Winter Street (Winter, #1)0.152286to-read favorites currently-reading fiction bo...10025.000000
4445The Wedding Girl0.152277to-read favorites currently-reading fiction bo...10033.000000
444677 Shadow Street (Pendleton, #1)0.152275to-read fantasy favorites currently-reading fi...10038.000000
4447Everything, Everything0.152198to-read favorites currently-reading young-adul...10032.000000
4448My Friend Flicka (Flicka, #1)0.152152to-read favorites currently-reading young-adul...10029.000000
4449Necessary Lies (Necessary Lies, #1)0.152125to-read favorites currently-reading fiction bo...10027.000000
4450The Complete Stories0.152049to-read fantasy favorites currently-reading fi...20019.500000
4451The Complete Stories0.120879to-read favorites currently-reading fiction bo...20019.500000
4452The Girl Who Kicked the Hornet's Nest (Millenn...0.152036to-read favorites currently-reading fiction bo...10040.000000
4453Little Lord Fauntleroy0.152020to-read favorites currently-reading young-adul...10036.000000
4454The Darkest Lie (Lords of the Underworld #6)0.151996to-read fantasy favorites currently-reading fi...10034.000000
4455The Taming of the Queen (The Plantagenet and T...0.151993to-read favorites currently-reading fiction bo...10029.000000
4456Lilac Girls0.151884to-read favorites currently-reading fiction bo...10026.000000
4457Ask the Dust (Arturo Bandini, #3)0.151884to-read favorites currently-reading fiction bo...10036.000000
4458The Fourth Hand0.151878to-read favorites currently-reading fiction bo...10032.000000
4459Temple0.151864to-read fantasy favorites currently-reading fi...10038.000000
4460Dawn (Warriors: The New Prophecy, #3)0.151812to-read fantasy favorites currently-reading yo...10034.000000
4461Richard II0.151808to-read favorites currently-reading fiction ow...10032.000000
4462Secrets of a Charmed Life0.151780to-read favorites currently-reading fiction bo...10025.000000
4463The Cask of Amontillado0.151776to-read fantasy favorites currently-reading yo...10033.000000
4464Life and Other Near-Death Experiences0.151767to-read favorites currently-reading fiction bo...10026.000000
4465Midnight's Children0.151766to-read fantasy favorites currently-reading fi...10039.000000
4466Lover Unbound (Black Dagger Brotherhood, #5)0.151726to-read fantasy favorites currently-reading fi...10033.000000
4467When Christ and His Saints Slept (Henry II & ...0.151691to-read fantasy favorites currently-reading fi...10035.000000
4468On Chesil Beach0.151688to-read favorites currently-reading fiction bo...10035.000000
4469Fourth Grave Beneath My Feet (Charley Davidson...0.151676to-read fantasy favorites currently-reading fi...10033.000000
4470Dancing in My Nuddy-Pants (Confessions of Geor...0.151675to-read favorites currently-reading young-adul...10031.000000
4471Dark Desires After Dusk (Immortals After Dark #6)0.151661to-read fantasy favorites currently-reading fi...10031.000000
4472Lila (Gilead, #3)0.151647to-read favorites fiction books-i-own owned se...10031.000000
4473The Shack0.151629to-read fantasy favorites currently-reading fi...10039.000000
4474The Wedding Dress0.151611to-read favorites currently-reading fiction bo...10028.000000
4475North of Beautiful0.151549to-read favorites currently-reading young-adul...10033.000000
4476Songs of Willow Frost0.151380to-read favorites currently-reading young-adul...10032.000000
4477Small Steps (Holes, #2)0.151375to-read favorites currently-reading young-adul...10034.000000
4478Perfect Chemistry (Perfect Chemistry, #1)0.151336to-read favorites currently-reading young-adul...10034.000000
4479How to Talk to a Widower0.151329to-read favorites fiction books-i-own owned fa...10028.000000
4480Big Red (Big Red, #1)0.151329to-read favorites currently-reading young-adul...10025.000000
4481Fortune's Rocks0.151276to-read favorites currently-reading fiction bo...10034.000000
4482Dragon's Oath (House of Night Novellas, #1)0.151276to-read fantasy favorites currently-reading yo...10032.000000
4483Lemony Snicket: The Unauthorized Autobiography...0.151222to-read fantasy favorites currently-reading yo...10030.000000
4484A Wrinkle in Time: The Graphic Novel0.151222to-read fantasy favorites currently-reading yo...10023.000000
4485The Mauritius Command0.151178to-read favorites currently-reading fiction bo...10034.000000
4486Sole Survivor0.151174to-read fantasy favorites currently-reading fi...10035.000000
4487Love & Misadventure0.151172to-read favorites currently-reading young-adul...10032.000000
4488The Walk (The Walk, #1)0.151126to-read favorites currently-reading fiction bo...10031.000000
4489Between Sisters0.151121to-read favorites currently-reading fiction bo...10034.000000
4490Mates, Dates, and Inflatable Bras (Mates, Date...0.151111to-read favorites currently-reading young-adul...10022.000000
4491Where'd You Go, Bernadette0.151093to-read favorites currently-reading young-adul...10032.000000
4492Silver Blaze (The Memoirs of Sherlock Holmes, #1)0.151092to-read favorites currently-reading fiction bo...10032.000000
4493The Last Time We Say Goodbye0.151069to-read favorites currently-reading young-adul...10029.000000
4494All Creatures Great and Small (All Creatures G...0.151060to-read favorites currently-reading young-adul...10042.000000
4495Night of the Living Dummy (Goosebumps, #7)0.151050to-read fantasy favorites currently-reading yo...10033.000000
4496To Have and to Hold0.151029to-read favorites currently-reading fiction ow...10034.000000
4497The Compound (The Compound, #1)0.150953to-read fantasy favorites currently-reading yo...10027.000000
4498The Sandman: King of Dreams0.150947to-read fantasy favorites currently-reading fi...10021.000000
4499We Are Not Ourselves0.150911to-read favorites fiction books-i-own owned fa...10033.000000
4500People of the Book0.150888to-read favorites currently-reading fiction bo...10035.000000
4501We'll Always Have Summer (Summer, #3)0.150826to-read favorites currently-reading young-adul...10036.000000
4502Blackmoore0.150809to-read favorites currently-reading young-adul...10036.000000
4503Scoop0.150808to-read favorites currently-reading fiction bo...10025.000000
4504The Statistical Probability of Love at First S...0.150805to-read favorites currently-reading young-adul...10033.000000
4505Paradiso (The Divine Comedy, #3)0.150795to-read fantasy favorites currently-reading fi...10030.000000
4506All He Ever Wanted0.150747to-read favorites currently-reading fiction bo...10030.000000
4507The Husband's Secret0.150715to-read favorites currently-reading fiction ow...10026.000000
4508Career of Evil (Cormoran Strike, #3)0.150701to-read favorites currently-reading fiction bo...10032.000000
4509A Bend in the River0.150700to-read favorites currently-reading fiction bo...10029.000000
4510Valley of Silence (Circle Trilogy, #3)0.150698to-read fantasy favorites currently-reading fi...10039.000000
4511Homecoming (Tillerman Cycle, #1)0.150678to-read favorites currently-reading young-adul...10032.000000
4512Death in Venice and Other Tales0.150658to-read favorites currently-reading fiction bo...10025.000000
4513An Anthropologist on Mars: Seven Paradoxical T...0.150643to-read favorites currently-reading fiction bo...10033.000000
4514Aleph0.150642to-read fantasy favorites currently-reading fi...10037.000000
4515Seven Deadly Wonders (Jack West Jr, #1)0.150553to-read fantasy favorites currently-reading fi...10038.000000
4516Deception Point0.150545to-read fantasy favorites currently-reading fi...10038.000000
4517Please Ignore Vera Dietz0.150536to-read favorites currently-reading young-adul...10029.000000
4518Sisters0.150526to-read favorites currently-reading young-adul...20019.500000
4519Sisters0.073409to-read favorites currently-reading young-adul...20019.500000
4520The True Confessions of Charlotte Doyle0.150472to-read favorites currently-reading young-adul...10028.000000
4521Archangel's Blade (Guild Hunter, #4)0.150429to-read fantasy favorites currently-reading fi...10033.000000
4522Maybe Someday (Maybe, #1)0.150424to-read favorites currently-reading young-adul...10037.000000
4523The Readers of Broken Wheel Recommend0.150420to-read favorites currently-reading fiction bo...10032.000000
4524Belong to Me0.150396to-read favorites currently-reading fiction ow...10035.000000
4525Nights of Rain and Stars0.150341to-read favorites currently-reading fiction bo...10030.000000
4526Rules of Civility0.150334to-read favorites currently-reading fiction bo...10032.000000
4527Last Chance to See0.150313to-read favorites currently-reading fiction bo...10029.000000
4528Selected Poems0.150301to-read favorites currently-reading fiction bo...40010.250000
4529Selected Poems0.148765to-read favorites currently-reading fiction bo...40010.250000
4530Selected Poems0.138982to-read favorites currently-reading fiction bo...40010.250000
4531Selected Poems0.090755to-read favorites currently-reading fiction bo...40010.250000
4532Outer Dark0.150298to-read favorites currently-reading fiction bo...10033.000000
4533Amy and Isabelle0.150296to-read favorites currently-reading young-adul...10033.000000
4534In the Company of the Courtesan0.150285to-read favorites currently-reading fiction bo...10037.000000
4535Before I Go0.150243to-read favorites currently-reading young-adul...10024.000000
4536Case Histories (Jackson Brodie #1)0.150196to-read favorites currently-reading fiction bo...10038.000000
4537A Vintage Affair0.150194to-read favorites currently-reading fiction bo...10030.000000
4538Boy Meets Girl (Boy, #2)0.150191to-read favorites currently-reading young-adul...10035.000000
4539Sold0.150185to-read favorites currently-reading young-adul...10029.000000
4540The Death of Bunny Munro0.150165to-read favorites currently-reading fiction bo...10034.000000
4541The Epic of Gilgamesh0.150134to-read fantasy favorites currently-reading fi...10035.000000
4542The Penderwicks: A Summer Tale of Four Sisters...0.150110to-read fantasy favorites currently-reading yo...10033.000000
4543MacRieve (Immortals After Dark, #14)0.150044to-read fantasy favorites currently-reading fi...10031.000000
4544Master of the Game0.150004to-read favorites currently-reading fiction bo...10037.000000
4545The Man From St. Petersburg0.149970to-read favorites currently-reading fiction bo...10035.000000
4546All Fall Down0.149959to-read favorites currently-reading fiction bo...10029.000000
4547Milkweed0.149902to-read favorites currently-reading young-adul...10030.000000
4548Honolulu0.149876to-read favorites currently-reading fiction bo...10032.000000
4549Sam's Letters to Jennifer0.149845to-read favorites currently-reading young-adul...10036.000000
4550Britt-Marie Was Here0.149774to-read favorites currently-reading fiction bo...10030.000000
4551When I'm Gone0.149751to-read favorites currently-reading young-adul...10027.000000
4552Catalyst0.149746to-read favorites currently-reading young-adul...10029.000000
4553Me & Emma0.149742to-read favorites currently-reading young-adul...10033.000000
4554It Ends with Us0.149734to-read favorites currently-reading young-adul...10034.000000
4555Losing Hope (Hopeless, #2)0.149705to-read favorites currently-reading young-adul...10031.000000
4556Just One Day (Just One Day, #1)0.149698to-read favorites currently-reading young-adul...10035.000000
4557Summer of My German Soldier (Summer of My Germ...0.149695to-read favorites currently-reading young-adul...10029.000000
4558The Annotated Sherlock Holmes: The Four Novels...0.149687to-read favorites currently-reading fiction bo...10025.000000
4559Fire Burn and Cauldron Bubble (Jolie Wilkins, #1)0.149633to-read fantasy favorites currently-reading fi...10023.000000
4560A Wedding in December0.149621to-read favorites currently-reading fiction bo...10032.000000
4561Home Again0.149608to-read favorites currently-reading fiction bo...10030.000000
456216 Lighthouse Road (Cedar Cove, #1)0.149578to-read favorites currently-reading fiction bo...10030.000000
4563The Enchantress Returns (The Land of Stories, #2)0.149573to-read fantasy favorites currently-reading yo...10039.000000
4564The Hangman's Daughter (The Hangman's Daughter...0.149560to-read fantasy favorites currently-reading fi...10030.000000
4565Why We Broke Up0.149528to-read favorites currently-reading young-adul...10035.000000
4566The House of God0.149463to-read favorites currently-reading fiction bo...10035.000000
4567Scion of Ikshvaku (RamChandra, #1)0.149411to-read fantasy favorites currently-reading fi...10025.000000
4568The Painter0.149379to-read favorites currently-reading fiction bo...10030.000000
4569Hold Still0.149294to-read favorites currently-reading young-adul...10028.000000
457013 Hours: The Inside Account of What Really Ha...0.149281to-read favorites currently-reading books-i-ow...10030.000000
4571Good Night, Mr. Tom0.149253to-read favorites currently-reading young-adul...10035.000000
4572Kristy's Great Idea (The Baby-Sitters Club, #1)0.149251to-read currently-reading young-adult fiction ...10024.000000
4573One Breath Away0.149229to-read favorites currently-reading young-adul...10028.000000
4574Beauty Queens0.149224to-read fantasy favorites currently-reading yo...10032.000000
4575The Red Garden0.149171to-read fantasy favorites currently-reading fi...10030.000000
4576The Shoemaker's Wife0.149164to-read favorites currently-reading fiction bo...10030.000000
4577Looking for Alibrandi0.149156to-read favorites currently-reading young-adul...10033.000000
4578The Waste Land0.149151to-read favorites currently-reading fiction bo...10033.000000
4579What Happened to Goodbye0.149103to-read favorites currently-reading young-adul...10035.000000
4580American Sniper: The Autobiography of the Most...0.149086to-read favorites fiction books-i-own owned ow...10035.000000
4581Angus, Thongs and Full-Frontal Snogging (Confe...0.149054to-read favorites currently-reading young-adul...10030.000000
4582The Blind Side: Evolution of a Game0.149051to-read favorites currently-reading young-adul...10036.000000
4583A Little Something Different0.149051to-read favorites currently-reading young-adul...10033.000000
4584Sin Undone (Demonica #5)0.148980to-read fantasy favorites currently-reading fi...10032.000000
4585You Know You Love Me (Gossip Girl, #2)0.148975to-read favorites currently-reading young-adul...10031.000000
4586The Law of Moses (The Law of Moses, #1)0.148954to-read fantasy favorites currently-reading yo...10033.000000
4587Ironweed0.148939to-read favorites currently-reading fiction bo...10023.000000
4588Germinal (Les Rougon-Macquart, #13)0.148908to-read favorites currently-reading fiction bo...10030.000000
4589A Game of Thrones: The Graphic Novel, Vol. 10.148875to-read fantasy favorites currently-reading fi...10036.000000
4590Flight of the Old Dog (Patrick McLanahan, #1)0.148873to-read fantasy favorites currently-reading fi...10022.000000
4591Wonder0.148728to-read favorites currently-reading young-adul...10033.000000
4592Since You've Been Gone0.148694to-read favorites currently-reading young-adul...10034.000000
4593The Light Between Oceans0.148688to-read favorites currently-reading fiction bo...10034.000000
4594Dairy Queen (Dairy Queen, #1)0.148679to-read favorites currently-reading young-adul...10028.000000
4595Kiss of Midnight (Midnight Breed, #1)0.148668to-read fantasy favorites currently-reading fi...10030.000000
4596Carmilla0.148668to-read fantasy favorites currently-reading fi...10032.000000
4597Until I Find You0.148663to-read favorites currently-reading fiction bo...10035.000000
4598Every Soul a Star0.148631to-read favorites currently-reading young-adul...10029.000000
4599The Little Coffee Shop of Kabul0.148625to-read favorites currently-reading fiction bo...10016.000000
4600Willow0.148541to-read favorites currently-reading young-adul...10032.000000
460111 Birthdays (Willow Falls, #1)0.148473to-read fantasy favorites currently-reading yo...10032.000000
4602Dawn on a Distant Shore (Wilderness, #2)0.148470to-read fantasy favorites currently-reading fi...10034.000000
4603Roses0.148437to-read favorites currently-reading fiction bo...10031.000000
4604On Mystic Lake0.148383to-read favorites currently-reading fiction bo...10031.000000
4605When Crickets Cry0.148353to-read favorites currently-reading fiction bo...10032.000000
4606Frederica0.148349to-read favorites currently-reading fiction bo...10041.000000
4607First Love0.148344to-read favorites currently-reading young-adul...10036.000000
4608Collected Poems0.148293to-read favorites currently-reading fiction bo...10019.000000
4609Touching Spirit Bear (Spirit Bear, #1)0.148248to-read fantasy favorites currently-reading yo...10024.000000
4610Away Laughing on a Fast Camel (Confessions of ...0.148246to-read favorites currently-reading young-adul...10034.000000
4611Little Altars Everywhere0.148226to-read favorites currently-reading fiction bo...10034.000000
4612The Midwife's Confession0.148200to-read favorites currently-reading fiction bo...10028.000000
4613The Killing (Cherub, #4)0.148180to-read fantasy favorites currently-reading yo...10031.000000
4614The Egypt Game (Game, #1)0.148173to-read fantasy favorites currently-reading yo...10027.000000
4615The Particular Sadness of Lemon Cake0.148169to-read fantasy favorites currently-reading yo...10034.000000
4616Darth Paper Strikes Back (Origami Yoda, #2)0.148158to-read fantasy favorites currently-reading yo...10023.000000
4617The Daughter of Time (Inspector Alan Grant, #5)0.148155to-read favorites currently-reading fiction bo...10038.000000
4618Dreams of a Dark Warrior (Immortals After Dark...0.148079to-read fantasy favorites currently-reading fi...10032.000000
4619The Girls' Guide to Hunting and Fishing0.148044to-read favorites currently-reading young-adul...10036.000000
4620Moonraker (James Bond, #3)0.148025to-read favorites currently-reading fiction bo...10039.000000
4621The Other Queen (The Plantagenet and Tudor Nov...0.147996to-read favorites currently-reading fiction bo...10038.000000
4622The Vow: The Kim & Krickitt Carpenter Story0.147988to-read currently-reading young-adult books-i-...10025.000000
4623Lover Unleashed (Black Dagger Brotherhood, #9)0.147986to-read fantasy favorites currently-reading fi...10032.000000
4624Boy Meets Boy0.147956to-read fantasy favorites currently-reading yo...10032.000000
4625I am Charlotte Simmons0.147949to-read favorites currently-reading young-adul...10035.000000
4626Collected Poems, 1909-19620.147930to-read favorites currently-reading fiction bo...10028.000000
4627China Dolls0.147883to-read favorites currently-reading fiction bo...10027.000000
4628Ladder of Years0.147874to-read favorites currently-reading fiction bo...10034.000000
4629Dune Road0.147862to-read favorites currently-reading fiction bo...10029.000000
4630We Were the Mulvaneys0.147829to-read favorites currently-reading fiction bo...10036.000000
4631The Cat's Table0.147822to-read favorites currently-reading young-adul...10034.000000
4632Boy: Tales of Childhood0.147816to-read favorites currently-reading young-adul...10037.000000
4633The Color of Secrets0.147792to-read favorites currently-reading fiction bo...10022.000000
4634Sweethearts0.147775to-read favorites currently-reading young-adul...10031.000000
4635Beauty's Release (Sleeping Beauty, #3)0.147726to-read favorites currently-reading fiction bo...10029.000000
4636Rush Too Far (Rosemary Beach, #4; Too Far, #4)0.147711to-read favorites currently-reading young-adul...10035.000000
4637Prayers for Sale0.147710to-read favorites currently-reading fiction bo...10030.000000
4638SilverFin (Young Bond, #1)0.147696to-read fantasy favorites currently-reading yo...10029.000000
4639Reading Lolita in Tehran0.147688to-read favorites currently-reading fiction bo...10030.000000
4640My True Love Gave to Me: Twelve Holiday Stories0.147665to-read fantasy favorites young-adult fiction ...10029.000000
4641Testimony0.147612to-read favorites currently-reading young-adul...10032.000000
4642We Are All Completely Beside Ourselves0.147577to-read favorites currently-reading fiction bo...10035.000000
4643The Ghost Road (Regeneration, #3)0.147551to-read favorites currently-reading fiction bo...10032.000000
4644The Silver Star0.147545to-read favorites currently-reading young-adul...10030.000000
4645La vida del Lazarillo de Tormes0.147516to-read favorites currently-reading fiction bo...10026.000000
4646The Taming of the Shrew0.147511to-read favorites currently-reading fiction bo...10037.000000
4647Lord John and the Brotherhood of the Blade (L...0.147483to-read fantasy favorites currently-reading fi...10037.000000
4648Is It Just Me?0.147478to-read favorites currently-reading books-i-ow...10035.000000
4649Blessings0.147466to-read favorites currently-reading fiction bo...10032.000000
4650Beauty and the Beast0.147466to-read fantasy favorites currently-reading yo...10028.000000
4651Gaudy Night (Lord Peter Wimsey, #12)0.147426to-read favorites currently-reading fiction bo...10038.000000
4652Secrets of a Shoe Addict (Shoe Addict, #2)0.147418to-read favorites currently-reading fiction bo...10026.000000
4653The Absolutely True Diary of a Part-Time Indian0.147399to-read favorites currently-reading young-adul...10030.000000
4654The Winner Stands Alone0.147367to-read favorites currently-reading fiction bo...10036.000000
4655Finding Cinderella (Hopeless, #2.5)0.147361to-read favorites currently-reading young-adul...10031.000000
4656Katherine0.147354to-read favorites currently-reading fiction bo...10041.000000
4657The River (Brian's Saga, #2)0.147299to-read favorites currently-reading young-adul...10034.000000
4658The Pagan Stone (Sign of Seven, #3)0.147279to-read fantasy favorites currently-reading fi...10038.000000
4659Bless Me, Ultima0.147265to-read fantasy favorites currently-reading yo...10034.000000
4660The Midwife's Revolt (The Midwife Series, #1)0.147256to-read favorites currently-reading fiction bo...10026.000000
4661Live by Night (Coughlin, #2)0.147251to-read favorites currently-reading fiction bo...10030.000000
4662Bastard Out of Carolina0.147217to-read favorites currently-reading young-adul...10037.000000
4663The Valley of Fear0.147202to-read favorites currently-reading fiction bo...10040.000000
4664Like the Flowing River0.147200to-read favorites currently-reading fiction bo...10035.000000
4665My Family and Other Animals (Corfu Trilogy, #1)0.147196to-read favorites currently-reading young-adul...10041.000000
4666Black Holes and Baby Universes0.147080to-read favorites currently-reading fiction bo...10022.000000
4667Five Go to Smuggler's Top (Famous Five, #4)0.147064to-read favorites currently-reading young-adul...10032.000000
4668Maybe in Another Life0.147058to-read favorites currently-reading fiction bo...10027.000000
4669The Snowman0.147051to-read fantasy favorites currently-reading fi...10022.000000
4670The Lifeboat0.147047to-read favorites currently-reading fiction bo...10029.000000
4671The Wave0.147011to-read favorites currently-reading young-adul...10032.000000
4672Twisted (Pretty Little Liars, #9)0.146987to-read favorites currently-reading young-adul...10032.000000
4673Life is Elsewhere0.146974to-read favorites currently-reading fiction bo...10031.000000
4674Midnight in Austenland (Austenland, #2)0.146936to-read fantasy favorites currently-reading yo...10030.000000
4675Those Who Save Us0.146913to-read favorites currently-reading fiction bo...10039.000000
4676Abandon0.146882to-read fantasy favorites currently-reading fi...10028.000000
4677All Things Bright and Beautiful (All Creatures...0.146865to-read favorites currently-reading young-adul...10040.000000
4678Henderson the Rain King0.146846to-read favorites currently-reading fiction bo...10030.000000
4679Cut0.146846to-read favorites currently-reading young-adul...10029.000000
4680The Goldfinch0.146836to-read favorites currently-reading fiction bo...10038.000000
4681Parallel Worlds: A Journey Through Creation, H...0.146811to-read favorites currently-reading books-i-ow...10026.000000
4682The Scottish Prisoner (Lord John Grey, #3)0.146803to-read fantasy favorites currently-reading fi...10034.000000
4683Zen and the Art of Motorcycle Maintenance: An ...0.146803to-read favorites currently-reading fiction bo...10041.000000
4684Left Neglected0.146767to-read favorites currently-reading fiction bo...10033.000000
4685Brokeback Mountain0.146721to-read favorites currently-reading fiction bo...10034.000000
4686Omerta0.146720to-read favorites currently-reading fiction bo...10033.000000
4687Red Harvest0.146717to-read favorites currently-reading fiction bo...10030.000000
4688The Sandcastle Girls0.146710to-read currently-reading fiction books-i-own ...10027.000000
4689L.A. Candy (L.A. Candy, #1)0.146668to-read favorites currently-reading young-adul...10034.000000
4690The House Girl0.146646to-read favorites currently-reading fiction bo...10030.000000
4691Sweet Little Lies (L.A. Candy, #2)0.146632to-read favorites currently-reading young-adul...10034.000000
4692Dark Challenge (Dark, #5)0.146622to-read fantasy favorites currently-reading fi...10033.000000
4693Rising Sun0.146617to-read fantasy favorites currently-reading fi...10032.000000
4694Kiss of a Demon King (Immortals After Dark #7)0.146580to-read fantasy favorites currently-reading fi...10033.000000
4695Twelve Angry Men0.146574to-read currently-reading young-adult books-i-...10033.000000
4696The Selfish Gene0.146564to-read favorites currently-reading books-i-ow...10029.000000
4697The Other0.146485to-read fantasy favorites currently-reading fi...10032.000000
4698Black Order (Sigma Force, #3)0.146407to-read fantasy favorites currently-reading fi...10037.000000
4699A Kiss in Time0.146403to-read fantasy favorites currently-reading yo...10028.000000
4700The Beginning of Everything0.146377to-read favorites currently-reading young-adul...10031.000000
4701Girls in White Dresses0.146364to-read favorites currently-reading fiction bo...10026.000000
4702The Hot Zone: The Terrifying True Story of the...0.146312to-read favorites currently-reading fiction bo...10031.000000
4703Girl Waits with Gun (Kopp Sisters, #1)0.146292to-read favorites currently-reading fiction bo...10029.000000
4704Oblomov0.146260to-read favorites currently-reading fiction bo...10033.000000
4705Darker After Midnight (Midnight Breed, #10)0.146231to-read fantasy favorites currently-reading fi...10033.000000
4706Reason to Breathe (Breathing, #1)0.146181to-read favorites currently-reading young-adul...10033.000000
4707Our Souls at Night0.146178to-read favorites currently-reading fiction bo...10024.000000
4708The Little Stranger0.146171to-read fantasy favorites currently-reading fi...10033.000000
4709After Ever Happy (After, #4)0.146127to-read favorites currently-reading young-adul...10034.000000
4710Suttree0.146074to-read favorites currently-reading fiction bo...10033.000000
4711The Secret Chord0.146064to-read favorites currently-reading fiction bo...10029.000000
4712The Clocks (Hercule Poirot, #34)0.146044to-read favorites currently-reading fiction bo...10040.000000
4713A Window Opens0.146012to-read favorites fiction books-i-own owned my...10026.000000
4714My Heart and Other Black Holes0.145999to-read favorites currently-reading young-adul...10029.000000
4715An Ideal Husband0.145992to-read favorites currently-reading fiction bo...10032.000000
4716The Auschwitz Escape0.145985to-read favorites currently-reading fiction bo...10030.000000
4717The Fifth Mountain0.145926to-read fantasy currently-reading young-adult ...10035.000000
4718Twenty Years After (The D'Artagnan Romances, #2)0.145916to-read favorites currently-reading young-adul...10036.000000
4719Everyone Brave is Forgiven0.145859to-read favorites currently-reading fiction bo...10031.000000
4720The Dinner0.145848to-read favorites currently-reading fiction bo...10027.000000
4721The Book of the Dead (Pendergast, #7; Diogenes...0.145834to-read fantasy favorites currently-reading fi...10038.000000
4722The Dressmaker0.145802to-read favorites currently-reading young-adul...10031.000000
4723Run0.145753to-read favorites currently-reading fiction bo...10030.000000
4724Invasion of the Boy Snatchers (The Clique, #4)0.145752to-read favorites currently-reading young-adul...10028.000000
4725The Death of Kings (Emperor, #2)0.145693to-read fantasy favorites currently-reading fi...10037.000000
4726The Twentieth Wife (Taj Mahal Trilogy, #1)0.145644to-read favorites currently-reading fiction bo...10034.000000
4727Americanah0.145567to-read favorites fiction books-i-own owned fa...10034.000000
4728Dance Upon the Air (Three Sisters Island, #1)0.145538to-read fantasy favorites currently-reading fi...10038.000000
4729Burial Rites0.145493to-read favorites currently-reading fiction bo...10032.000000
4730Pet Sematary0.145477to-read fantasy favorites currently-reading fi...10043.000000
4731Bunnicula (Bunnicula, #1)0.145462to-read fantasy favorites currently-reading yo...10023.000000
4732A New Song (Mitford Years, #5)0.145431to-read favorites currently-reading fiction bo...10031.000000
4733Some Luck (Last Hundred Years: A Family Saga, #1)0.145426to-read favorites currently-reading fiction bo...10029.000000
4734The Little House Collection (Little House, #1-9)0.145417to-read favorites currently-reading young-adul...10032.000000
4735Perfect (Impulse, #2)0.145406to-read favorites currently-reading young-adul...10031.000000
4736The Wonder0.145401to-read favorites currently-reading fiction bo...10030.000000
4737Seeds of Yesterday (Dollanganger, #4)0.145401to-read favorites currently-reading young-adul...10037.000000
4738The Rosie Effect (Don Tillman, #2)0.145365to-read favorites currently-reading fiction bo...10035.000000
4739Measure for Measure0.145357to-read favorites currently-reading fiction bo...10034.000000
4740Can't Wait to Get to Heaven0.145353to-read fantasy favorites currently-reading fi...10033.000000
4741The Good Luck of Right Now0.145340to-read favorites currently-reading young-adul...10032.000000
4742Winger (Winger, #1)0.145329to-read favorites currently-reading young-adul...10031.000000
4743Providence (Providence, #1)0.145307to-read fantasy favorites currently-reading yo...10030.000000
4744Wreckage0.145281to-read favorites currently-reading fiction bo...10028.000000
4745The Penelopiad0.145263to-read fantasy favorites currently-reading fi...10033.000000
4746I Am Having So Much Fun Here Without You0.145255to-read favorites currently-reading fiction bo...10027.000000
4747Father Mine (Black Dagger Brotherhood, #6.5)0.145217to-read fantasy favorites currently-reading fi...10025.000000
4748The Lords of Discipline0.145204to-read favorites currently-reading fiction bo...10035.000000
4749Anybody Out There? (Walsh Family, #4)0.145200to-read favorites currently-reading fiction bo...10039.000000
4750Salt to the Sea0.145197to-read favorites currently-reading young-adul...10030.000000
4751The Last Don0.145189to-read currently-reading fiction books-i-own ...10034.000000
4752The Aleph and Other Stories0.145173to-read fantasy favorites currently-reading fi...10031.000000
4753Rogue Lawyer0.145172to-read favorites currently-reading fiction bo...10029.000000
4754The Sea, the Sea0.145153to-read favorites currently-reading fiction bo...10033.000000
4755Body Surfing0.145127to-read favorites currently-reading fiction bo...10028.000000
4756Faithful0.145127to-read fantasy favorites currently-reading yo...10028.000000
4757Rose Under Fire (Code Name Verity, #2)0.145123to-read favorites currently-reading young-adul...10030.000000
4758Man and Boy (Harry Silver, #1)0.145105to-read favorites currently-reading fiction bo...10030.000000
4759Twisted0.145099to-read favorites currently-reading young-adul...10028.000000
4760The Light in the Ruins0.145094to-read favorites currently-reading fiction bo...10027.000000
4761The Grand Sophy0.145091to-read favorites currently-reading fiction bo...10038.000000
4762Sellevision0.145071to-read favorites currently-reading fiction bo...10032.000000
4763A Hunger Like No Other (Immortals After Dark #2)0.145061to-read fantasy favorites currently-reading fi...10033.000000
4764Leaving (Bailey Flanigan, #1)0.144918to-read favorites currently-reading young-adul...10029.000000
4765Seating Arrangements0.144908to-read favorites fiction books-i-own owned ow...10029.000000
4766The Bad Seed0.144903to-read favorites currently-reading fiction bo...10031.000000
4767Doll Bones0.144898to-read fantasy favorites currently-reading yo...10024.000000
4768Brimstone (Pendergast, #5; Diogenes, #1)0.144830to-read fantasy favorites currently-reading fi...10037.000000
4769Braveheart0.144825to-read fantasy favorites currently-reading fi...10022.000000
4770Paths of Glory0.144825to-read favorites currently-reading fiction bo...10028.000000
4771Hotel on the Corner of Bitter and Sweet0.144810to-read favorites currently-reading young-adul...10035.000000
4772Lover at Last (Black Dagger Brotherhood, #11)0.144801to-read fantasy favorites currently-reading fi...10030.000000
4773Nora Webster0.144790to-read favorites currently-reading fiction bo...10030.000000
4774The Shell Seekers0.144784to-read favorites currently-reading fiction bo...10039.000000
4775Hey Nostradamus!0.144711to-read favorites currently-reading young-adul...10036.000000
4776The Marriage of Opposites0.144709to-read favorites currently-reading fiction bo...10027.000000
4777From the Corner of His Eye0.144703to-read fantasy favorites currently-reading fi...10038.000000
4778Last Night in Twisted River0.144696to-read favorites currently-reading fiction bo...10037.000000
4779The Year of Magical Thinking0.144682to-read favorites currently-reading fiction bo...10028.000000
4780The Merchant of Venice0.144669to-read favorites currently-reading fiction bo...10033.000000
4781Whiteout0.144652to-read favorites currently-reading fiction bo...10037.000000
4782The Weight of Silence0.144641to-read favorites currently-reading fiction bo...10035.000000
4783Love Comes Softly (Love Comes Softly, #1)0.144617to-read favorites currently-reading young-adul...10037.000000
4784Keeping the Moon0.144595to-read favorites currently-reading young-adul...10033.000000
4785Malgudi Days0.144580to-read fantasy favorites currently-reading fi...10036.000000
4786Hidden0.144542to-read favorites currently-reading fiction bo...10025.000000
4787Accident0.144541to-read favorites currently-reading fiction bo...10024.000000
4788Horrorstör0.144505to-read fantasy favorites currently-reading yo...10032.000000
4789Dark Fire (Dark, #6)0.144459to-read fantasy favorites currently-reading fi...10032.000000
4790Heft0.144454to-read favorites currently-reading young-adul...10030.000000
4791Maitreyi0.144451to-read favorites currently-reading young-adul...10027.000000
4792Evergreen0.144408to-read favorites currently-reading fiction bo...10027.000000
4793A Briefer History of Time0.144354to-read favorites currently-reading fiction bo...10032.000000
4794The Funhouse0.144319to-read fantasy favorites currently-reading fi...10034.000000
4795Raise the Titanic! (Dirk Pitt, #4)0.144318to-read favorites currently-reading fiction bo...10035.000000
4796The Swans of Fifth Avenue0.144314to-read favorites currently-reading fiction bo...10026.000000
4797Hate List0.144296to-read favorites currently-reading young-adul...10031.000000
4798Princess in the Spotlight (The Princess Diarie...0.144292to-read favorites currently-reading young-adul...10034.000000
4799Sleeping Beauty Box Set0.144284to-read fantasy favorites currently-reading fi...10019.000000
4800Cloudstreet0.144280to-read favorites currently-reading fiction bo...10038.000000
4801A Light in the Window (Mitford Years, #2)0.144276to-read favorites currently-reading fiction bo...10037.000000
4802Zorro0.144269to-read fantasy favorites currently-reading yo...10040.000000
4803Point of Retreat (Slammed, #2)0.144253to-read favorites currently-reading young-adul...10032.000000
4804A Fall of Marigolds0.144243to-read favorites currently-reading fiction bo...10025.000000
4805Never Never: Part Two (Never Never, #2)0.144241to-read fantasy favorites currently-reading yo...10026.000000
4806City of Women0.144222to-read favorites currently-reading fiction bo...10033.000000
4807Hallucinations0.144209to-read favorites currently-reading fiction bo...10028.000000
4808The Paris Wife0.144148to-read favorites currently-reading fiction bo...10033.000000
4809American Wife0.144143to-read favorites currently-reading fiction bo...10031.000000
4810You Shall Know Our Velocity!0.144052to-read favorites currently-reading fiction bo...10033.000000
4811The Amateur Marriage0.144034to-read favorites currently-reading fiction bo...10032.000000
4812Miller's Valley0.144017to-read favorites currently-reading young-adul...10027.000000
4813Sarah's Key0.144015to-read favorites currently-reading young-adul...10037.000000
4814The Realm of Possibility0.144007to-read favorites currently-reading young-adul...10028.000000
4815The Haj0.143972to-read favorites currently-reading fiction bo...10034.000000
4816Ready or Not (All-American Girl, #2)0.143928to-read favorites currently-reading young-adul...10034.000000
4817Mosquitoland0.143804to-read favorites currently-reading young-adul...10031.000000
4818The One & Only0.143776to-read favorites currently-reading fiction bo...10028.000000
4819Flight Behavior0.143734to-read favorites currently-reading fiction bo...10029.000000
4820The Wake (The Sandman #10)0.143732to-read fantasy favorites currently-reading yo...10035.000000
4821Light in August0.143731to-read favorites currently-reading fiction bo...10040.000000
4822Rhett Butler's People0.143704to-read favorites currently-reading fiction bo...10038.000000
4823Lost Lake (Lost Lake, #1)0.143702to-read fantasy favorites currently-reading fi...10029.000000
4824Oscar et la dame rose0.143694to-read favorites currently-reading young-adul...10037.000000
4825The Claiming of Sleeping Beauty (Sleeping Beau...0.143667to-read fantasy favorites currently-reading fi...10036.000000
4826The Green Mile, Part 6: Coffey on the Mile0.143663to-read fantasy favorites currently-reading fi...10036.000000
4827The Cabinet of Curiosities (Pendergast, #3)0.143653to-read fantasy favorites currently-reading fi...10039.000000
4828The Light of the Fireflies0.143629to-read favorites currently-reading young-adul...10029.000000
4829Midnight in the Garden of Good and Evil0.143609to-read favorites currently-reading fiction bo...10040.000000
4830The Covenant0.143603to-read currently-reading fiction books-i-own ...10032.000000
4831JPod0.143525to-read favorites currently-reading fiction bo...10037.000000
4832Girl, Stolen (Girl, Stolen #1)0.143508to-read favorites currently-reading young-adul...10029.000000
4833The Sound of Glass0.143501to-read favorites currently-reading fiction bo...10023.000000
4834The Pearl That Broke Its Shell0.143483to-read favorites currently-reading fiction bo...10028.000000
4835A Dog's Life: The Autobiography of a Stray0.143447to-read fantasy favorites currently-reading yo...10032.000000
4836Memoirs of a Teenage Amnesiac0.143443to-read favorites currently-reading young-adul...10033.000000
4837The Tortilla Curtain0.143440to-read favorites currently-reading fiction bo...10036.000000
4838Good Grief0.143422to-read favorites currently-reading fiction bo...10033.000000
4839Cloudy With a Chance of Meatballs0.143418to-read fantasy favorites currently-reading yo...10024.000000
4840Holy Bible: New International Version0.143399to-read fantasy favorites currently-reading yo...10038.000000
4841The Brooklyn Follies0.143367to-read favorites currently-reading fiction bo...10035.000000
4842Reconstructing Amelia0.143359to-read favorites currently-reading young-adul...10028.000000
4843Self-Reliance and Other Essays0.143333to-read favorites currently-reading fiction bo...10027.000000
4844Dr. Faustus0.143311to-read fantasy favorites fiction books-i-own ...10027.000000
4845One False Note (The 39 Clues, #2)0.143303to-read fantasy favorites currently-reading yo...10031.000000
4846Beautiful Ruins0.143247to-read favorites currently-reading fiction bo...10032.000000
4847Amsterdam0.143237to-read favorites currently-reading fiction bo...10035.000000
4848In Her Shoes0.143182to-read favorites currently-reading fiction bo...10036.000000
4849Sandstorm (Sigma Force, #1)0.143182to-read fantasy favorites currently-reading fi...10035.000000
4850The Saving Graces0.143179to-read favorites currently-reading fiction bo...10034.000000
4851Visions in Death (In Death, #19)0.143170to-read fantasy favorites currently-reading fi...10035.000000
4852Harry Potter and Philosophy: If Aristotle Ran ...0.143135to-read fantasy favorites currently-reading yo...10020.000000
4853The Tale of Peter Rabbit0.143119to-read fantasy favorites currently-reading yo...10034.000000
4854Under the Net0.143117to-read favorites currently-reading fiction bo...10031.000000
4855The Warlord Wants Forever (Immortals After Dar...0.143101to-read fantasy favorites currently-reading fi...10027.000000
4856The Lacuna0.143071to-read favorites currently-reading fiction bo...10035.000000
4857The Fill-In Boyfriend0.143060to-read favorites currently-reading young-adul...10029.000000
4858The Shop on Blossom Street (Blossom Street, #1)0.143057to-read favorites currently-reading fiction bo...10030.000000
4859The Bite Before Christmas (Argeneau, #15.5; Ni...0.143054to-read fantasy favorites currently-reading fi...10030.000000
4860Welcome to Dead House (Goosebumps, #1)0.143045to-read fantasy favorites currently-reading yo...10033.000000
4861Sophie's World0.143044to-read fantasy favorites currently-reading yo...10028.000000
4862Ladies' Night0.143033to-read favorites currently-reading fiction bo...10028.000000
4863The Disappearing Spoon: And Other True Tales o...0.143027to-read favorites currently-reading books-i-ow...10029.000000
4864The Woman Upstairs0.142991to-read favorites currently-reading fiction bo...10027.000000
4865The Opposite of Loneliness: Essays and Stories0.142932to-read favorites currently-reading young-adul...10035.000000
4866The Pigman (The Pigman, #1)0.142914to-read favorites currently-reading young-adul...10030.000000
4867All Fall Down (Embassy Row, #1)0.142901to-read favorites currently-reading young-adul...10028.000000
4868We Are Water0.142893to-read favorites currently-reading fiction bo...10032.000000
4869The Edge of Never (The Edge of Never, #1)0.142882to-read favorites currently-reading young-adul...10034.000000
4870Redeeming Love0.142881to-read favorites currently-reading young-adul...10029.000000
4871Breakfast with Buddha0.142869to-read favorites currently-reading fiction bo...10031.000000
4872Breakable (Contours of the Heart, #2)0.142868to-read favorites currently-reading young-adul...10034.000000
4873The Cay (The Cay, #1)0.142867to-read favorites currently-reading young-adul...10030.000000
4874Harriet the Spy (Harriet the Spy #1)0.142778to-read favorites currently-reading young-adul...10031.000000
4875Instructions for a Heatwave0.142752to-read favorites currently-reading fiction bo...10031.000000
4876Jeremy Fink and the Meaning of Life0.142635to-read fantasy favorites currently-reading yo...10031.000000
4877The Perfect Son0.142623to-read favorites currently-reading fiction bo...10024.000000
4878The Valley of Amazement0.142599to-read favorites currently-reading fiction bo...10034.000000
4879The Solitude of Prime Numbers0.142588to-read favorites currently-reading young-adul...10034.000000
4880The Single Girl's To-Do List0.142577to-read favorites currently-reading young-adul...10032.000000
4881A Short History of Nearly Everything0.142570to-read favorites currently-reading fiction bo...10036.000000
4882Mad Dogs (Cherub, #8)0.142548to-read fantasy favorites currently-reading yo...10027.000000
4883Gossip Girl (Gossip Girl, #1)0.142528to-read favorites currently-reading young-adul...10035.000000
4884Beach Music0.142519to-read favorites currently-reading fiction bo...10036.000000
4885Prep0.142514to-read favorites currently-reading young-adul...10035.000000
4886The Death of Bees0.142498to-read favorites currently-reading young-adul...10029.000000
4887The Taking0.142494to-read fantasy favorites currently-reading fi...10036.000000
4888Bad Science0.142442to-read favorites currently-reading books-i-ow...10026.000000
4889We Never Asked for Wings0.142438to-read favorites currently-reading fiction bo...10025.000000
4890Baudolino0.142427to-read fantasy favorites currently-reading fi...10036.000000
4891The Witch of Blackbird Pond0.142387to-read fantasy favorites currently-reading yo...10034.000000
4892Blackberry Winter0.142382to-read favorites currently-reading fiction bo...10028.000000
4893The Fourteenth Goldfish0.142358to-read fantasy currently-reading young-adult ...10020.000000
4894The Quiche of Death (Agatha Raisin, #1)0.142355to-read favorites currently-reading fiction bo...10028.000000
4895The Lonely Hearts Club (The Lonely Hearts Club...0.142350to-read favorites currently-reading young-adul...10031.000000
4896Are You There God? It's Me, Margaret0.142345to-read favorites currently-reading young-adul...10027.000000
4897The Greatest Show on Earth: The Evidence for E...0.142305to-read favorites currently-reading books-i-ow...10032.000000
4898Thirteen Moons0.142287to-read favorites currently-reading fiction bo...10034.000000
4899Pygmalion & My Fair Lady0.142286to-read favorites currently-reading fiction bo...10022.000000
4900One Day at Horrorland (Goosebumps, #16)0.142269to-read fantasy favorites currently-reading yo...10027.000000
4901Nocturnes: Five Stories of Music and Nightfall0.142191to-read favorites currently-reading fiction bo...10031.000000
4902The Last Runaway0.142154to-read favorites fiction books-i-own owned fa...10028.000000
4903The Invention of Wings0.142152to-read favorites currently-reading fiction bo...10031.000000
4904Gray Mountain0.142130to-read favorites currently-reading fiction bo...10029.000000
4905The Birth of Venus0.142042to-read favorites currently-reading fiction bo...10035.000000
4906Summer and the City (The Carrie Diaries, #2)0.142010to-read favorites currently-reading young-adul...10034.000000
4907A Secret Kept0.141945to-read favorites currently-reading fiction ow...10033.000000
4908The Darkest Seduction (Lords of the Underworld...0.141915to-read fantasy favorites currently-reading fi...10030.000000
4909The Next Big Thing0.141900to-read favorites currently-reading fiction bo...10020.000000
4910The Adventures of Ook and Gluk, Kung-Fu Caveme...0.141879to-read fantasy favorites currently-reading yo...10021.000000
4911Lover Reborn (Black Dagger Brotherhood, #10)0.141875to-read fantasy favorites currently-reading fi...10030.000000
4912Say Cheese and Die! (Goosebumps, #4)0.141851to-read fantasy favorites currently-reading yo...10030.000000
4913Help for the Haunted0.141836to-read fantasy favorites currently-reading yo...10026.000000
4914Mr. Mercedes (Bill Hodges Trilogy, #1)0.141808to-read favorites currently-reading fiction bo...10037.000000
4915Sins of the Night (Dark-Hunter #7)0.141800to-read fantasy favorites currently-reading fi...10033.000000
4916The Deep End of the Ocean (Cappadora Family, #1)0.141768to-read favorites currently-reading fiction bo...10035.000000
4917What My Mother Doesn't Know (What My Mother Do...0.141763to-read favorites currently-reading young-adul...10027.000000
4918Deeper Than Midnight (Midnight Breed, #9)0.141749to-read fantasy favorites currently-reading fi...10031.000000
4919Rules of Attraction (Perfect Chemistry, #2)0.141727to-read favorites currently-reading young-adul...10031.000000
4920The Winter People0.141726to-read fantasy favorites currently-reading fi...10026.000000
4921Don't Let Me Go0.141690to-read favorites currently-reading young-adul...10028.000000
4922The Collected Poems0.141665to-read favorites currently-reading fiction bo...20019.000000
4923The Collected Poems0.086501to-read favorites currently-reading fiction bo...20019.000000
4924The Boy Next Door (Boy, #1)0.141609to-read favorites currently-reading young-adul...10036.000000
4925Nefertiti0.141584to-read fantasy favorites currently-reading yo...10036.000000
4926The It Girl (It Girl, #1)0.141578to-read favorites currently-reading young-adul...10030.000000
4927The Invisible Bridge0.141575to-read favorites currently-reading fiction bo...10031.000000
4928As Sure as the Dawn (Mark of the Lion, #3)0.141559to-read favorites currently-reading fiction bo...10042.000000
4929The Prince0.141535to-read currently-reading fiction books-i-own ...10036.000000
4930The Mysterious Affair at Styles (Hercule Poiro...0.141515to-read favorites currently-reading fiction ow...10036.000000
4931Sleeping Arrangements0.141497to-read favorites currently-reading fiction bo...10033.000000
4932The Universe in a Nutshell0.141483to-read favorites currently-reading books-i-ow...10024.000000
4933The Clique (The Clique, #1)0.141467to-read favorites currently-reading young-adul...10026.000000
4934Luckiest Girl Alive0.141436to-read favorites currently-reading young-adul...10028.000000
4935The Candymakers (The Candymakers, #1)0.141422to-read fantasy favorites currently-reading yo...10033.000000
4936The Cloud Searchers (Amulet, #3)0.141415to-read fantasy favorites currently-reading yo...10026.000000
4937Once (Once, #1)0.141413to-read favorites currently-reading young-adul...10029.000000
4938The First Bad Man0.141373to-read favorites currently-reading fiction bo...10029.000000
4939The Dark Half0.141348to-read fantasy favorites currently-reading fi...10040.000000
4940An Instance of the Fingerpost0.141342to-read fantasy favorites currently-reading fi...10034.000000
4941Ten Tiny Breaths (Ten Tiny Breaths, #1)0.141334to-read favorites currently-reading young-adul...10033.000000
4942A Mango-Shaped Space0.141328to-read favorites currently-reading young-adul...10031.000000
4943By the Time You Read This, I'll Be Dead0.141323to-read favorites currently-reading young-adul...10029.000000
4944We the Animals0.141321to-read favorites currently-reading young-adul...10028.000000
4945Witness in Death (In Death, #10)0.141308to-read fantasy favorites currently-reading fi...10034.000000
4946The Last Time They Met0.141288to-read favorites currently-reading fiction bo...10032.000000
4947The Tiger's Wife0.141264to-read fantasy favorites currently-reading fi...10035.000000
4948Little Town on the Prairie (Little House, #7)0.141258to-read favorites currently-reading young-adul...10031.000000
4949The Gods of War (Emperor, #4)0.141254to-read fantasy favorites currently-reading fi...10034.000000
4950All the Ugly and Wonderful Things0.141197to-read favorites currently-reading young-adul...10029.000000
4951Texas0.141191to-read favorites currently-reading fiction bo...10032.000000
4952Dark Destiny (Dark, #13)0.141158to-read fantasy favorites currently-reading fi...10030.000000
4953The Undomestic Goddess0.141143to-read favorites currently-reading young-adul...10036.000000
4954The Midwife of Hope River0.141138to-read favorites currently-reading fiction bo...10025.000000
4955My Sunshine Away0.141128to-read favorites currently-reading young-adul...10027.000000
4956That Summer0.141124to-read favorites currently-reading young-adul...10032.000000
4957A Night to Remember0.141123to-read favorites currently-reading young-adul...10036.000000
4958Lust for Life0.141110to-read favorites currently-reading fiction bo...10039.000000
4959Very Good Lives: The Fringe Benefits of Failur...0.141066to-read favorites currently-reading young-adul...10025.000000
4960The Year of Fog0.141059to-read favorites currently-reading fiction bo...10028.000000
4961Winter Stroll (Winter #2)0.141054to-read favorites currently-reading fiction bo...10019.000000
4962The Persian Pickle Club0.141034to-read favorites currently-reading fiction bo...10030.000000
4963Demon from the Dark (Immortals After Dark #10)0.141025to-read fantasy favorites currently-reading fi...10033.000000
4964A Street Cat Named Bob: How One Man and His Ca...0.141024to-read favorites currently-reading young-adul...10035.000000
4965Saint Anything0.140991to-read favorites young-adult fiction books-i-...10030.000000
4966Revenge of the Wannabes (The Clique, #3)0.140969to-read favorites currently-reading young-adul...10027.000000
4967Little House on the Prairie (Little House, #2)0.140959to-read favorites currently-reading young-adul...10030.000000
4968The Education of Little Tree0.140955to-read favorites currently-reading young-adul...10034.000000
4969In One Person0.140905to-read favorites fiction books-i-own owned fa...10034.000000
4970Second Chance Summer0.140900to-read favorites currently-reading young-adul...10029.000000
4971The Westing Game0.140855to-read fantasy favorites currently-reading yo...10038.000000
4972Silver Girl0.140832to-read favorites currently-reading fiction bo...10026.000000
4973Chesapeake0.140787to-read favorites currently-reading fiction bo...10032.000000
4974Milk and Honey0.140763to-read favorites currently-reading fiction bo...10029.000000
4975Ghost Story0.140756to-read fantasy favorites fiction books-i-own ...10038.000000
4976The Hidden Staircase (Nancy Drew #2)0.140717to-read favorites currently-reading young-adul...10035.000000
4977China Rich Girlfriend (Crazy Rich Asians #2)0.140717to-read favorites currently-reading young-adul...10029.000000
4978The Pilgrimage0.140679to-read fantasy favorites currently-reading fi...10037.000000
4979Skeletons at the Feast0.140668to-read favorites currently-reading fiction bo...10033.000000
4980Flight0.140657to-read fantasy favorites currently-reading yo...10031.000000
4981Rescue0.140616to-read favorites currently-reading fiction bo...10030.000000
4982Rapture in Death (In Death, #4)0.140605to-read fantasy favorites currently-reading fi...10034.000000
4983The Julian Chapter (Wonder Story)0.140598to-read favorites currently-reading young-adul...10029.000000
4984Vinegar Girl0.140553to-read favorites currently-reading fiction bo...10029.000000
498513 Little Blue Envelopes (Little Blue Envelope...0.140519to-read favorites currently-reading young-adul...10034.000000
4986Family Pictures0.140508to-read favorites currently-reading fiction bo...10029.000000
4987The Misremembered Man (Tailorstown #1)0.140476to-read favorites currently-reading fiction bo...10023.000000
4988The Beginner's Goodbye0.140443to-read favorites currently-reading fiction bo...10027.000000
4989The Great Santini0.140438to-read favorites currently-reading fiction bo...10035.000000
4990The Case-Book of Sherlock Holmes0.140416to-read books-i-own owned series favourites ow...10033.000000
4991Shakespeare: The World as Stage0.140413to-read currently-reading fiction books-i-own ...10030.000000
4992The Secret Between Us0.140384to-read favorites currently-reading fiction bo...10029.000000
4993In the Time of the Butterflies0.140341to-read favorites currently-reading young-adul...10036.000000
4994Heartburn0.140336to-read favorites currently-reading fiction bo...10028.000000
4995Summerland0.140301to-read favorites currently-reading young-adul...10033.000000
4996A Beautiful Wedding (Beautiful, #2.5)0.140292to-read favorites currently-reading young-adul...10034.000000
4997Cutting for Stone0.140225to-read favorites currently-reading fiction bo...10037.000000
4998All I Want is Everything (Gossip Girl, #3)0.140224to-read favorites currently-reading young-adul...10028.000000
4999Strangers0.140221to-read fantasy favorites currently-reading fi...10039.000000
5000Where Things Come Back0.140173to-read favorites currently-reading young-adul...10026.000000
5001Every Last Word0.140160to-read favorites currently-reading young-adul...10029.000000
5002The Last Days of Dogtown0.140121to-read favorites currently-reading fiction bo...10031.000000
5003Have a Little Faith: a True Story0.140078to-read favorites currently-reading young-adul...10038.000000
5004The First Man in Rome (Masters of Rome, #1)0.140065to-read favorites currently-reading fiction bo...10041.000000
5005Beautiful Oblivion (The Maddox Brothers, #1)0.140025to-read favorites currently-reading young-adul...10038.000000
5006Return to Paradise (Leaving Paradise, #2)0.140007to-read favorites currently-reading young-adul...10034.000000
5007The Broom of the System0.140001to-read favorites currently-reading fiction bo...10035.000000
5008Lucky (Lucky Santangelo, #2)0.139994to-read favorites currently-reading fiction bo...10027.000000
5009Dark Fire (Matthew Shardlake, #2)0.139987to-read fantasy favorites currently-reading fi...10032.000000
5010The Complete Tales0.139980to-read fantasy favorites currently-reading yo...10033.000000
5011The 158-Pound Marriage0.139975to-read favorites currently-reading fiction bo...10027.000000
5012What I Thought Was True0.139956to-read favorites currently-reading young-adul...10028.000000
5013The Ancestor's Tale: A Pilgrimage to the Dawn ...0.139887to-read favorites currently-reading fiction bo...10029.000000
5014The Best Christmas Pageant Ever (The Herdmans #1)0.139867to-read favorites currently-reading young-adul...10031.000000
5015This Girl (Slammed, #3)0.139844to-read favorites currently-reading young-adul...10031.000000
5016Brian's Winter (Brian's Saga, #3)0.139841to-read favorites currently-reading young-adul...10031.000000
5017Out of Egypt (Christ the Lord, #1)0.139827to-read fantasy favorites currently-reading fi...10036.000000
5018The House of Silk (Sherlock Holmes, #1)0.139803to-read favorites currently-reading young-adul...10036.000000
5019Swamplandia!0.139775to-read fantasy favorites currently-reading yo...10032.000000
5020Season of Migration to the North0.139755to-read favorites currently-reading fiction bo...10027.000000
5021Shutter Island0.139738to-read favorites currently-reading fiction bo...10038.000000
5022In the Lake of the Woods0.139714to-read favorites currently-reading fiction bo...10030.000000
5023This Song Will Save Your Life0.139714to-read favorites currently-reading young-adul...10031.000000
5024Jumanji0.139687to-read fantasy favorites currently-reading yo...10020.000000
5025Girl in Hyacinth Blue0.139674to-read favorites currently-reading fiction bo...10036.000000
5026Beautiful Sacrifice (The Maddox Brothers, #3)0.139636to-read favorites currently-reading young-adul...10030.000000
5027Hard Limit (Hacker, #4)0.139623to-read favorites currently-reading fiction bo...10032.000000
5028The Big Four (Hercule Poirot, #5)0.139609to-read favorites currently-reading fiction bo...10039.000000
5029Lie Down with Lions0.139609to-read favorites currently-reading fiction bo...10034.000000
5030Out of the Dark (The Grey Wolves, #4)0.139603to-read fantasy favorites currently-reading yo...10028.000000
5031The Black Dagger Brotherhood: An Insider's Guide0.139540to-read fantasy favorites currently-reading fi...10030.000000
5032The Mother Tongue: English and How It Got That...0.139520to-read favorites currently-reading books-i-ow...10031.000000
5033Five Go Adventuring Again (Famous Five, #2)0.139517to-read favorites currently-reading young-adul...10034.000000
5034Major Pettigrew's Last Stand0.139515to-read favorites currently-reading fiction bo...10031.000000
5035The Troop0.139503to-read favorites currently-reading young-adul...10037.000000
5036How to Save a Life0.139496to-read favorites currently-reading young-adul...10025.000000
5037Forever Peace (The Forever War, #2)0.139490to-read fantasy favorites currently-reading fi...10031.000000
5038The Wanderer (Thunder Point, #1)0.139486to-read favorites currently-reading fiction bo...10026.000000
5039The Honk and Holler Opening Soon0.139469to-read favorites currently-reading fiction bo...10027.000000
5040A Gentleman in Moscow0.139468to-read favorites currently-reading fiction bo...10032.000000
5041The Jane Austen Book Club0.139449to-read favorites currently-reading fiction bo...10037.000000
5042Finding Audrey0.139433to-read favorites currently-reading young-adul...10030.000000
5043The Postmistress0.139431to-read favorites currently-reading fiction bo...10029.000000
5044The Orchardist0.139400to-read favorites currently-reading fiction bo...10029.000000
5045The Peach Keeper0.139393to-read fantasy favorites currently-reading fi...10029.000000
5046Those Left Behind (Serenity, #1)0.139376to-read fantasy favorites currently-reading yo...10032.000000
5047The Distance Between Us0.139360to-read favorites currently-reading young-adul...10030.000000
5048Night Train to Lisbon0.139350to-read favorites currently-reading fiction bo...10035.000000
5049Chain Reaction (Perfect Chemistry, #3)0.139348to-read favorites currently-reading young-adul...10032.000000
5050The Black Cat0.139327to-read fantasy favorites currently-reading fi...10033.000000
5051The Lady Elizabeth0.139324to-read favorites currently-reading fiction bo...10031.000000
5052Ape House0.139306to-read favorites currently-reading fiction bo...10033.000000
5053Packing for Mars: The Curious Science of Life ...0.139302to-read favorites currently-reading books-i-ow...10022.000000
5054Marley and Me: Life and Love With the World's ...0.139285to-read favorites currently-reading young-adul...10037.000000
5055The Casual Vacancy0.139272to-read fantasy favorites fiction harry-potter...10017.000000
5056The Thousand-Dollar Tan Line (Veronica Mars, #1)0.139245to-read favorites young-adult fiction books-i-...10033.000000
5057The Vacationers0.139245to-read favorites currently-reading fiction bo...10028.000000
5058Ecstasy Unveiled (Demonica #4)0.139237to-read fantasy favorites currently-reading fi...10030.000000
5059You Against Me0.139212to-read favorites currently-reading young-adul...10027.000000
5060The Silence of the Lambs (Hannibal Lecter, #2)0.139204to-read favorites currently-reading fiction bo...10044.000000
5061The Good House0.139179to-read favorites currently-reading fiction bo...10028.000000
5062Betrayal in Death (In Death, #12)0.139151to-read fantasy favorites currently-reading fi...10034.000000
5063Pope Joan0.139150to-read favorites currently-reading fiction bo...10038.000000
5064The Murder on the Links (Hercule Poirot, #2)0.139113to-read favorites currently-reading fiction bo...10038.000000
5065Stones from the River0.139083to-read favorites currently-reading fiction bo...10035.000000
5066Losing It (Losing It, #1)0.139044to-read favorites currently-reading fiction bo...10030.000000
5067The Lake House0.139030to-read favorites currently-reading fiction bo...10032.000000
5068Rikki-Tikki-Tavi0.139007to-read fantasy favorites currently-reading yo...10028.000000
5069Desire Unchained (Demonica #2)0.138994to-read fantasy favorites currently-reading fi...10030.000000
5070Jemima J0.138979to-read favorites currently-reading young-adul...10037.000000
5071The List0.138974to-read favorites currently-reading young-adul...20019.000000
5072The List0.104016to-read favorites currently-reading fiction bo...20019.000000
5073The Royal We0.138973to-read favorites currently-reading young-adul...10028.000000
5074The Secret Speech (Leo Demidov, #2)0.138946to-read favorites currently-reading fiction bo...10031.000000
5075The Good Earth (House of Earth, #1)0.138932to-read favorites currently-reading young-adul...10039.000000
5076Going Clear: Scientology, Hollywood, and the P...0.138854to-read favorites currently-reading books-i-ow...10025.000000
5077Saga #10.138844to-read fantasy favorites currently-reading fi...10033.000000
5078Heaven (Casteel, #1)0.138819to-read favorites currently-reading young-adul...10036.000000
5079Bleachers0.138819to-read favorites currently-reading young-adul...10036.000000
5080Thus Spoke Zarathustra0.138804to-read favorites currently-reading fiction bo...10037.000000
5081Because I'm Worth It (Gossip Girl, #4)0.138787to-read favorites currently-reading young-adul...10032.000000
5082The Sixth Extinction: An Unnatural History0.138780to-read favorites currently-reading books-i-ow...10023.000000
5083The Autobiography of Henry VIII: With Notes by...0.138714to-read favorites currently-reading fiction bo...10035.000000
5084Dare Me0.138701to-read favorites currently-reading young-adul...10027.000000
5085Life Before Legend: Stories of the Criminal an...0.138668to-read fantasy favorites currently-reading yo...10028.000000
5086The Zahir0.138647to-read fantasy favorites currently-reading fi...10035.000000
5087The Blind Watchmaker: Why the Evidence of Evol...0.138642to-read favorites currently-reading fiction bo...10029.000000
5088The Acid House0.138606to-read favorites currently-reading fiction bo...10030.000000
5089The Earth, My Butt, and Other Big Round Things0.138600to-read favorites currently-reading young-adul...10025.000000
5090Freak the Mighty (Freak The Mighty, #1)0.138479to-read favorites currently-reading young-adul...10030.000000
5091The Boyfriend List: 15 Guys, 11 Shrink Appoint...0.138456to-read favorites young-adult fiction books-i-...10029.000000
5092Conspiracy in Death (In Death, #8)0.138450to-read fantasy favorites currently-reading fi...10034.000000
5093Gut gegen Nordwind (Gut gegen Nordwind, #1)0.138403to-read favorites currently-reading fiction bo...10035.000000
5094Bone: The Complete Edition0.138398to-read fantasy favorites currently-reading yo...10038.000000
5095Holiday in Death (In Death, #7)0.138396to-read fantasy favorites currently-reading fi...10035.000000
5096Cyrano de Bergerac0.138390to-read favorites currently-reading fiction bo...10033.000000
5097Winesburg, Ohio0.138375to-read favorites fiction books-i-own owned fa...10035.000000
5098Spring Fever0.138374to-read favorites currently-reading fiction bo...10027.000000
5099The Baker's Daughter0.138369to-read favorites currently-reading fiction bo...10026.000000
5100Snow Flower and the Secret Fan0.138367to-read favorites currently-reading young-adul...10036.000000
5101The Book of Mormon: Another Testament of Jesus...0.138355to-read fantasy favorites currently-reading fi...10034.000000
5102Beautiful Day0.138297to-read favorites currently-reading fiction bo...10026.000000
5103Farmer Boy (Little House, #3)0.138273to-read favorites currently-reading young-adul...10031.000000
5104Grey (Fifty Shades, #4)0.138262to-read favorites currently-reading fiction bo...10035.000000
5105Commonwealth0.138164to-read favorites currently-reading fiction bo...10027.000000
5106The Murders in the Rue Morgue0.138152to-read fantasy favorites currently-reading fi...10033.000000
5107Rage of Angels0.138146to-read favorites currently-reading young-adul...10037.000000
5108The Sailor Who Fell from Grace with the Sea0.138129to-read favorites currently-reading fiction bo...10031.000000
5109Pompeii0.138124to-read favorites currently-reading fiction bo...10034.000000
5110Saga, Vol. 2 (Saga, #2)0.138070to-read fantasy favorites currently-reading fi...10035.000000
5111The Stonekeeper (Amulet, #1)0.138029to-read fantasy favorites currently-reading yo...10026.000000
5112Deep Down Dark: The Untold Stories of 33 Men B...0.138016to-read favorites books-i-own owned owned-book...10026.000000
5113The Plum Tree0.138014to-read favorites currently-reading fiction bo...10030.000000
5114Key of Knowledge (Key Trilogy, #2)0.138000to-read fantasy favorites currently-reading fi...10035.000000
5115Waiting For You0.137961to-read favorites currently-reading young-adul...10031.000000
5116The Glass Menagerie0.137934to-read favorites currently-reading fiction bo...10032.000000
5117True Colors0.137886to-read favorites currently-reading fiction bo...10029.000000
5118Among the Ten Thousand Things0.137872favorites currently-reading fiction books-i-ow...10025.000000
5119Your Inner Fish: A Journey into the 3.5-Billio...0.137864to-read favorites currently-reading books-i-ow...10027.000000
5120Warrior of the Light0.137851to-read fantasy favorites currently-reading fi...10037.000000
5121The Japanese Lover0.137823to-read favorites currently-reading fiction bo...10027.000000
5122Tenth of December0.137818to-read favorites currently-reading fiction bo...10032.000000
512320th Century Ghosts0.137815to-read fantasy favorites currently-reading fi...10038.000000
5124The Trumpet of the Swan0.137811to-read fantasy favorites currently-reading yo...10031.000000
5125The Book of Unknown Americans0.137790to-read favorites currently-reading young-adul...10026.000000
5126Beauty and the Beast (Disney)0.137788to-read fantasy favorites currently-reading fi...10027.000000
5127The Brightest Star in the Sky0.137730to-read favorites currently-reading fiction bo...10033.000000
5128The Rule of Four0.137727to-read fantasy favorites currently-reading fi...10035.000000
5129The Art of Hearing Heartbeats0.137721to-read favorites currently-reading fiction bo...10032.000000
5130The Chosen One0.137704to-read favorites currently-reading young-adul...10027.000000
5131The Promise0.137690to-read favorites currently-reading fiction bo...10027.000000
5132The Stone Diaries0.137682to-read favorites currently-reading fiction bo...10032.000000
5133An Object of Beauty0.137654to-read favorites currently-reading fiction bo...10033.000000
5134Daughter0.137648to-read favorites currently-reading fiction bo...10029.000000
5135Going Too Far0.137639to-read favorites currently-reading young-adul...10029.000000
5136Scarlet Feather0.137639to-read favorites currently-reading fiction bo...10031.000000
5137The Impossible Knife of Memory0.137616to-read favorites currently-reading young-adul...10028.000000
5138Every Man Dies Alone0.137593to-read favorites currently-reading fiction bo...10033.000000
5139Revolting Rhymes0.137562to-read fantasy favorites currently-reading yo...10029.000000
5140The Husband's Secret Free Preview0.137554to-read favorites currently-reading fiction bo...10024.000000
5141A Good Man is Hard to Find and Other Stories0.137548to-read favorites currently-reading fiction bo...10037.000000
5142Then Came You0.137543to-read favorites fiction books-i-own owned ow...10031.000000
5143Misery0.137531to-read fantasy favorites currently-reading fi...10045.000000
5144This Is Water: Some Thoughts, Delivered on a S...0.137501to-read favorites currently-reading books-i-ow...10032.000000
5145Generation X: Tales for an Accelerated Culture0.137498to-read favorites currently-reading fiction bo...10029.000000
5146Benediction (Plainsong, #3)0.137448to-read favorites currently-reading fiction bo...10028.000000
5147Fables, Vol. 6: Homelands0.137406to-read fantasy favorites currently-reading fi...10024.000000
5148The Story of Edgar Sawtelle0.137399to-read favorites currently-reading fiction bo...10038.000000
5149Marcelo in the Real World0.137366to-read favorites young-adult fiction books-i-...10022.000000
5150Be Frank With Me0.137321to-read favorites currently-reading fiction bo...10023.000000
5151Crave (Fallen Angels, #2)0.137311to-read fantasy favorites currently-reading fi...10033.000000
5152Remarkable Creatures0.137302to-read favorites currently-reading fiction bo...10033.000000
5153On Her Majesty's Secret Service (James Bond, #11)0.137294to-read favorites currently-reading fiction bo...10039.000000
5154Laughable Loves0.137271to-read favorites currently-reading fiction bo...10033.000000
5155Zoya0.137261to-read favorites currently-reading fiction bo...10031.000000
5156Tell Me Three Things0.137216to-read favorites currently-reading young-adul...10025.000000
5157The Further Adventures of Sherlock Holmes: Aft...0.137203to-read fantasy favorites currently-reading fi...10026.000000
5158Faceless Killers (Kurt Wallander, #1)0.137200to-read favorites currently-reading fiction bo...10026.000000
5159The Walking Dead, Compendium 10.137197to-read fantasy favorites fiction books-i-own ...10034.000000
5160Forgive Me, Leonard Peacock0.137172to-read favorites currently-reading young-adul...10028.000000
5161Divine Madness (Cherub, #5)0.137160to-read favorites currently-reading young-adul...10029.000000
5162The Coldest Winter Ever0.137157to-read favorites currently-reading young-adul...10035.000000
5163The Last Original Wife0.137151to-read favorites currently-reading fiction bo...10026.000000
5164The Legend of Sleepy Hollow and Other Stories0.137139to-read favorites young-adult fiction books-i-...10031.000000
5165The Kindness of Strangers0.137091to-read favorites currently-reading fiction bo...10029.000000
5166I Don't Know How She Does It0.137089to-read favorites currently-reading fiction bo...10030.000000
5167Please Look After Mom0.137086to-read favorites currently-reading fiction bo...10030.000000
5168A Universe from Nothing: Why There Is Somethin...0.137074to-read favorites currently-reading fiction bo...10027.000000
5169Her Daughter's Dream (Marta's Legacy, #2)0.137067to-read favorites currently-reading fiction bo...10031.000000
5170Peter Pan (A Little Golden Book)0.137031to-read fantasy favorites currently-reading fi...10021.000000
5171Motherless Brooklyn0.137007to-read favorites currently-reading fiction bo...10033.000000
5172Pippi in the South Seas0.136989to-read fantasy favorites currently-reading yo...10026.000000
5173The Sweetness at the Bottom of the Pie (Flavia...0.136982to-read favorites currently-reading young-adul...10036.000000
5174The Way the Crow Flies0.136921to-read favorites currently-reading fiction bo...10034.000000
5175Restless0.136840to-read favorites currently-reading fiction bo...10034.000000
5176Kürk Mantolu Madonna0.136834to-read favorites currently-reading fiction bo...10028.000000
5177The Doomsday Key (Sigma Force, #6)0.136832to-read fantasy favorites currently-reading fi...10035.000000
5178Call Me by Your Name0.136800to-read favorites currently-reading young-adul...10029.000000
5179The Running Dream0.136781to-read favorites currently-reading young-adul...10023.000000
5180Fifty Shades of Grey (Fifty Shades, #1)0.136734to-read favorites currently-reading young-adul...10032.000000
5181Number the Stars0.136708to-read favorites currently-reading young-adul...10029.000000
5182This Charming Man0.136690to-read favorites currently-reading fiction bo...10036.000000
5183Tempting Fate0.136674to-read favorites currently-reading fiction bo...10025.000000
5184Modern Romance0.136649to-read favorites currently-reading fiction bo...10023.000000
5185The Mermaid Chair0.136646to-read fantasy favorites currently-reading fi...10030.000000
5186One, Two, Buckle My Shoe (Hercule Poirot, #22)0.136636to-read favorites currently-reading fiction bo...10039.000000
5187The Seventh Scroll (Ancient Egypt, #2)0.136581to-read fantasy favorites currently-reading fi...10034.000000
5188The Long Winter (Little House, #6)0.136530to-read favorites currently-reading young-adul...10031.000000
5189The Burgess Boys0.136518to-read favorites currently-reading fiction bo...10030.000000
5190Beautiful Redemption (The Maddox Brothers, #2)0.136517to-read favorites currently-reading young-adul...10030.000000
5191Hannibal Rising (Hannibal Lecter, #4)0.136494to-read favorites currently-reading fiction bo...10039.000000
5192The Magic Faraway Tree (The Faraway Tree, #2)0.136438to-read fantasy favorites currently-reading yo...10032.000000
5193The Matchmaker0.136415to-read favorites currently-reading fiction bo...10025.000000
5194LaRose0.136405to-read favorites currently-reading fiction bo...10027.000000
5195The Sandman: The Dream Hunters0.136405to-read fantasy favorites currently-reading fi...10031.000000
5196The Last Painting of Sara de Vos0.136388to-read favorites currently-reading fiction bo...10025.000000
5197Out Stealing Horses0.136336to-read currently-reading fiction books-i-own ...10031.000000
5198The Most Dangerous Game0.136322to-read fantasy favorites currently-reading yo...10033.000000
5199La ciudad y los perros0.136308to-read favorites currently-reading fiction bo...10030.000000
5200Ruby Holler0.136266to-read favorites currently-reading young-adul...10030.000000
5201Annabel (Delirium, #0.5)0.136227to-read fantasy favorites currently-reading yo...10023.000000
5202The Dive From Clausen's Pier0.136223to-read favorites currently-reading fiction bo...10033.000000
5203Relativity: The Special and the General Theory0.136193to-read favorites currently-reading books-i-ow...10024.000000
5204In the Skin of a Lion0.136169to-read favorites currently-reading fiction bo...10034.000000
5205Dream Country (The Sandman #3)0.136136to-read fantasy favorites currently-reading fi...10032.000000
5206Dark Angel (Casteel, #2)0.136086to-read favorites currently-reading young-adul...10034.000000
5207Love You to Death: The Unofficial Companion to...0.136055to-read fantasy favorites currently-reading yo...10015.000000
5208Mr. Churchill's Secretary (Maggie Hope Mystery...0.136022to-read favorites currently-reading fiction bo...10031.000000
5209Telegraph Avenue0.136015to-read favorites currently-reading fiction bo...10032.000000
5210Whose Body? (Lord Peter Wimsey, #1)0.135957to-read favorites currently-reading fiction bo...10037.000000
5211The Samurai's Garden0.135930to-read favorites currently-reading fiction bo...10031.000000
5212Teen Idol0.135913to-read favorites currently-reading young-adul...10032.000000
5213ttyl (Internet Girls, #1)0.135911to-read favorites currently-reading young-adul...10029.000000
5214No Exit0.135883to-read fantasy favorites fiction books-i-own ...10029.000000
5215Hallowe'en Party (Hercule Poirot, #36)0.135861to-read favorites currently-reading fiction bo...10039.000000
5216Five Little Peppers and How They Grew0.135840to-read favorites currently-reading young-adul...10029.000000
5217Ya Yas in Bloom0.135827to-read favorites currently-reading fiction bo...10029.000000
5218Peony in Love0.135771to-read fantasy favorites currently-reading fi...10033.000000
5219Summer on Blossom Street (Blossom Street, #6)0.135759to-read favorites currently-reading fiction bo...10031.000000
5220Saving CeeCee Honeycutt0.135740to-read favorites currently-reading fiction bo...10026.000000
5221Winter's Bone0.135735to-read favorites currently-reading young-adul...10030.000000
5222Today Will Be Different0.135606to-read favorites currently-reading fiction bo...10025.000000
5223The Curious Charms of Arthur Pepper0.135597to-read favorites currently-reading fiction bo...10026.000000
5224The Cartel0.135579to-read favorites currently-reading fiction bo...10032.000000
5225Private (Private, #1)0.135558to-read favorites currently-reading young-adul...20019.500000
5226Private (Private, #1)0.062862to-read favorites currently-reading fiction bo...20019.500000
5227Old Yeller (Old Yeller, #1)0.135542to-read favorites currently-reading young-adul...10027.000000
5228The Fever0.135527to-read favorites currently-reading young-adul...10027.000000
5229Chasing Harry Winston0.135516to-read favorites currently-reading fiction bo...10036.000000
5230On the Fence0.135509to-read favorites currently-reading young-adul...10027.000000
5231The Baron in the Trees0.135475to-read fantasy favorites currently-reading yo...10033.000000
5232Until Friday Night (The Field Party, #1)0.135459to-read favorites currently-reading young-adul...10029.000000
5233Straight Talking0.135443to-read favorites currently-reading young-adul...10031.000000
5234Yellow Crocus0.135440to-read favorites currently-reading fiction bo...10029.000000
5235The Good Father0.135429to-read favorites currently-reading fiction bo...10029.000000
5236All the Names0.135410to-read fantasy favorites currently-reading fi...10033.000000
5237These High, Green Hills (Mitford Years, #3)0.135395to-read favorites currently-reading fiction bo...10032.000000
5238Lost & Found (Rocky Pelligrino, #1)0.135387to-read favorites currently-reading fiction bo...10029.000000
5239Sycamore Row0.135362to-read favorites currently-reading fiction bo...10032.000000
5240The Engagements0.135340to-read favorites currently-reading fiction bo...10028.000000
5241Captured (The Captive, #1)0.135315to-read fantasy favorites currently-reading yo...10027.000000
5242The Analyst0.135239to-read favorites currently-reading fiction bo...10034.000000
5243Angel Falls0.135217to-read favorites currently-reading fiction bo...10026.000000
5244Our Town0.135201to-read favorites currently-reading young-adul...10031.000000
5245Escape from Mr. Lemoncello's Library (Mr. Lemo...0.135199to-read fantasy favorites currently-reading yo...10022.000000
5246Vengeance in Death (In Death, #6)0.135197to-read fantasy favorites currently-reading fi...10032.000000
5247A Painted House0.135181to-read favorites currently-reading fiction bo...10035.000000
5248The Complete Poetry and Prose0.135113to-read favorites currently-reading fiction bo...10023.000000
5249The 5 Greatest Warriors (Jack West Jr, #3)0.135098to-read fantasy favorites currently-reading fi...10038.000000
5250Perfect You0.135089to-read favorites currently-reading young-adul...10027.000000
5251The Lake House (When the Wind Blows, #2)0.135084to-read fantasy favorites currently-reading yo...10032.000000
5252The Sea of Tranquility0.135068to-read favorites currently-reading young-adul...10030.000000
5253Great House0.135064to-read fiction books-i-own owned favourites d...10028.000000
5254Dance of the Gods (Circle Trilogy, #2)0.135052to-read fantasy favorites currently-reading fi...10038.000000
5255A Midsummer's Nightmare0.135050to-read favorites currently-reading young-adul...10028.000000
5256Sherlock Holmes and the Case of the Hound of t...0.135029to-read favorites currently-reading young-adul...10023.000000
5257By the River Piedra I Sat Down and Wept0.135023to-read fantasy favorites currently-reading fi...10038.000000
5258Anne Frank's Tales from the Secret Annex0.135021to-read favorites currently-reading young-adul...10031.000000
5259Locke & Key, Vol. 4: Keys to the Kingdom0.134985to-read fantasy favorites currently-reading yo...10028.000000
5260This Is Your Brain on Music: The Science of a ...0.134937to-read favorites currently-reading books-i-ow...10029.000000
5261Maisie Dobbs (Maisie Dobbs, #1)0.134923to-read favorites currently-reading fiction bo...10031.000000
5262The Girl Who Fell from the Sky0.134921to-read favorites currently-reading young-adul...10030.000000
5263The Sea0.134905to-read favorites currently-reading fiction bo...10034.000000
5264The Orenda0.134898to-read favorites currently-reading fiction bo...10035.000000
5265Musashi0.134892to-read fantasy favorites currently-reading fi...10036.000000
5266The Last Oracle (Sigma Force, #5)0.134890to-read fantasy favorites currently-reading fi...10035.000000
5267See Jane Date0.134889to-read favorites currently-reading fiction bo...10022.000000
5268The Chase (Fox and O'Hare, #2)0.134874to-read favorites currently-reading fiction bo...10027.000000
5269Insomnia0.134851to-read fantasy favorites currently-reading fi...10042.000000
5270These Happy Golden Years (Little House, #8)0.134838to-read favorites currently-reading young-adul...10029.000000
5271Living Dead Girl0.134775to-read favorites currently-reading young-adul...10026.000000
5272Commencement0.134729to-read favorites currently-reading young-adul...10029.000000
5273Three Weeks With My Brother0.134690to-read favorites currently-reading young-adul...10034.000000
5274The Vincent Boys (The Vincent Boys, #1)0.134682to-read favorites currently-reading young-adul...10034.000000
5275Canada0.134680to-read favorites currently-reading young-adul...10031.000000
5276Twilight: The Graphic Novel, Vol. 1 (Twilight:...0.134679to-read fantasy favorites currently-reading yo...10033.000000
5277The Cellist of Sarajevo0.134671to-read favorites currently-reading young-adul...10033.000000
5278The Gospel According to Jesus Christ0.134636to-read fantasy favorites currently-reading fi...10031.000000
5279Saving June0.134627to-read favorites currently-reading young-adul...10028.000000
5280Hausfrau0.134578to-read favorites currently-reading fiction bo...10027.000000
5281The Two-Family House0.134570to-read favorites currently-reading fiction bo...10023.000000
5282As You Like It0.134568to-read favorites currently-reading fiction bo...10036.000000
5283Child of God0.134565to-read favorites currently-reading fiction bo...10032.000000
5284The Story of the Lost Child (The Neapolitan No...0.134536to-read favorites currently-reading fiction bo...10031.000000
5285Tigers in Red Weather0.134522to-read favorites fiction books-i-own owned fa...10028.000000
5286Shanghai Girls (Shanghai Girls #1)0.134510to-read favorites currently-reading fiction bo...10034.000000
5287Dash & Lily's Book of Dares (Dash & Lily, #1)0.134486to-read favorites currently-reading young-adul...10033.000000
5288Blue-Eyed Devil (Travises, #2)0.134439to-read favorites currently-reading fiction bo...10032.000000
5289Essays and Poems0.134425to-read favorites currently-reading fiction bo...10023.000000
5290The Map That Changed the World0.134353to-read favorites currently-reading fiction bo...10031.000000
5291I Still Dream About You0.134350to-read favorites currently-reading fiction bo...10030.000000
5292You're the One That I Want (Gossip Girl, #6)0.134346to-read favorites currently-reading young-adul...10027.000000
5293Getting Over It0.134328to-read favorites currently-reading young-adul...10025.000000
5294Mrs. Piggle-Wiggle's Magic (Mrs. Piggle Wiggle...0.134317to-read fantasy favorites currently-reading yo...10026.000000
5295Day After Night0.134317to-read favorites currently-reading fiction bo...10028.000000
5296A Spool of Blue Thread0.134315to-read favorites currently-reading fiction bo...10027.000000
5297The Interestings0.134306to-read favorites currently-reading young-adul...10030.000000
5298Fates and Furies0.134276to-read favorites currently-reading fiction bo...10029.000000
5299First Comes Love0.134251to-read favorites currently-reading fiction bo...10024.000000
5300End of Watch (Bill Hodges Trilogy, #3)0.134243to-read fantasy favorites currently-reading fi...10033.000000
5301Jesus' Son0.134234to-read favorites currently-reading fiction bo...10035.000000
5302The Bonesetter's Daughter0.134232to-read favorites currently-reading fiction bo...10036.000000
5303Fever 17930.134217to-read favorites currently-reading young-adul...10026.000000
5304One More Thing: Stories and Other Stories0.134211to-read favorites currently-reading fiction bo...10027.000000
5305The Kitchen House0.134192to-read favorites currently-reading fiction bo...10034.000000
5306The Last Wife of Henry VIII0.134189to-read favorites currently-reading fiction bo...10029.000000
5307Divided in Death (In Death, #18)0.134165to-read fantasy favorites currently-reading fi...10035.000000
5308The First Wives Club0.134157to-read favorites currently-reading fiction bo...10024.000000
5309One Lavender Ribbon0.134151to-read favorites currently-reading fiction bo...10025.000000
5310Anastasia Krupnik (Anastasia Krupnik, #1)0.134143to-read favorites currently-reading young-adul...10028.000000
5311Everything We Keep (Everything We Keep, #1)0.134133to-read favorites currently-reading fiction bo...10026.000000
5312Promises to Keep0.134129to-read favorites currently-reading fiction bo...10031.000000
5313The Love Song of J. Alfred Prufrock and Other ...0.134116to-read favorites currently-reading fiction bo...10028.000000
5314Love Unrehearsed (Love, #2)0.134115to-read favorites currently-reading young-adul...10032.000000
5315Aristotle and Dante Discover the Secrets of th...0.134114to-read favorites series all-time-favorites au...10018.000000
5316The Ripper (The Vampire Diaries: Stefan's Diar...0.134109to-read fantasy favorites currently-reading yo...10027.000000
5317Wife by Wednesday (The Weekday Brides, #1)0.134067to-read favorites currently-reading fiction bo...10026.000000
5318Every Boy's Got One (Boy, #3)0.134061to-read favorites currently-reading young-adul...10039.000000
5319Dark Demon (Dark, #16)0.134057to-read fantasy favorites currently-reading fi...10032.000000
5320The Yonahlossee Riding Camp for Girls0.134055to-read favorites currently-reading young-adul...10027.000000
5321The 19th Wife0.134053to-read favorites currently-reading fiction bo...10029.000000
5322The Lion King: A little Golden Book0.134003to-read fantasy favorites currently-reading fi...10020.000000
5323Fermat's Enigma: The Epic Quest to Solve the W...0.133978to-read favorites currently-reading fiction bo...10029.000000
5324Tell-All0.133948to-read favorites currently-reading fiction bo...10033.000000
5325Moriarty (Sherlock Holmes #2)0.133892to-read favorites currently-reading fiction bo...10033.000000
5326Where the Sidewalk Ends0.133872to-read fantasy favorites currently-reading yo...10032.000000
5327The Mark (Left Behind, #8)0.133866to-read fantasy favorites currently-reading fi...10034.000000
5328Cat on a Hot Tin Roof0.133852to-read favorites currently-reading fiction bo...10028.000000
5329A Little History of the World0.133821to-read favorites currently-reading young-adul...10036.000000
5330Ghost Boy0.133804to-read favorites currently-reading fiction bo...10027.000000
5331Memories of Midnight0.133736to-read favorites currently-reading young-adul...10034.000000
5332Summer House with Swimming Pool0.133709to-read favorites currently-reading fiction bo...10029.000000
5333Y: The Last Man, Vol. 10: Whys and Wherefores ...0.133703to-read fantasy favorites currently-reading fi...10027.000000
5334Love That Dog (Jack, #1)0.133689to-read favorites currently-reading young-adul...10025.000000
5335By the Light of the Moon0.133688to-read fantasy favorites currently-reading fi...10034.000000
5336One Summer0.133669to-read favorites currently-reading fiction bo...10030.000000
5337Where We Belong0.133585to-read favorites young-adult fiction books-i-...10030.000000
5338The Devil Colony (Sigma Force, #7)0.133581to-read fantasy favorites currently-reading fi...10035.000000
5339The House on Tradd Street (Tradd Street, #1)0.133569to-read fantasy favorites currently-reading fi...10029.000000
5340Birds of America0.133565to-read favorites currently-reading fiction bo...10031.000000
5341Lucky Us0.133562to-read favorites currently-reading fiction bo...10027.000000
5342Danse Macabre0.133553to-read fantasy favorites currently-reading fi...10035.000000
5343The Chronicles of Harris Burdick: 14 Amazing A...0.133532to-read fantasy favorites currently-reading yo...10026.000000
5344Spook: Science Tackles the Afterlife0.133477to-read favorites currently-reading books-i-ow...10027.000000
5345I've Got Your Number0.133475to-read favorites currently-reading young-adul...10027.000000
5346Out of My Mind0.133458to-read favorites currently-reading young-adul...10030.000000
5347Wife 220.133443to-read favorites currently-reading fiction bo...10029.000000
5348The Immortals of Meluha (Shiva Trilogy, #1)0.133410to-read fantasy favorites currently-reading fi...10036.000000
5349The Edge of Always (The Edge of Never, #2)0.133363to-read favorites young-adult fiction books-i-...10031.000000
5350Best Friends Forever0.133362to-read favorites currently-reading fiction bo...10032.000000
5351Gold0.133351to-read favorites currently-reading fiction bo...10035.000000
5352Wayside School Is Falling Down (Wayside School...0.133346to-read fantasy favorites currently-reading yo...10029.000000
5353The Atonement Child0.133334to-read favorites currently-reading young-adul...10032.000000
5354The Prodigal Daughter (Kane & Abel, #2)0.133327to-read favorites currently-reading fiction bo...10032.000000
5355Maude0.133323to-read favorites currently-reading fiction bo...10022.000000
5356The Brief Wondrous Life of Oscar Wao0.133319to-read fantasy favorites currently-reading fi...10033.000000
5357The Yellow Birds0.133315to-read favorites currently-reading fiction bo...10032.000000
5358A Simple Plan0.133315to-read favorites currently-reading fiction bo...10032.000000
5359Lipstick Jungle0.133295to-read favorites currently-reading fiction bo...10029.000000
5360The Love Affairs of Nathaniel P.0.133285to-read favorites currently-reading fiction bo...10027.000000
5361Digging to America0.133178to-read favorites currently-reading fiction bo...10031.000000
5362The Mill River Recluse0.133173to-read favorites currently-reading fiction bo...10025.000000
5363Fever Pitch0.133100to-read favorites currently-reading fiction bo...10031.000000
5364Call Me Irresistible (Wynette, Texas #5)0.133091to-read favorites currently-reading fiction bo...10034.000000
5365Surely You're Joking, Mr. Feynman!: Adventures...0.133071to-read currently-reading fiction books-i-own ...10032.000000
5366The Hundred Secret Senses0.133013to-read fantasy favorites currently-reading fi...10034.000000
5367The Girls0.133002to-read favorites currently-reading young-adul...20019.500000
5368The Girls0.129767to-read favorites currently-reading fiction bo...20019.500000
5369A Prisoner of Birth0.132975to-read favorites currently-reading fiction bo...10030.000000
5370The Dragonslayer (Bone, #4)0.132944to-read fantasy favorites currently-reading yo...10030.000000
5371One Door Away from Heaven0.132943to-read fantasy favorites currently-reading fi...10034.000000
5372The King's Agent0.132910to-read fantasy favorites currently-reading fi...10015.000000
5373So You've Been Publicly Shamed0.132898to-read favorites currently-reading fiction bo...10026.000000
5374Ruthless (Pretty Little Liars, #10)0.132886to-read favorites currently-reading young-adul...10030.000000
5375Olivia Joules and the Overactive Imagination0.132868to-read favorites currently-reading fiction bo...10035.000000
5376Small Great Things0.132861to-read favorites currently-reading fiction bo...10027.000000
5377Lisey's Story0.132848to-read fantasy favorites currently-reading fi...10041.000000
5378Oscar and Lucinda0.132845to-read favorites currently-reading fiction bo...10029.000000
5379Face the Fire (Three Sisters Island, #3)0.132839to-read fantasy favorites currently-reading fi...10039.000000
5380Cathedral0.132789to-read favorites currently-reading fiction bo...10036.000000
5381The Middlesteins0.132782to-read favorites currently-reading fiction bo...10028.000000
5382Finders Keepers (Bill Hodges Trilogy, #2)0.132759to-read fantasy favorites currently-reading fi...10034.000000
5383Where There's Smoke0.132706to-read fantasy favorites currently-reading fi...10025.000000
5384Don't Look Back0.132684to-read favorites currently-reading young-adul...10029.000000
5385The Informers0.132649to-read favorites currently-reading fiction bo...10030.000000
5386An Incomplete Revenge (Maisie Dobbs, #5)0.132621to-read favorites currently-reading fiction bo...10027.000000
5387The Elephant Vanishes0.132568to-read fantasy favorites currently-reading fi...10037.000000
5388Imitation in Death (In Death, #17)0.132562to-read fantasy favorites currently-reading fi...10033.000000
5389Everything I Never Told You0.132537to-read favorites currently-reading young-adul...10023.000000
5390The Moving Finger (Miss Marple, #4)0.132532to-read favorites currently-reading fiction bo...10038.000000
5391The Darkest Surrender (Lords of the Underworl...0.132450to-read fantasy favorites currently-reading fi...10028.000000
5392The Aviator's Wife0.132433to-read favorites currently-reading fiction bo...10025.000000
5393Never Never: Part Three (Never Never, #3)0.132420to-read fantasy favorites currently-reading yo...10025.000000
5394Loyalty in Death (In Death, #9)0.132396to-read fantasy favorites currently-reading fi...10032.000000
5395The Pale King0.132382to-read favorites currently-reading fiction bo...10033.000000
5396The Geography of You and Me0.132379to-read favorites currently-reading young-adul...10027.000000
5397Simon vs. the Homo Sapiens Agenda0.132369to-read favorites currently-reading young-adul...10031.000000
5398The Hand That First Held Mine0.132340to-read favorites currently-reading fiction bo...10030.000000
5399How to Be Popular0.132323to-read favorites currently-reading young-adul...10030.000000
5400Flat-Out Love (Flat-Out Love, #1)0.132322to-read favorites currently-reading young-adul...10034.000000
5401The Structure of Scientific Revolutions0.132310to-read favorites currently-reading books-i-ow...10026.000000
5402Lily and the Octopus0.132274to-read fantasy favorites currently-reading fi...10026.000000
5403The Chemist0.132225to-read favorites currently-reading young-adul...10034.000000
5404Match Me If You Can (Chicago Stars, #6)0.132151to-read favorites currently-reading fiction bo...10035.000000
5405The Field of Swords (Emperor, #3)0.132147to-read fantasy favorites currently-reading fi...10032.000000
5406Playing for Pizza0.132143to-read favorites currently-reading young-adul...10032.000000
5407An Astronaut's Guide to Life on Earth0.132128to-read favorites currently-reading books-i-ow...10033.000000
5408The Pretty Committee Strikes Back (The Clique,...0.132107to-read favorites currently-reading young-adul...10028.000000
5409The Abduction (Theodore Boone, #2)0.132083to-read favorites currently-reading young-adul...10030.000000
5410The Language of Flowers0.131996to-read favorites currently-reading fiction bo...10026.000000
5411Resurrection0.131974to-read favorites currently-reading fiction bo...10034.000000
5412When It Happens0.131969to-read favorites currently-reading young-adul...10032.000000
5413Hardpressed (Hacker, #2)0.131939to-read favorites currently-reading fiction bo...10034.000000
5414Diamonds Are Forever (James Bond, #4)0.131929to-read favorites currently-reading fiction bo...10036.000000
5415Guts0.131807to-read favorites currently-reading fiction ow...10021.000000
5416Where I'm Calling From: New and Selected Stories0.131788to-read favorites currently-reading fiction bo...10033.000000
5417Dawn (Cutler, #1)0.131782to-read favorites currently-reading young-adul...10030.000000
5418America's First Daughter0.131760to-read favorites currently-reading fiction bo...10025.000000
5419Eye of the Needle0.131715to-read favorites currently-reading fiction bo...10036.000000
5420The Castaways0.131711to-read favorites currently-reading fiction bo...10029.000000
5421Ask the Passengers0.131688to-read favorites currently-reading young-adul...10027.000000
5422Beatrice and Virgil0.131664to-read fantasy favorites currently-reading fi...10033.000000
5423Big Cherry Holler (Big Stone Gap, #2)0.131661to-read favorites currently-reading fiction bo...10029.000000
5424A Twist in the Tale0.131626to-read favorites currently-reading fiction bo...10032.000000
5425Baby Proof0.131615to-read favorites currently-reading fiction bo...10031.000000
5426Drums, Girls & Dangerous Pie (Drums, Girls & D...0.131614to-read favorites currently-reading young-adul...10026.000000
5427Catherine, Called Birdy0.131541to-read fantasy favorites young-adult books-i-...10024.000000
5428The Lace Reader (The Lace Reader, #1)0.131540to-read fantasy favorites currently-reading fi...10032.000000
5429Origin in Death (In Death, #21)0.131532to-read fantasy favorites currently-reading fi...10036.000000
5430Messenger of Truth (Maisie Dobbs, #4)0.131526to-read favorites currently-reading fiction bo...10025.000000
5431Someone0.131502to-read favorites currently-reading fiction bo...10027.000000
5432Forever Princess (The Princess Diaries, #10)0.131476to-read favorites currently-reading young-adul...10034.000000
5433An Echo in the Darkness (Mark of the Lion, #2)0.131472to-read favorites currently-reading fiction bo...10038.000000
5434Silent in the Grave (Lady Julia Grey, #1)0.131470to-read fantasy favorites currently-reading fi...10028.000000
5435Eligible: A Modern Retelling of Pride and Prej...0.131453to-read favorites currently-reading fiction bo...10026.000000
5436Sapiens: A Brief History of Humankind0.131378to-read favorites currently-reading books-i-ow...10028.000000
5437Dreamcatcher0.131362to-read fantasy favorites currently-reading fi...10038.000000
5438Catching Jordan0.131331to-read favorites currently-reading young-adul...10028.000000
5439What We Talk About When We Talk About Love0.131319to-read favorites currently-reading fiction bo...10035.000000
5440To All the Boys I've Loved Before (To All the ...0.131317to-read series re-read reread audiobook favori...10019.000000
5441A Reliable Wife0.131294to-read favorites currently-reading fiction bo...10030.000000
5442Easy (Contours of the Heart, #1)0.131286to-read favorites currently-reading young-adul...10035.000000
5443Fallen Hearts (Casteel, #3)0.131237to-read favorites currently-reading young-adul...10032.000000
5444The Blue Bistro0.131236to-read favorites currently-reading fiction bo...10028.000000
5445When Will There Be Good News? (Jackson Brodie,...0.131198to-read favorites currently-reading fiction bo...10032.000000
5446The Doomsday Conspiracy0.131190to-read fantasy favorites currently-reading fi...10033.000000
5447Faust: First Part0.131186to-read fantasy favorites currently-reading fi...10033.000000
5448The Green Mile, Part 3: Coffey's Hands0.131125to-read fantasy favorites currently-reading fi...10040.000000
5449Crash into You (Pushing the Limits, #3)0.131106to-read favorites currently-reading young-adul...10027.000000
5450Nemesis (Miss Marple, #12)0.131105to-read favorites currently-reading fiction bo...10038.000000
5451The Silent Wife0.131075to-read favorites currently-reading fiction bo...10027.000000
5452The Decameron0.131066to-read favorites currently-reading fiction bo...10033.000000
5453Lothaire (Immortals After Dark #12)0.131063to-read fantasy favorites currently-reading fi...10030.000000
5454Knit Two (Friday Night Knitting Club, #2)0.131055to-read favorites currently-reading fiction bo...10030.000000
5455The Mane Event (Pride, #1)0.131033to-read fantasy favorites currently-reading fi...10028.000000
5456Little Bee0.131019to-read favorites currently-reading fiction bo...10027.000000
5457Tangerine0.131014to-read fantasy favorites currently-reading yo...10023.000000
5458Lenobia's Vow (House of Night Novellas, #2)0.130962to-read fantasy favorites currently-reading yo...10032.000000
5459Hardwired (Hacker, #1)0.130961to-read favorites currently-reading fiction bo...10034.000000
5460The Panther (John Corey, #6)0.130924to-read favorites currently-reading fiction bo...10032.000000
5461White Fire (Pendergast, #13)0.130901to-read favorites currently-reading fiction bo...10031.000000
5462These Things Hidden0.130901to-read favorites currently-reading young-adul...10029.000000
5463Identity0.130898to-read favorites currently-reading fiction bo...10030.000000
5464Be Careful What You Wish For0.130799to-read fantasy favorites currently-reading yo...10031.000000
5465Dumplin' (Dumplin', #1)0.130765to-read favorites currently-reading young-adul...10026.000000
5466Queen of Babble Gets Hitched (Queen of Babble,...0.130763to-read favorites currently-reading young-adul...10033.000000
5467Hatchet (Brian's Saga, #1)0.130746to-read favorites currently-reading young-adul...10029.000000
5468The Submission0.130742to-read favorites currently-reading fiction bo...10027.000000
5469The Code Book: The Science of Secrecy from Anc...0.130712to-read favorites currently-reading books-i-ow...10025.000000
5470Stunning (Pretty Little Liars, #11)0.130645to-read favorites currently-reading young-adul...10028.000000
5471The Lewis Man (The Lewis Trilogy, #2)0.130615to-read favorites currently-reading fiction bo...10031.000000
5472Sing You Home0.130573to-read favorites currently-reading fiction bo...10033.000000
5473Truly Madly Guilty0.130566to-read favorites currently-reading fiction bo...10023.000000
5474The Third Twin0.130470to-read favorites currently-reading fiction bo...10033.000000
5475Barefoot0.130444to-read favorites currently-reading fiction bo...10031.000000
5476Portrait in Death (In Death, #16)0.130435to-read fantasy favorites currently-reading fi...10035.000000
5477The Velveteen Rabbit0.130432to-read fantasy favorites currently-reading yo...10031.000000
5478The Monuments Men: Allied Heroes, Nazi Thieves...0.130395to-read favorites currently-reading fiction bo...10031.000000
5479Someone Knows My Name0.130391to-read favorites currently-reading fiction bo...10027.000000
5480The Unexpected Everything0.130375to-read favorites currently-reading young-adul...10028.000000
5481Class A (Cherub, #2)0.130371to-read favorites currently-reading young-adul...10031.000000
5482Purple Hibiscus0.130368to-read favorites currently-reading young-adul...10034.000000
5483The Aeneid0.130329to-read fantasy favorites currently-reading fi...10035.000000
5484The Night Strangers0.130325to-read fantasy favorites currently-reading fi...10030.000000
5485A Hundred Summers0.130289to-read favorites currently-reading fiction bo...10029.000000
5486Night Over Water0.130217to-read favorites currently-reading fiction bo...10034.000000
5487Perfect Scoundrels (Heist Society, #3)0.130136to-read favorites currently-reading young-adul...10026.000000
5488You Don't Have to Say You Love Me0.130128to-read favorites currently-reading young-adul...10030.000000
5489Heaven and Earth (Three Sisters Island, #2)0.130121to-read fantasy favorites currently-reading fi...10036.000000
5490A Summer Affair0.130098to-read favorites currently-reading fiction bo...10030.000000
5491The Exploits of Sherlock Holmes0.130076to-read favorites currently-reading fiction bo...10023.000000
5492Cards on the Table (Hercule Poirot, #15)0.130072to-read favorites currently-reading fiction bo...10038.000000
5493A Map of the World0.130065to-read favorites currently-reading fiction bo...10034.000000
5494Light a Penny Candle0.130057to-read favorites currently-reading fiction bo...10030.000000
5495The Tale of Mrs. Tiggy-Winkle0.130039to-read fantasy favorites currently-reading fi...10027.000000
5496The Green Mile, Part 1: The Two Dead Girls0.130036to-read fantasy favorites currently-reading fi...10039.000000
5497Shoe Addicts Anonymous (Shoe Addict, #1)0.130035to-read favorites currently-reading fiction bo...10027.000000
5498Gut: The Inside Story of Our Body’s Most Und...0.130007to-read favorites currently-reading books-i-ow...10030.000000
5499Come Home0.129999to-read favorites currently-reading fiction bo...10028.000000
5500Promise Not to Tell0.129992to-read fantasy favorites currently-reading yo...10032.000000
5501Dial L for Loser (The Clique, #6)0.129935to-read favorites currently-reading young-adul...10023.000000
5502The Crossing Places (Ruth Galloway, #1)0.129933to-read favorites currently-reading fiction bo...10027.000000
5503The Problem with Forever0.129917to-read favorites currently-reading young-adul...10027.000000
5504The Copper Beech0.129896to-read favorites currently-reading fiction bo...10030.000000
5505Apple Tree Yard0.129861to-read favorites currently-reading fiction bo...10031.000000
5506Ida B. . . and Her Plans to Maximize Fun, Avoi...0.129850to-read favorites currently-reading young-adul...10025.000000
5507Queen of Babble (Queen of Babble, #1)0.129847to-read favorites currently-reading young-adul...10035.000000
5508The Weight of Water0.129845to-read favorites currently-reading fiction bo...10032.000000
5509Smooth Talking Stranger (Travises, #3)0.129839to-read favorites currently-reading fiction bo...10034.000000
5510A Light in the Attic0.129834to-read fantasy favorites currently-reading yo...10030.000000
5511Every Last One0.129744to-read favorites currently-reading fiction bo...10030.000000
5512Why Evolution Is True0.129725to-read favorites currently-reading books-i-ow...10023.000000
5513From Russia With Love (James Bond, #5)0.129725to-read favorites currently-reading fiction bo...10039.000000
5514The Charm School0.129704to-read favorites currently-reading fiction bo...10038.000000
5515Misty of Chincoteague (Misty, #1)0.129701to-read favorites currently-reading young-adul...10028.000000
5516A Doll's House0.129644to-read favorites currently-reading fiction bo...10031.000000
5517Joyland0.129585to-read fantasy favorites currently-reading yo...10037.000000
5518Be with Me (Wait for You, #2)0.129580to-read favorites currently-reading young-adul...10032.000000
5519Princess in Pink (The Princess Diaries, #5)0.129570to-read favorites currently-reading young-adul...10034.000000
5520Among the Mad (Maisie Dobbs, #6)0.129555to-read favorites currently-reading fiction ow...10025.000000
5521Wicked Nights (Angels of the Dark, #1)0.129553to-read fantasy favorites currently-reading fi...10032.000000
5522Shadows of the Workhouse0.129543to-read favorites currently-reading fiction bo...10030.000000
5523Because of Low (Sea Breeze, #2)0.129540to-read favorites currently-reading young-adul...10036.000000
5524The Tale of Despereaux0.129509to-read fantasy favorites currently-reading yo...10033.000000
5525Hope Was Here0.129490to-read favorites currently-reading young-adul...10027.000000
5526Glory in Death (In Death, #2)0.129487to-read fantasy favorites currently-reading fi...10032.000000
5527Holding Up the Universe0.129454to-read favorites currently-reading young-adul...10027.000000
5528Emmy & Oliver0.129352to-read favorites currently-reading young-adul...10023.000000
5529Tales from a Not-So-Popular Party Girl (Dork D...0.129352to-read currently-reading young-adult fiction ...10025.000000
5530Ralph S. Mouse by Beverly Cleary: Teacher Guid...0.129329to-read fantasy favorites currently-reading yo...10014.000000
5531Love Unscripted (Love, #1)0.129322to-read favorites currently-reading young-adul...10033.000000
5532Saga, Vol. 1 (Saga, #1)0.129267to-read fantasy favorites currently-reading fi...10032.000000
5533Hana (Delirium, #1.5)0.129229to-read fantasy favorites currently-reading yo...10022.000000
5534How to Love0.129215to-read favorites currently-reading young-adul...10032.000000
5535Lord Edgware Dies (Hercule Poirot, #9)0.129202to-read favorites currently-reading fiction bo...10040.000000
5536I've Got You Under My Skin (Under Suspicion, #1)0.129101to-read favorites currently-reading fiction bo...10030.000000
5537The Final Solution0.129095to-read favorites currently-reading fiction bo...10031.000000
5538Lord John and the Private Matter (Lord John Gr...0.129075to-read fantasy favorites currently-reading fi...10034.000000
5539Seduction in Death (In Death, #13)0.129051to-read fantasy favorites currently-reading fi...10035.000000
5540Death Comes to Pemberley0.129026to-read favorites fiction books-i-own owned ow...10033.000000
5541Counting by 7s0.129019to-read favorites currently-reading young-adul...10025.000000
5542So B. It0.128981to-read favorites currently-reading young-adul...10031.000000
5543Crush0.128966to-read favorites currently-reading fiction bo...10033.000000
5544The Painted Girls0.128962to-read favorites currently-reading fiction bo...10030.000000
5545Okay for Now0.128955to-read favorites currently-reading young-adul...10024.000000
5546The Middle Place0.128931to-read favorites currently-reading fiction bo...10030.000000
5547The Lonely Polygamist0.128915to-read favorites currently-reading fiction bo...10030.000000
5548The Picture of Dorian Gray: A Graphic Novel0.128907to-read fantasy favorites currently-reading yo...10026.000000
5549Blubber0.128886to-read favorites currently-reading young-adul...10023.000000
5550Wild Cards (Wild Cards, #1)0.128867to-read favorites currently-reading young-adul...10028.000000
5551Chasing Vermeer (Chasing Vermeer, #1)0.128812to-read fantasy favorites currently-reading yo...10026.000000
5552Humans of New York0.128770to-read favorites currently-reading young-adul...10024.000000
5553A Separate Reality0.128758to-read fantasy favorites currently-reading fi...10028.000000
5554A Tale for the Time Being0.128741to-read fantasy favorites currently-reading fi...10034.000000
5555I Was Here0.128732to-read favorites currently-reading young-adul...10026.000000
5556Twenty Boy Summer0.128715to-read favorites currently-reading young-adul...10030.000000
5557The Noticer: Sometimes, All a Person Needs Is ...0.128714to-read favorites currently-reading fiction bo...10027.000000
5558The Keeping (Law of the Lycans, #3)0.128683to-read fantasy favorites currently-reading fi...10024.000000
5559Shelter (Mickey Bolitar, #1)0.128682to-read favorites currently-reading young-adul...10029.000000
5560Envy (Fallen Angels, #3)0.128577to-read fantasy favorites currently-reading fi...10035.000000
5561All-of-a-Kind Family (All-of-a-Kind Family, #1)0.128563to-read favorites currently-reading young-adul...10027.000000
5562Night Probe! (Dirk Pitt, #6)0.128525to-read favorites currently-reading fiction bo...10030.000000
5563In the Shadow of the Banyan0.128502to-read favorites currently-reading fiction bo...10028.000000
5564The Harbinger: The Ancient Mystery that Holds ...0.128421to-read fantasy favorites currently-reading fi...10034.000000
5565The Piano Teacher0.128404to-read favorites currently-reading fiction bo...10029.000000
5566I Am Livia0.128361to-read fantasy favorites currently-reading yo...10026.000000
5567The Bridge Across Forever: A True Love Story0.128359to-read fantasy favorites currently-reading fi...10030.000000
5568The Heretic's Daughter0.128357to-read favorites currently-reading young-adul...10033.000000
5569Dirty Red (Love Me with Lies, #2)0.128343to-read favorites currently-reading young-adul...10028.000000
5570Modern Lovers0.128331to-read favorites currently-reading fiction bo...10023.000000
5571Min kamp 1 (Min kamp #1)0.128279to-read favorites currently-reading fiction bo...10033.000000
5572The Wolf of Wall Street0.128257to-read favorites currently-reading fiction bo...10034.000000
5573Just One Night (Just One Day, #2.5)0.128256to-read favorites currently-reading young-adul...10027.000000
5574This Is Where It Ends0.128252to-read favorites currently-reading young-adul...10025.000000
5575The Constant Gardener0.128246to-read favorites currently-reading fiction bo...10036.000000
5576A Matter of Honor0.128230to-read favorites currently-reading fiction bo...10031.000000
5577The Chaperone0.128197to-read favorites currently-reading fiction bo...10028.000000
5578Peril at End House (Hercule Poirot, #8)0.128139to-read favorites currently-reading fiction bo...10038.000000
5579Here on Earth0.128099to-read fantasy favorites currently-reading fi...10034.000000
5580News of the World0.128091to-read favorites currently-reading fiction bo...10028.000000
5581Unbroken: A World War II Story of Survival, Re...0.128079to-read favorites currently-reading fiction bo...10034.000000
5582The Hurricane Sisters0.128057to-read favorites currently-reading fiction bo...10024.000000
5583The Arrival0.128010to-read fantasy favorites currently-reading yo...10026.000000
5584The Guy Not Taken: Stories0.128001to-read favorites currently-reading fiction bo...10030.000000
5585Theodore Boone: Kid Lawyer (Theodore Boone, #1)0.127994to-read favorites currently-reading young-adul...10031.000000
5586The Last Little Blue Envelope (Little Blue Env...0.127991to-read favorites currently-reading young-adul...10027.000000
5587Saga, Vol. 5 (Saga, #5)0.127984to-read fantasy favorites currently-reading fi...10031.000000
5588Secret Daughter0.127930to-read favorites currently-reading fiction bo...10030.000000
5589North and South (North and South, #1)0.127876to-read favorites currently-reading fiction bo...10039.000000
5590An Untamed State0.127869to-read favorites currently-reading fiction bo...10027.000000
5591Eleven Minutes0.127869to-read favorites currently-reading fiction bo...10036.000000
5592What Is the What0.127831to-read favorites currently-reading fiction ow...10029.000000
5593Concealed in Death (In Death, #38)0.127826to-read fantasy favorites currently-reading fi...10034.000000
5594Kindred in Death (In Death, #29)0.127801to-read fantasy favorites currently-reading fi...10034.000000
5595Tales of Ordinary Madness0.127744to-read favorites currently-reading fiction bo...10031.000000
5596Dracula (Marvel Illustrated)0.127742to-read fantasy favorites currently-reading fi...10014.000000
5597The Things We Wish Were True0.127740to-read favorites currently-reading fiction bo...10023.000000
5598Not My Daughter0.127731to-read favorites currently-reading young-adul...10025.000000
5599Palace Walk (The Cairo Trilogy #1)0.127723to-read favorites currently-reading fiction bo...10032.000000
5600The Psychopath Test: A Journey Through the Mad...0.127667to-read favorites currently-reading fiction bo...10028.000000
5601The Stonekeeper's Curse (Amulet, #2)0.127662to-read fantasy favorites currently-reading yo...10026.000000
5602Such a Pretty Girl0.127653to-read favorites currently-reading young-adul...10026.000000
5603The Gold Coast0.127645to-read favorites currently-reading fiction bo...10036.000000
5604My Name Is Lucy Barton0.127619to-read favorites currently-reading fiction bo...10025.000000
5605Faith0.127580to-read favorites currently-reading fiction bo...10027.000000
5606Ramona the Pest (Ramona, #2)0.127569to-read favorites currently-reading young-adul...10027.000000
5607Amadeus0.127551to-read favorites currently-reading fiction bo...10031.000000
5608Desecration (Left Behind, #9)0.127521to-read fantasy favorites currently-reading fi...10033.000000
5609Walking Disaster (Beautiful, #2)0.127445to-read favorites currently-reading young-adul...10035.000000
5610Bridge to Haven0.127436to-read favorites currently-reading fiction bo...10029.000000
5611Shock Wave (Dirk Pitt, #13)0.127435to-read favorites currently-reading fiction bo...10032.000000
5612Size 12 Is Not Fat (Heather Wells, #1)0.127422to-read favorites currently-reading young-adul...10035.000000
5613Wish You Well0.127368to-read favorites currently-reading young-adul...10034.000000
5614What Do You Care What Other People Think?0.127355to-read favorites currently-reading fiction bo...10029.000000
5615Hyperspace0.127344to-read favorites currently-reading fiction bo...10021.000000
5616Mount Dragon0.127307to-read fantasy favorites currently-reading fi...10031.000000
5617Child 44 (Leo Demidov, #1)0.127265to-read favorites currently-reading fiction bo...10039.000000
5618Addicted to You (Addicted, #1)0.127245to-read favorites currently-reading young-adul...10029.000000
5619The Life-Changing Magic of Tidying Up: The Jap...0.127180to-read favorites currently-reading books-i-ow...10026.000000
5620The Tiger Who Came to Tea0.127160to-read fantasy favorites currently-reading fi...10019.000000
5621Mistress of the Art of Death (Mistress of the ...0.127151to-read fantasy favorites currently-reading fi...10034.000000
5622Legally Blonde0.127126to-read favorites currently-reading young-adul...10020.000000
5623The Buddha in the Attic0.127121to-read favorites currently-reading fiction bo...10026.000000
5624Affinity0.127104to-read fantasy favorites currently-reading fi...10032.000000
5625At Bertram's Hotel (Miss Marple, #11)0.126972to-read favorites currently-reading fiction bo...10037.000000
5626Wanted (Pretty Little Liars, #8)0.126948to-read currently-reading young-adult fiction ...10031.000000
5627The Hollow (Sign of Seven, #2)0.126943to-read fantasy favorites currently-reading fi...10035.000000
5628The Sunday Philosophy Club (Isabel Dalhousie, #1)0.126894to-read favorites currently-reading fiction bo...10034.000000
5629Inside the O'Briens0.126845to-read favorites fiction books-i-own owned fa...10024.000000
5630A Head Full of Ghosts0.126844to-read fantasy favorites currently-reading fi...10027.000000
5631Eight Hundred Grapes0.126843to-read favorites currently-reading fiction bo...10024.000000
5632The Amityville Horror0.126833to-read fantasy favorites currently-reading fi...10037.000000
5633Bartleby the Scrivener0.126798to-read favorites currently-reading fiction bo...10030.000000
5634Romancing Mister Bridgerton (Bridgertons, #4)0.126795to-read favorites currently-reading fiction bo...10031.000000
5635The Next Best Thing0.126774to-read favorites currently-reading fiction bo...10030.000000
5636The Madonnas of Leningrad0.126760to-read favorites currently-reading fiction bo...10028.000000
5637The Vincent Brothers (The Vincent Boys, #2)0.126727to-read favorites currently-reading young-adul...10035.000000
5638Cold Fire / Hideaway / The Key to Midnight0.126680to-read fantasy favorites currently-reading fi...10019.000000
5639Lullabies for Little Criminals0.126670to-read favorites currently-reading young-adul...10032.000000
5640Riptide0.126652to-read fantasy favorites currently-reading fi...10037.000000
5641Sad Cypress (Hercule Poirot, #21)0.126610to-read favorites currently-reading fiction bo...10039.000000
5642Scruples0.126582to-read favorites currently-reading fiction bo...10027.000000
5643The Haunted Mask (Goosebumps, #11)0.126522to-read fantasy favorites currently-reading yo...10028.000000
5644The Strange Case of Origami Yoda (Origami Yoda...0.126520to-read fantasy favorites currently-reading yo...10020.000000
5645Barely Breathing (Breathing, #2)0.126507to-read favorites currently-reading young-adul...10032.000000
5646A Walk in the Woods0.126494to-read favorites currently-reading fiction bo...10032.000000
5647Mr. Kiss and Tell (Veronica Mars, #2)0.126473to-read favorites young-adult fiction books-i-...10031.000000
5648Fine Things0.126457to-read favorites currently-reading fiction bo...10025.000000
5649Bad Monkey0.126431to-read favorites currently-reading fiction bo...10032.000000
5650Thr3e0.126411to-read fantasy favorites currently-reading yo...10037.000000
5651The Lion King (Disney's Wonderful World of Rea...0.126375to-read fantasy favorites currently-reading fi...10018.000000
5652100 Selected Poems0.126365to-read favorites currently-reading fiction bo...10035.000000
5653The Sun Is Also a Star0.126356to-read favorites currently-reading young-adul...10028.000000
5654The Illustrated Mum0.126332to-read favorites currently-reading young-adul...10026.000000
5655Summer Secrets0.126326to-read favorites currently-reading fiction bo...10023.000000
5656Out of Breath (Breathing, #3)0.126305to-read favorites currently-reading young-adul...10031.000000
5657Out to Canaan (Mitford Years, #4)0.126304to-read favorites currently-reading fiction bo...10031.000000
5658There's a Boy in the Girls' Bathroom0.126300to-read favorites currently-reading young-adul...10027.000000
5659Mrs. Lincoln's Dressmaker0.126299to-read favorites currently-reading fiction bo...10027.000000
5660Nine Rules to Break When Romancing a Rake (Lov...0.126260to-read favorites currently-reading fiction bo...10031.000000
5661A Time to Kill0.126252to-read favorites currently-reading fiction bo...10041.000000
5662The Night Watch0.126204to-read favorites currently-reading fiction bo...10036.000000
5663The Life We Bury0.126197to-read favorites currently-reading fiction bo...10025.000000
5664When Calls the Heart (Canadian West, #1)0.126168to-read favorites currently-reading young-adul...10034.000000
5665Fall From Grace (Mad World, #1)0.126142to-read fantasy favorites currently-reading yo...10025.000000
5666A Rose for Emily and Other Stories0.126127to-read favorites currently-reading young-adul...10027.000000
5667The Collected Poems of W.B. Yeats0.126095to-read favorites currently-reading fiction bo...10030.000000
5668Immortal in Death (In Death, #3)0.126029to-read fantasy favorites currently-reading fi...10033.000000
5669Born to Run: A Hidden Tribe, Superathletes, an...0.125992to-read favorites fiction books-i-own owned fa...10029.000000
5670Tampa0.125979to-read favorites currently-reading fiction bo...10027.000000
5671Save Me0.125968to-read favorites currently-reading fiction bo...10031.000000
5672Saga, Vol. 4 (Saga, #4)0.125930to-read fantasy favorites currently-reading fi...10033.000000
5673The League of Extraordinary Gentlemen, Vol. 20.125912to-read fantasy favorites currently-reading fi...10029.000000
5674Red Riding Hood0.125905to-read fantasy favorites currently-reading yo...10036.000000
5675Crooked House0.125891to-read favorites currently-reading fiction bo...10039.000000
5676The Innovators: How a Group of Hackers, Geniu...0.125858to-read favorites currently-reading books-i-ow...10028.000000
5677Snow White and the Seven Dwarfs (Little Golden...0.125811to-read fantasy favorites currently-reading fi...10023.000000
5678Clash (Crash, #2)0.125790to-read favorites currently-reading young-adul...10032.000000
5679One Good Turn (Jackson Brodie, #2)0.125766to-read favorites currently-reading fiction bo...10032.000000
5680Rapunzel0.125743to-read fantasy favorites currently-reading yo...10017.000000
5681The Mediterranean Caper (Dirk Pitt, #2)0.125680to-read favorites currently-reading fiction bo...10033.000000
5682Two Boys Kissing0.125662to-read favorites currently-reading young-adul...10028.000000
5683Party Princess (The Princess Diaries, #7)0.125601to-read favorites currently-reading young-adul...10035.000000
5684Meet Samantha: An American Girl (American Girl...0.125550to-read favorites currently-reading young-adul...10022.000000
5685Dept. of Speculation0.125550to-read favorites currently-reading fiction bo...10027.000000
5686Key of Valor (Key Trilogy, #3)0.125536to-read fantasy favorites currently-reading fi...10034.000000
5687Forbidden0.125533to-read favorites currently-reading young-adul...10029.000000
5688Poirot Investiga (Hércules Poirot, #3)0.125501to-read favorites currently-reading fiction bo...10037.000000
5689The Flamethrowers0.125496to-read favorites currently-reading fiction bo...10031.000000
5690Girl in Translation0.125471to-read favorites currently-reading young-adul...10031.000000
5691Hercule Poirot's Christmas (Hercule Poirot, #20)0.125450to-read favorites currently-reading fiction bo...10037.000000
5692Fireproof0.125380to-read favorites currently-reading fiction bo...10028.000000
5693The Last Sin Eater0.125365to-read fantasy favorites currently-reading fi...10030.000000
5694The Guest Room0.125352to-read favorites currently-reading fiction bo...10023.000000
5695The Astronaut Wives Club0.125342to-read favorites currently-reading fiction bo...10024.000000
5696The Gate House0.125328to-read favorites currently-reading fiction bo...10030.000000
5697Leota's Garden0.125322to-read favorites currently-reading young-adul...10028.000000
5698Cocktails for Three0.125283to-read favorites currently-reading fiction bo...10030.000000
5699Gift from the Sea0.125230to-read favorites currently-reading fiction bo...10026.000000
5700Ungifted0.125225to-read favorites currently-reading young-adul...10023.000000
5701Maya's Notebook0.125203to-read favorites currently-reading young-adul...10034.000000
5702Man's Search for Meaning0.125195to-read favorites currently-reading fiction bo...10036.000000
5703Where the Wild Things Are0.125129to-read fantasy favorites currently-reading yo...10030.000000
5704The Nest0.125097to-read favorites currently-reading fiction bo...10028.000000
5705On the Banks of Plum Creek (Little House, #4)0.125091to-read favorites currently-reading young-adul...10029.000000
5706The Ice Limit (Ice Limit #1)0.125087to-read fantasy favorites currently-reading fi...10035.000000
5707Two-Way Street0.125069to-read favorites currently-reading young-adul...10031.000000
5708Dreams of Joy (Shanghai Girls #2)0.125063to-read favorites currently-reading fiction bo...10032.000000
5709سینوهه0.125052to-read favorites currently-reading fiction bo...10033.000000
5710This Heart of Mine (Chicago Stars, #5)0.125029to-read favorites currently-reading fiction bo...10033.000000
5711Vain (The Seven Deadly, #1)0.125027to-read favorites currently-reading young-adul...10028.000000
5712Live and Let Die (James Bond, #2)0.124996to-read favorites currently-reading fiction bo...10038.000000
5713Strangers on a Train0.124996to-read favorites currently-reading fiction bo...10035.000000
5714Innocent Traitor0.124982to-read favorites currently-reading fiction bo...10031.000000
5715Big Magic: Creative Living Beyond Fear0.124968to-read favorites currently-reading books-i-ow...10028.000000
5716Beach Town0.124966to-read favorites currently-reading fiction bo...10027.000000
5717Disclaimer0.124956to-read favorites currently-reading fiction bo...10029.000000
5718Watermelon (Walsh Family, #1)0.124934to-read favorites currently-reading fiction bo...10035.000000
5719Endurance: Shackleton's Incredible Voyage0.124907to-read favorites currently-reading fiction bo...10034.000000
5720Stranger than Fiction0.124904to-read favorites currently-reading fiction bo...10034.000000
5721Pushing the Limits (Pushing the Limits, #1)0.124902to-read favorites currently-reading young-adul...10030.000000
5722Phantoms0.124895to-read fantasy favorites currently-reading fi...10036.000000
5723Still Life With Crows (Pendergast, #4)0.124889to-read fantasy favorites currently-reading fi...10037.000000
5724The Ice Twins0.124885to-read favorites currently-reading fiction bo...10029.000000
5725X (Kinsey Millhone, #24)0.124841to-read favorites currently-reading fiction bo...10026.000000
5726The Third Wheel (Diary of a Wimpy Kid, #7)0.124758to-read fantasy favorites currently-reading yo...10033.000000
5727I Do -- But I Don't0.124745to-read favorites currently-reading fiction bo...10026.000000
5728The Vanishing Act of Esme Lennox0.124729to-read favorites fiction books-i-own owned fa...10029.000000
5729Suffer the Children0.124717to-read fantasy favorites currently-reading yo...10034.000000
5730Seize the Night (Moonlight Bay, #2)0.124674to-read fantasy favorites currently-reading fi...10036.000000
5731Pardonable Lies (Maisie Dobbs, #3)0.124632to-read favorites currently-reading fiction bo...10027.000000
5732Wicked - Piano/Vocal Arrangement0.124618to-read fantasy favorites currently-reading fi...10020.000000
5733Dancing Wu Li Masters: An Overview of the New ...0.124606to-read favorites currently-reading fiction bo...10024.000000
5734A Grown-Up Kind of Pretty0.124590to-read favorites currently-reading fiction bo...10027.000000
5735The Soldier's Wife0.124589to-read favorites currently-reading fiction bo...10027.000000
5736The Time in Between0.124579to-read favorites currently-reading fiction bo...10031.000000
5737A Year in the Merde0.124575to-read favorites currently-reading fiction bo...10033.000000
5738Cities of the Plain (The Border Trilogy, #3)0.124539to-read favorites currently-reading fiction bo...10030.000000
5739Staying Fat for Sarah Byrnes0.124492to-read favorites currently-reading young-adul...10020.000000
5740We're All Damaged0.124460to-read favorites currently-reading fiction bo...10025.000000
5741Peak (Peak #1)0.124438to-read favorites currently-reading young-adul...10027.000000
5742Miramont's Ghost0.124438to-read fantasy favorites currently-reading fi...10026.000000
5743The World Without Us0.124429to-read favorites currently-reading fiction bo...10027.000000
5744The Spellman Files (The Spellmans, #1)0.124406to-read favorites currently-reading young-adul...10033.000000
5745Hard Luck (Diary of a Wimpy Kid, #8)0.124404to-read favorites currently-reading young-adul...10031.000000
5746Where the Mountain Meets the Moon0.124374to-read fantasy favorites currently-reading yo...10022.000000
5747Gulp: Adventures on the Alimentary Canal0.124359to-read favorites currently-reading books-i-ow...10022.000000
5748The Cricket in Times Square0.124267to-read fantasy favorites currently-reading yo...10025.000000
5749The Mystery of the Blue Train (Hercule Poirot,...0.124231to-read favorites currently-reading fiction bo...10039.000000
5750Broken Silence (Silence, #2)0.124215to-read favorites currently-reading young-adul...10027.000000
5751Civil Disobedience and Other Essays0.124201to-read favorites currently-reading fiction bo...10025.000000
5752The Abstinence Teacher0.124182to-read favorites currently-reading fiction bo...10027.000000
5753Princess Mia (The Princess Diaries, #9)0.124156to-read favorites currently-reading young-adul...10033.000000
5754Scary Stories to Tell in the Dark (Scary Stori...0.124148to-read fantasy favorites currently-reading yo...10027.000000
5755Summer Island0.124132to-read favorites currently-reading fiction bo...10029.000000
5756Pulse (Collide, #2)0.124125to-read favorites currently-reading young-adul...10034.000000
5757George0.124109to-read favorites currently-reading young-adul...10019.000000
5758Thinner0.124088to-read fantasy favorites currently-reading fi...10038.000000
5759Better off Friends0.124052to-read favorites currently-reading young-adul...10025.000000
5760Locke & Key, Vol. 3: Crown of Shadows0.124007to-read fantasy favorites currently-reading yo...10025.000000
5761A Caribbean Mystery (Miss Marple, #10)0.123967to-read favorites currently-reading fiction bo...10035.000000
5762Push0.123957to-read favorites currently-reading young-adul...10032.000000
5763Napalm & Silly Putty0.123939to-read favorites currently-reading fiction bo...10030.000000
5764Just for Now (Sea Breeze, #4)0.123920to-read favorites currently-reading young-adul...10037.000000
5765Descent0.123902to-read favorites currently-reading fiction bo...10024.000000
5766Go the Fuck to Sleep0.123887to-read favorites currently-reading young-adul...10030.000000
5767That Old Cape Magic0.123885to-read currently-reading fiction owned defaul...10019.000000
5768The Lorax0.123869to-read fantasy favorites currently-reading yo...10028.000000
5769A Yellow Raft in Blue Water0.123866to-read favorites currently-reading young-adul...10031.000000
5770Exit to Eden0.123843to-read fantasy favorites currently-reading fi...10033.000000
5771Not Quite Dating (Not Quite, #1)0.123822to-read favorites currently-reading fiction bo...10028.000000
5772Big Trouble0.123806to-read favorites currently-reading fiction bo...10029.000000
5773What We Keep0.123806to-read favorites currently-reading fiction bo...10028.000000
5774He's Just Not That Into You: The No-Excuses Tr...0.123792to-read favorites currently-reading fiction bo...10030.000000
5775Saga, Vol. 3 (Saga, #3)0.123790to-read fantasy favorites currently-reading fi...10033.000000
5776The Murderer's Daughters0.123787to-read favorites currently-reading fiction bo...10027.000000
5777A Different Blue0.123738to-read favorites currently-reading young-adul...10029.000000
5778Nothing's Fair in Fifth Grade0.123723to-read favorites currently-reading young-adul...10022.000000
5779Take a Chance (Rosemary Beach, #7; Chance, #1)0.123700favorites currently-reading young-adult fictio...10032.000000
5780Those Who Leave and Those Who Stay (The Neapol...0.123665to-read favorites currently-reading fiction bo...10029.000000
5781If You Find Me0.123664to-read favorites currently-reading young-adul...10028.000000
5782Reunion in Death (In Death, #14)0.123646to-read fantasy favorites currently-reading fi...10035.000000
5783Tell Me Your Dreams0.123633to-read favorites currently-reading fiction bo...10036.000000
5784The Little Friend0.123622to-read favorites currently-reading fiction bo...10037.000000
5785The Complete Adventures of Peter Rabbit0.123601to-read fantasy favorites currently-reading fi...10025.000000
5786Stormy, Misty's Foal (Misty, #3)0.123565to-read favorites currently-reading young-adul...10023.000000
5787Lady Almina and the Real Downton Abbey: The Lo...0.123547to-read favorites currently-reading fiction bo...10033.000000
5788Prom and Prejudice0.123537to-read favorites currently-reading young-adul...10025.000000
5789Wait for You (Wait for You, #1)0.123514to-read favorites currently-reading young-adul...10032.000000
5790Rage0.123461to-read fantasy favorites currently-reading yo...10037.000000
5791The Art of Amy Brown0.123336to-read fantasy favorites currently-reading yo...10018.000000
5792Deep and Dark and Dangerous (A Ghost Story)0.123332to-read fantasy favorites currently-reading yo...10027.000000
5793Ripper0.123320to-read favorites currently-reading young-adul...10030.000000
5794Seduce Me at Sunrise (The Hathaways, #2)0.123315to-read favorites currently-reading fiction bo...10032.000000
5795The Mist0.123278to-read fantasy favorites currently-reading fi...10034.000000
5796The Book of Ruth0.123247to-read favorites currently-reading fiction bo...10030.000000
5797Princess on the Brink (The Princess Diaries, #8)0.123247to-read favorites currently-reading young-adul...10034.000000
5798The Overcoat0.123242to-read fantasy favorites currently-reading fi...10030.000000
5799Natchez Burning0.123221to-read favorites currently-reading fiction bo...10030.000000
5800Megan Meade's Guide to the McGowan Boys0.123208to-read favorites currently-reading young-adul...10028.000000
5801An Officer and a Spy0.123189to-read favorites currently-reading fiction bo...10032.000000
5802Devil in Winter (Wallflowers, #3)0.123171to-read favorites currently-reading fiction bo...10035.000000
5803The Beach House0.123144to-read favorites currently-reading fiction bo...20017.500000
5804The Beach House0.056560to-read favorites currently-reading fiction bo...20017.500000
5805The Painted Bird0.123107to-read favorites currently-reading fiction bo...10033.000000
5806The Forty Rules of Love0.123105to-read favorites currently-reading fiction bo...10029.000000
5807Before I Go to Sleep0.123099to-read favorites currently-reading fiction bo...10032.000000
5808Rump: The True Story of Rumpelstiltskin0.123097to-read fantasy favorites currently-reading yo...10021.000000
5809Did You Ever Have a Family0.123080to-read favorites currently-reading fiction bo...10027.000000
5810The Dead in Their Vaulted Arches (Flavia de Lu...0.123006to-read favorites currently-reading young-adul...10027.000000
5811The Regulators0.122984to-read fantasy favorites currently-reading fi...10038.000000
5812Ruby0.122977to-read favorites currently-reading fiction bo...10029.000000
5813My Sister's Grave (Tracy Crosswhite #1)0.122973to-read favorites currently-reading fiction bo...10028.000000
5814Stay with Me (Wait for You, #3)0.122965to-read favorites currently-reading young-adul...10030.000000
5815The Bone Tree0.122929to-read favorites currently-reading fiction bo...10030.000000
5816Different Seasons0.122909to-read fantasy favorites currently-reading fi...10041.000000
5817A Visit from the Goon Squad0.122888to-read favorites currently-reading fiction bo...10033.000000
5818The Sisterhood0.122881to-read favorites currently-reading fiction bo...10025.000000
5819A Voice in the Wind (Mark of the Lion, #1)0.122880to-read favorites currently-reading fiction bo...10038.000000
5820Twelve Years a Slave0.122850to-read favorites currently-reading fiction bo...10038.000000
5821The Private Patient (Adam Dalgliesh #14)0.122825to-read favorites currently-reading fiction bo...10032.000000
5822Hearts in Atlantis0.122809to-read fantasy favorites currently-reading fi...10035.000000
5823The Stand: Soul Survivors0.122809to-read fantasy favorites currently-reading fi...10021.000000
5824Animalia0.122798to-read fantasy favorites currently-reading yo...10025.000000
5825The Road to Little Dribbling: Adventures of an...0.122782to-read favorites currently-reading fiction bo...10027.000000
5826Glory over Everything: Beyond The Kitchen House0.122767to-read favorites currently-reading fiction bo...10024.000000
5827Crimson Shore (Pendergast, #15)0.122721to-read fantasy favorites currently-reading fi...10027.000000
5828Those Girls0.122696to-read favorites currently-reading fiction bo...10028.000000
5829Clouds of Witness (Lord Peter Wimsey, #2)0.122632to-read favorites currently-reading fiction bo...10033.000000
5830They Do It with Mirrors (Miss Marple, #6)0.122575to-read favorites currently-reading fiction bo...10036.000000
5831The Heretic Queen0.122561to-read favorites currently-reading young-adul...10034.000000
5832Jaya: An Illustrated Retelling of the Mahabharata0.122537to-read fantasy favorites currently-reading fi...10035.000000
5833Goodbye, Columbus and Five Short Stories0.122523to-read favorites currently-reading fiction bo...10027.000000
5834The Stars Shine Down0.122520to-read favorites currently-reading young-adul...10031.000000
5835The Pecan Man0.122502to-read favorites currently-reading fiction bo...10023.000000
5836Savages0.122490to-read favorites currently-reading fiction bo...10033.000000
5837By the Shores of Silver Lake (Little House, #5)0.122488to-read favorites currently-reading young-adul...10026.000000
5838Pygmy0.122442to-read favorites fiction books-i-own owned ow...10031.000000
5839The Monkey's Paw (Oxford Bookworms)0.122419to-read fantasy favorites currently-reading yo...10028.000000
5840Otherwise Known as Sheila the Great (Fudge #2)0.122408to-read favorites currently-reading young-adul...10025.000000
5841Curtain (Hercule Poirot, #39)0.122407to-read favorites currently-reading fiction bo...10040.000000
5842Reflected in You (Crossfire, #2)0.122403to-read favorites currently-reading fiction bo...10039.000000
5843At Home: A Short History of Private Life0.122397to-read favorites currently-reading fiction bo...10031.000000
5844Life After God0.122394to-read favorites currently-reading fiction bo...10030.000000
5845The Space Between Us0.122385to-read favorites currently-reading fiction bo...10029.000000
5846Prophet0.122369to-read fantasy favorites currently-reading fi...10034.000000
5847Something Like Fate0.122353to-read favorites currently-reading young-adul...10029.000000
5848The Giving Tree0.122298to-read fantasy favorites currently-reading yo...10031.000000
5849Simple Perfection (Rosemary Beach, #6; Perfect...0.122222to-read favorites currently-reading young-adul...10033.000000
5850Killing Reagan: The Violent Assault That Chang...0.122161to-read favorites currently-reading fiction bo...10022.000000
5851Inside of a Dog: What Dogs See, Smell, and Know0.122098to-read favorites currently-reading books-i-ow...10027.000000
5852The Good Girl0.122093to-read favorites currently-reading fiction bo...10027.000000
5853Disgrace0.122090to-read favorites currently-reading fiction bo...10035.000000
5854Hamilton: The Revolution0.122065to-read favorites currently-reading fiction bo...10027.000000
5855I Am Malala: The Story of the Girl Who Stood U...0.122043to-read favorites currently-reading young-adul...10033.000000
5856A Girl Like You0.121961to-read favorites currently-reading young-adul...10029.000000
5857The Twits0.121951to-read fantasy favorites currently-reading yo...10026.000000
5858The Men Who Stare at Goats0.121936to-read favorites currently-reading fiction bo...10033.000000
5859Angels (Walsh Family, #3)0.121909to-read favorites currently-reading fiction bo...10033.000000
5860Dream a Little Dream (Chicago Stars, #4)0.121907to-read favorites currently-reading fiction bo...10031.000000
5861The Housekeeper and the Professor0.121905to-read favorites currently-reading fiction bo...10028.000000
5862Lonesome Dove0.121874to-read favorites currently-reading fiction bo...10044.000000
5863The Fixer Upper0.121867to-read favorites currently-reading fiction bo...10025.000000
5864Bonk: The Curious Coupling of Science and Sex0.121855to-read favorites currently-reading books-i-ow...10024.000000
5865The Mating (Law of the Lycans, #2)0.121841to-read fantasy favorites currently-reading yo...10020.000000
5866Call for the Dead0.121837to-read favorites currently-reading fiction bo...10037.000000
5867Every Fifteen Minutes0.121828to-read favorites currently-reading fiction bo...10025.000000
5868The Covenant (Abram's Daughters, #1)0.121815to-read favorites currently-reading young-adul...10026.000000
5869The Finding (Law of the Lycans, #5)0.121784to-read fantasy favorites currently-reading fi...10023.000000
5870The Bastard (Kent Family Chronicles, #1)0.121753to-read favorites currently-reading fiction bo...10034.000000
5871A Raisin in the Sun0.121742to-read favorites currently-reading young-adul...10028.000000
5872Icy Sparks0.121739to-read favorites currently-reading young-adul...10034.000000
5873Dare You To (Pushing the Limits, #2)0.121716to-read favorites currently-reading young-adul...10027.000000
5874My Friend Leonard0.121715to-read favorites currently-reading fiction bo...10037.000000
5875Tricky Twenty-Two (Stephanie Plum, #22)0.121699to-read favorites currently-reading fiction bo...10025.000000
5876The Sky is Falling0.121687to-read favorites currently-reading young-adul...10030.000000
5877Walk Two Moons0.121677to-read favorites currently-reading young-adul...10031.000000
5878Nantucket Nights0.121616to-read favorites currently-reading fiction bo...10023.000000
5879On Dublin Street (On Dublin Street, #1)0.121592to-read favorites currently-reading young-adul...10033.000000
5880Winter Moon0.121589to-read fantasy favorites currently-reading fi...10032.000000
5881Evening Class0.121586to-read favorites currently-reading fiction bo...10033.000000
5882Hairy Maclary from Donaldson's Dairy0.121577to-read favorites currently-reading fiction ow...10019.000000
5883The Body in the Library (Miss Marple, #3)0.121539to-read favorites currently-reading fiction bo...10039.000000
5884Meant to Be0.121511to-read favorites currently-reading young-adul...10031.000000
5885The Girl in the Spider's Web (Millennium, #4)0.121479to-read favorites currently-reading fiction bo...10030.000000
5886The Girl from Krakow0.121450to-read favorites currently-reading fiction bo...10028.000000
5887How to Read Literature Like a Professor: A Liv...0.121424to-read currently-reading fiction books-i-own ...10034.000000
5888The Art Forger0.121423to-read favorites currently-reading fiction bo...10026.000000
5889Big Stone Gap (Big Stone Gap, #1)0.121423to-read favorites currently-reading fiction bo...10031.000000
5890Sex and the City0.121395to-read favorites currently-reading fiction bo...10032.000000
5891Faking It (Losing It, #2)0.121392to-read favorites young-adult fiction books-i-...10031.000000
5892Bad for You (Sea Breeze, #7)0.121388to-read favorites currently-reading young-adul...10033.000000
5893A Thousand Boy Kisses0.121334to-read favorites currently-reading young-adul...10027.000000
5894Annie on My Mind0.121331to-read favorites currently-reading young-adul...10029.000000
5895The Miseducation of Cameron Post0.121308to-read favorites currently-reading young-adul...10026.000000
5896Six Easy Pieces: Essentials of Physics By Its ...0.121258to-read favorites currently-reading books-i-ow...10026.000000
5897Madame Tussaud: A Novel of the French Revolution0.121213to-read favorites currently-reading fiction bo...10027.000000
5898Frog Music0.121154to-read favorites currently-reading fiction bo...10029.000000
5899The Celestine Prophecy (Celestine Prophecy, #1)0.121148to-read fantasy favorites currently-reading fi...10037.000000
5900The Short Drop (Gibson Vaughn, #1)0.121122to-read favorites currently-reading fiction bo...10026.000000
59014:50 from Paddington (Miss Marple, #8)0.121119to-read favorites currently-reading fiction bo...10039.000000
5902The Master Butchers Singing Club0.121107to-read favorites currently-reading fiction bo...10033.000000
5903False Impression0.121073to-read favorites currently-reading fiction bo...10033.000000
5904One Fifth Avenue0.121022to-read favorites currently-reading fiction bo...10035.000000
5905Low Pressure0.120991to-read favorites currently-reading fiction bo...10029.000000
5906Tales from a Not-So-Talented Pop Star (Dork Di...0.120986to-read favorites currently-reading young-adul...10028.000000
5907Follow the River0.120972to-read favorites currently-reading young-adul...10033.000000
5908The Monk Who Sold His Ferrari: A Fable About F...0.120953to-read favorites currently-reading fiction bo...10034.000000
5909Dragon Tears0.120934to-read fantasy favorites currently-reading fi...10033.000000
5910Iceberg (Dirk Pitt, #3)0.120927to-read favorites currently-reading fiction bo...10030.000000
5911The Bourbon Kings (The Bourbon Kings, #1)0.120906to-read fantasy favorites currently-reading fi...10027.000000
5912Breathe (Sea Breeze, #1)0.120892to-read favorites currently-reading young-adul...10030.000000
5913The Fabric of the Cosmos: Space, Time, and the...0.120867to-read favorites currently-reading books-i-ow...10027.000000
5914Simply Irresistible (Lucky Harbor, #1)0.120856to-read favorites currently-reading fiction bo...10028.000000
5915Elephants Can Remember (Hercule Poirot, #37)0.120833to-read favorites currently-reading fiction bo...10039.000000
5916The Seven-Percent Solution0.120786to-read favorites currently-reading fiction bo...10031.000000
5917Wayside School Gets A Little Stranger (Wayside...0.120736to-read fantasy favorites currently-reading yo...10029.000000
5918All the King's Men0.120703to-read favorites currently-reading fiction bo...10034.000000
5919Whitethorn Woods0.120696to-read favorites currently-reading fiction bo...10029.000000
5920Blue Monday (Frieda Klein, #1)0.120671to-read favorites currently-reading fiction bo...10030.000000
5921Love the One You're With0.120667to-read favorites currently-reading fiction bo...10033.000000
5922The Zookeeper's Wife0.120659to-read favorites currently-reading fiction bo...10029.000000
5923Little House on Rocky Ridge (Little House: The...0.120629to-read favorites currently-reading young-adul...10026.000000
5924The Kitchen God's Wife0.120621to-read favorites currently-reading fiction bo...10031.000000
5925The Missing Piece0.120619to-read fantasy favorites currently-reading yo...10027.000000
5926Dragons of Eden: Speculations on the Evolution...0.120561to-read favorites currently-reading fiction bo...10025.000000
5927Mud Vein0.120538to-read favorites currently-reading fiction bo...10028.000000
5928The Other Woman0.120535to-read favorites currently-reading fiction bo...10030.000000
5929Another Piece of My Heart0.120510to-read favorites currently-reading fiction bo...10028.000000
5930A Monstrous Regiment of Women (Mary Russell, #2)0.120481to-read fantasy favorites currently-reading fi...10032.000000
5931Code to Zero0.120467to-read favorites currently-reading fiction bo...10034.000000
5932Lucia, Lucia0.120463to-read favorites currently-reading young-adul...10033.000000
5933Love Does: Discover a Secretly Incredible Life...0.120415to-read favorites currently-reading books-i-ow...10030.000000
5934Strong Poison (Lord Peter Wimsey, #6)0.120415to-read favorites currently-reading fiction bo...10035.000000
5935The Job (Fox and O'Hare, #3)0.120402to-read favorites currently-reading fiction bo...10024.000000
5936The Rumor0.120364to-read favorites currently-reading fiction bo...10024.000000
5937Haunted0.120315to-read fantasy favorites currently-reading fi...10034.000000
5938Open House0.120290to-read favorites currently-reading fiction bo...10032.000000
5939A Pocket for Corduroy0.120271to-read fantasy favorites currently-reading yo...10018.000000
5940Adam0.120253to-read fantasy favorites currently-reading yo...10034.000000
5941Beautiful Bastard (Beautiful Bastard, #1)0.120236to-read favorites currently-reading fiction bo...10035.000000
5942The Traveler's Gift: Seven Decisions that Dete...0.120226to-read fantasy favorites currently-reading fi...10028.000000
5943Kitchens of the Great Midwest0.120197to-read favorites currently-reading fiction bo...10025.000000
5944The Bourne Identity (Jason Bourne, #1)0.120194to-read favorites currently-reading fiction bo...10042.000000
5945Killing Jesus: A History0.120155to-read favorites currently-reading fiction bo...10028.000000
5946The Essential Rumi0.120152to-read favorites currently-reading fiction bo...10026.000000
5947Galveston0.120129to-read favorites currently-reading fiction bo...10031.000000
5948Last Night at Chateau Marmont0.120121to-read favorites currently-reading owned-book...10028.000000
5949The Memoirs of Cleopatra0.120107to-read favorites currently-reading fiction bo...10037.000000
5950Making Faces0.120083to-read favorites currently-reading young-adul...10028.000000
5951Hot Water Music0.120053to-read favorites currently-reading fiction bo...10029.000000
5952The Boys in the Boat: Nine Americans and Their...0.120022to-read favorites currently-reading fiction bo...10027.000000
5953The Nix0.119975to-read favorites currently-reading fiction bo...10029.000000
5954Savannah Breeze (Weezie and Bebe Mysteries, #2)0.119935to-read currently-reading fiction books-i-own ...10022.000000
5955In the Heart of the Sea: The Tragedy of the Wh...0.119910to-read favorites currently-reading fiction bo...10031.000000
5956Mudbound0.119874to-read favorites currently-reading young-adul...10027.000000
5957Where They Found Her0.119838to-read favorites currently-reading fiction bo...10026.000000
5958Heart of the Matter0.119831to-read favorites currently-reading fiction bo...10031.000000
5959Summer People0.119830to-read favorites currently-reading fiction bo...10025.000000
5960Cold Vengeance (Pendergast, #11)0.119822to-read fantasy favorites currently-reading fi...10030.000000
5961Cross My Heart (Cross My Heart, #1)0.119807to-read favorites currently-reading young-adul...10026.000000
5962Schooled0.119793to-read favorites currently-reading young-adul...10022.000000
5963In the Penal Colony0.119789to-read favorites fiction books-i-own owned fa...10030.000000
5964The Art of Seduction0.119784to-read favorites currently-reading books-i-ow...10030.000000
5965Imperium: A Novel of Ancient Rome (Cicero, #1)0.119784to-read favorites currently-reading fiction bo...10033.000000
5966Do No Harm: Stories of Life, Death and Brain S...0.119762to-read favorites currently-reading fiction bo...10027.000000
5967La Dame aux Camélias0.119748to-read favorites currently-reading fiction bo...10034.000000
5968The Bride (Lairds' Fiancées, #1)0.119716to-read favorites currently-reading fiction bo...10035.000000
5969The Rent Collector0.119715to-read favorites currently-reading young-adul...10027.000000
5970The Tiger Rising0.119705to-read fantasy favorites currently-reading yo...10027.000000
5971One Summer: America, 19270.119687to-read favorites currently-reading fiction bo...10027.000000
5972Hardline (Hacker, #3)0.119667to-read favorites currently-reading fiction bo...10033.000000
5973The Consolations of Philosophy0.119570to-read favorites currently-reading books-i-ow...10031.000000
5974Very Valentine0.119534to-read favorites currently-reading fiction bo...10029.000000
5975The Paper Bag Princess0.119510to-read fantasy favorites currently-reading yo...10023.000000
5976In This Mountain (Mitford Years, #7)0.119499to-read favorites currently-reading fiction bo...10027.000000
5977Treasure (Dirk Pitt, #9)0.119493to-read favorites currently-reading fiction bo...10031.000000
5978Breath0.119459to-read favorites currently-reading young-adul...10035.000000
5979Speaking from Among the Bones (Flavia de Luce,...0.119455to-read favorites currently-reading young-adul...10029.000000
5980Fallen Too Far (Rosemary Beach, #1; Too Far, #1)0.119425to-read favorites currently-reading young-adul...10029.000000
5981The Scarlet Thread0.119416to-read favorites currently-reading fiction bo...10030.000000
5982Daisy Fay and the Miracle Man0.119399to-read favorites currently-reading young-adul...10033.000000
5983Heartstone (Matthew Shardlake, #5)0.119371to-read favorites currently-reading fiction bo...10033.000000
5984Lone Survivor: The Eyewitness Account of Opera...0.119325to-read favorites currently-reading fiction bo...10032.000000
5985The Birth House0.119322to-read favorites currently-reading fiction bo...10029.000000
5986Relentless0.119312to-read fantasy favorites currently-reading fi...10033.000000
5987The Knight at Dawn (Magic Tree House, #2)0.119272to-read fantasy favorites currently-reading yo...10027.000000
5988Complete Poems, 1904-19620.119264to-read favorites currently-reading fiction bo...10026.000000
5989Zita the Spacegirl (Zita the Spacegirl, #1)0.119260to-read fantasy favorites currently-reading yo...10018.000000
5990Sugar Daddy (Travises, #1)0.119233to-read favorites currently-reading fiction bo...10032.000000
5991Dark Places0.119227to-read favorites currently-reading fiction bo...10032.000000
5992Quentins0.119226to-read favorites currently-reading fiction bo...10029.000000
5993After I'm Gone0.119219to-read favorites currently-reading fiction bo...10025.000000
5994The Secret Adversary (Tommy and Tuppence #1)0.119207to-read favorites currently-reading fiction bo...10036.000000
5995Head Over Heels (Lucky Harbor, #3)0.119207to-read favorites currently-reading fiction bo...10029.000000
5996Midwives0.119169to-read favorites currently-reading fiction bo...10033.000000
5997Forget You0.119160to-read favorites currently-reading young-adul...10029.000000
5998Holy Bible: King James Version0.119159to-read fantasy favorites currently-reading fi...10034.000000
5999Ellen Foster0.119140to-read favorites currently-reading young-adul...10034.000000
6000Hinds' Feet on High Places0.119084to-read fantasy favorites currently-reading fi...10040.000000
6001Sleeping Beauty (Disney Princess, 5)0.119048to-read fantasy favorites currently-reading fi...10016.000000
6002Darkly Dreaming Dexter (Dexter, #1)0.119026to-read fantasy favorites currently-reading fi...10035.000000
6003Addicted0.118991to-read favorites currently-reading fiction bo...10030.000000
6004Everything Leads to You0.118984to-read favorites currently-reading young-adul...10024.000000
6005The Power of the Dog0.118966to-read favorites currently-reading fiction bo...10029.000000
6006Moneyball: The Art of Winning an Unfair Game0.118955to-read favorites currently-reading fiction bo...10029.000000
6007Frosty the Snow Man0.118920to-read fantasy favorites currently-reading fi...10020.000000
6008The Afghan0.118891to-read favorites currently-reading fiction bo...10032.000000
6009Prince of Wolves (The Grey Wolves, #1)0.118882to-read fantasy favorites currently-reading yo...10028.000000
6010The Shunning (The Heritage of Lancaster County...0.118879to-read favorites currently-reading young-adul...10034.000000
6011Betsy-Tacy (Betsy-Tacy, #1)0.118842to-read favorites currently-reading young-adul...10026.000000
6012Tears of a Tiger (Hazelwood High, #1)0.118839to-read favorites currently-reading young-adul...10018.000000
6013Of Love and Other Demons0.118835to-read fantasy favorites currently-reading fi...10033.000000
6014Gods in Alabama0.118791to-read favorites currently-reading fiction bo...10034.000000
6015The Secret Scripture0.118790to-read favorites currently-reading fiction bo...10035.000000
6016Here's to Us0.118749to-read favorites currently-reading fiction bo...10023.000000
6017A Perfect Spy0.118713to-read favorites currently-reading fiction bo...10041.000000
6018The Knockoff0.118705to-read favorites currently-reading fiction bo...10021.000000
6019Vanishing Girls0.118686to-read favorites currently-reading young-adul...10026.000000
6020Gödel, Escher, Bach: An Eternal Golden Braid0.118668to-read favorites currently-reading fiction bo...10023.000000
6021Love in the Afternoon (The Hathaways, #5)0.118658to-read favorites currently-reading fiction bo...10033.000000
6022Guns, Germs, and Steel: The Fates of Human Soc...0.118651to-read favorites currently-reading books-i-ow...10031.000000
6023Gilead (Gilead, #1)0.118636to-read favorites currently-reading fiction bo...10037.000000
6024The Defining Decade: Why Your Twenties Matter-...0.118635to-read favorites currently-reading fiction bo...10025.000000
6025Manwhore (Manwhore, #1)0.118632to-read favorites currently-reading fiction bo...10030.000000
6026A Redbird Christmas0.118618to-read favorites currently-reading fiction bo...10028.000000
6027La Vérité sur l'affaire Harry Quebert0.118558to-read favorites currently-reading fiction bo...10034.000000
6028The Expats0.118546to-read favorites currently-reading fiction bo...10029.000000
6029Fifty Shades Trilogy (Fifty Shades, #1-3)0.118530to-read favorites currently-reading fiction bo...10034.000000
6030The Dry Grass of August0.118526to-read favorites currently-reading young-adul...10024.000000
6031The Other Side of Midnight (Midnight #1)0.118525to-read favorites currently-reading fiction bo...10035.000000
6032May We Be Forgiven0.118506to-read favorites currently-reading fiction bo...10031.000000
6033Train Dreams0.118483to-read favorites currently-reading fiction bo...10028.000000
6034The Sound of Things Falling0.118464to-read favorites currently-reading fiction bo...10025.000000
6035Angle of Repose0.118420to-read favorites currently-reading fiction bo...10036.000000
6036The Necklace and Other Short Stories0.118405to-read fantasy favorites currently-reading yo...10029.000000
6037Les Fleurs du Mal0.118368to-read favorites currently-reading books-i-ow...10033.000000
6038The Testament0.118366to-read favorites currently-reading fiction bo...10035.000000
6039The Twelve Chairs0.118364to-read favorites currently-reading fiction bo...10034.000000
6040Crash (Crash, #1)0.118360to-read favorites currently-reading young-adul...10030.000000
6041Cover Her Face (Adam Dalgliesh #1)0.118334to-read favorites currently-reading fiction bo...10032.000000
6042The Story of Babar0.118262to-read fantasy favorites currently-reading yo...10020.000000
6043Look Again0.118252to-read favorites currently-reading fiction bo...10029.000000
6044Big Boned (Heather Wells, #3)0.118240to-read favorites currently-reading young-adul...10033.000000
6045Bergdorf Blondes0.118235to-read favorites currently-reading young-adul...10027.000000
6046Chaos: Making a New Science0.118214to-read favorites currently-reading books-i-ow...10024.000000
6047Copper Sun0.118194to-read favorites currently-reading young-adul...10025.000000
6048Before We Met0.118169to-read favorites currently-reading fiction bo...10025.000000
6049Slammerkin0.118127to-read favorites currently-reading fiction bo...10031.000000
6050Too Good to Be True0.118122to-read favorites currently-reading fiction bo...10029.000000
6051Ain't She Sweet0.118120to-read favorites currently-reading fiction bo...10033.000000
6052Death on the Nile (Hercule Poirot, #17)0.118084to-read favorites currently-reading fiction bo...10039.000000
6053Sacajawea (Lewis & Clark Expedition)0.118077to-read favorites currently-reading fiction bo...10035.000000
6054After Anna0.118037to-read favorites fiction books-i-own owned de...10023.000000
6055The Secret (The Secret, #1)0.118024to-read favorites currently-reading fiction bo...10038.000000
6056Tales from a Not-So-Smart Miss Know-It-All (Do...0.117974to-read favorites currently-reading young-adul...10025.000000
6057Sideways Stories from Wayside School (Wayside ...0.117972to-read favorites currently-reading fiction bo...10025.000000
6058Wonderstruck0.117910to-read fantasy currently-reading young-adult ...10020.000000
6059Obsession in Death (In Death, #40)0.117875to-read fantasy favorites currently-reading fi...10032.000000
6060Fly Away Home0.117851to-read favorites currently-reading fiction bo...10029.000000
6061Death: The High Cost of Living Collected0.117829to-read fantasy favorites currently-reading yo...10029.000000
6062You (You, #1)0.117820to-read favorites currently-reading fiction bo...10031.000000
6063Scars0.117798to-read favorites currently-reading young-adul...10024.000000
6064Hunting and Gathering0.117773to-read favorites currently-reading fiction ow...10025.000000
6065I Am Pilgrim (Pilgrim, #1)0.117711to-read favorites currently-reading fiction bo...10035.000000
6066An Occurrence at Owl Creek Bridge0.117687to-read fantasy favorites currently-reading yo...10028.000000
6067Mystic River0.117683to-read favorites currently-reading fiction bo...10037.000000
6068The Lost Child of Philomena Lee: A Mother, Her...0.117665to-read favorites currently-reading books-i-ow...10029.000000
6069Keeping You a Secret0.117636to-read favorites currently-reading young-adul...10025.000000
6070My Brother Sam Is Dead0.117612to-read favorites currently-reading young-adul...10025.000000
6071Pretty Little Liars (TV Series)0.117597to-read favorites currently-reading young-adul...10016.000000
6072The A.B.C. Murders (Hercule Poirot, #13)0.117589to-read favorites currently-reading fiction bo...10038.000000
6073The Residence: Inside the Private World of the...0.117547to-read favorites currently-reading fiction bo...10020.000000
6074How the Mind Works0.117535to-read favorites currently-reading books-i-ow...10025.000000
6075Swapping Lives0.117514to-read favorites currently-reading fiction bo...10029.000000
6076The Great Brain (Great Brain #1)0.117504to-read favorites currently-reading young-adul...10027.000000
6077A Bad Case of Stripes0.117490to-read fantasy favorites currently-reading fi...10017.000000
6078Blue Labyrinth (Pendergast, #14)0.117480to-read favorites currently-reading fiction bo...10031.000000
6079Columbine0.117472to-read favorites currently-reading books-i-ow...10029.000000
6080Archer's Voice0.117469to-read favorites currently-reading young-adul...10029.000000
6081From the Mixed-Up Files of Mrs. Basil E. Frank...0.117427to-read favorites currently-reading young-adul...10029.000000
6082Broken for You0.117420to-read favorites currently-reading fiction bo...10030.000000
6083A Murder Is Announced (Miss Marple, #5)0.117361to-read favorites currently-reading fiction bo...10037.000000
6084The Litigators0.117349to-read favorites currently-reading fiction bo...10029.000000
6085The Pilot's Wife0.117323to-read favorites currently-reading fiction bo...10031.000000
6086Antigone (The Theban Plays, #3)0.117309to-read fantasy favorites fiction books-i-own ...10027.000000
6087Babyville0.117308to-read favorites currently-reading fiction bo...10029.000000
6088Sempre (Sempre, #1)0.117305to-read favorites currently-reading young-adul...10028.000000
6089Life Expectancy0.117299to-read fantasy favorites currently-reading fi...10036.000000
6090Sharp Objects0.117289to-read favorites currently-reading fiction bo...10031.000000
6091Monster0.117277to-read fantasy favorites currently-reading fi...20019.500000
6092Monster0.113540to-read favorites currently-reading young-adul...20019.500000
6093The Little Lady Agency (The Little Lady Agency...0.117269to-read favorites currently-reading fiction bo...10028.000000
6094Graffiti Moon0.117235to-read favorites currently-reading young-adul...10028.000000
6095The Moviegoer0.117198to-read favorites currently-reading fiction bo...10034.000000
6096Oedipus Rex (The Theban Plays, #1)0.117190to-read fantasy fiction series favourites re-r...10026.000000
6097Dr. Seuss's Green Eggs and Ham: For Soprano, B...0.117186to-read fantasy favorites currently-reading yo...10017.000000
6098Mrs. Piggle-Wiggle (Mrs. Piggle Wiggle, #1)0.117144to-read fantasy favorites currently-reading yo...10026.000000
6099My Father's Dragon (My Father's Dragon, #1)0.117109to-read fantasy favorites currently-reading yo...10026.000000
6100Never Knowing0.117107to-read favorites currently-reading fiction bo...10031.000000
6101Blind Willow, Sleeping Woman0.117025to-read fantasy favorites currently-reading fi...10035.000000
6102The Myth of Sisyphus and Other Essays0.117023to-read favorites currently-reading fiction bo...10029.000000
6103Forever Too Far (Rosemary Beach, #3; Too Far, #3)0.117022to-read favorites young-adult fiction books-i-...10030.000000
6104Through Black Spruce0.116989to-read favorites currently-reading fiction bo...10033.000000
6105Wildflower0.116988to-read favorites currently-reading books-i-ow...10022.000000
6106Open Road Summer0.116981to-read favorites currently-reading young-adul...10023.000000
6107Uganda Be Kidding Me0.116950to-read favorites currently-reading books-i-ow...10026.000000
6108Mockingbird0.116945to-read favorites currently-reading young-adul...10020.000000
6109After the Funeral (Hercule Poirot, #29)0.116927to-read favorites currently-reading fiction bo...10036.000000
6110The Last Templar (Templar, #1)0.116900to-read fantasy favorites currently-reading fi...10037.000000
6111Catch Me If You Can: The True Story of a Real ...0.116897to-read favorites currently-reading fiction bo...10036.000000
6112The Drunkard's Walk: How Randomness Rules Our ...0.116878to-read favorites currently-reading books-i-ow...10025.000000
6113Death in the Clouds (Hercule Poirot, #12)0.116878to-read favorites currently-reading fiction bo...10036.000000
6114A Million Little Pieces0.116857to-read favorites currently-reading fiction bo...10037.000000
6115Purity in Death (In Death, #15)0.116842to-read fantasy favorites currently-reading fi...10036.000000
6116The Nanny0.116827to-read favorites currently-reading fiction bo...10028.000000
6117Rubyfruit Jungle0.116808to-read favorites currently-reading young-adul...10031.000000
6118The Midwife: A Memoir of Birth, Joy, and Hard ...0.116807to-read favorites currently-reading fiction bo...10029.000000
6119Dead Wake: The Last Crossing of the Lusitania0.116793to-read favorites currently-reading fiction bo...10025.000000
6120This Is How You Lose Her0.116789to-read favorites currently-reading fiction bo...10030.000000
6121The Boyfriend Thief (Stolen Kiss, #1)0.116781to-read favorites currently-reading young-adul...10023.000000
6122The Last Council (Amulet, #4)0.116778to-read fantasy favorites currently-reading yo...10027.000000
6123The Locket (The Locket, #1)0.116770to-read favorites currently-reading fiction bo...10024.000000
6124Bittersweet0.116754to-read favorites currently-reading fiction bo...10025.000000
6125The Museum of Innocence0.116730to-read favorites currently-reading fiction bo...10030.000000
6126Shut Out0.116715to-read favorites currently-reading young-adul...10027.000000
6127The Best Man (Blue Heron, #1)0.116688to-read favorites currently-reading fiction bo...10026.000000
6128Summer Rental0.116678to-read favorites currently-reading fiction bo...10026.000000
6129Princess in Training (The Princess Diaries, #6)0.116643to-read favorites currently-reading young-adul...10034.000000
6130The Seagull0.116641to-read favorites currently-reading fiction ow...10030.000000
6131H is for Hawk0.116599to-read favorites currently-reading fiction bo...10028.000000
6132V for Vendetta0.116580to-read fantasy favorites currently-reading fi...10034.000000
6133Scat0.116563to-read favorites currently-reading young-adul...10025.000000
6134The Mouse and the Motorcycle (Ralph S. Mouse, #1)0.116548to-read fantasy favorites currently-reading yo...10027.000000
6135Girl With Curious Hair0.116528to-read favorites currently-reading fiction bo...10032.000000
6136W is for Wasted (Kinsey Millhone, #23)0.116524to-read favorites currently-reading fiction bo...10030.000000
6137The Double Helix0.116516to-read favorites currently-reading fiction bo...10022.000000
6138Broken Grace0.116468to-read favorites currently-reading fiction ow...10020.000000
6139An Enquiry Concerning Human Understanding0.116458to-read favorites currently-reading books-i-ow...10031.000000
6140The Moon and More0.116445to-read favorites currently-reading young-adul...10029.000000
6141The Next Always (Inn BoonsBoro, #1)0.116441to-read favorites currently-reading fiction bo...10034.000000
6142The Healer (O'Malley #5)0.116416to-read favorites currently-reading young-adul...10032.000000
6143Loser0.116395to-read favorites currently-reading young-adul...10026.000000
6144Sweet Filthy Boy (Wild Seasons, #1)0.116380to-read favorites currently-reading young-adul...10029.000000
6145Clara and Mr. Tiffany0.116360to-read favorites currently-reading fiction bo...10028.000000
6146Red Dragon (Hannibal Lecter, #1)0.116358to-read favorites currently-reading fiction bo...10042.000000
6147Beautiful Player (Beautiful Bastard, #3)0.116355to-read favorites currently-reading fiction bo...10035.000000
6148Crazy Little Thing (Bell Harbor, #1)0.116337to-read favorites currently-reading fiction bo...10024.000000
6149Say What You Will0.116333to-read favorites currently-reading young-adul...10024.000000
6150Them: Adventures with Extremists0.116314to-read favorites currently-reading fiction bo...10028.000000
6151The Nightmare (Joona Linna, #2)0.116310to-read favorites currently-reading fiction bo...10034.000000
6152Two Years Before the Mast: A Sailor's Life at Sea0.116289to-read favorites currently-reading fiction bo...10028.000000
6153Tiny Beautiful Things: Advice on Love and Life...0.116277to-read favorites currently-reading fiction bo...10027.000000
6154Will You Please Be Quiet, Please?0.116268to-read favorites currently-reading fiction bo...10032.000000
6155Certain Girls (Cannie Shapiro #2)0.116261to-read favorites currently-reading fiction bo...10029.000000
6156Faking It (Dempseys, #2)0.116221to-read favorites currently-reading fiction bo...10037.000000
6157Captivated by You (Crossfire, #4)0.116215to-read favorites currently-reading fiction bo...10034.000000
6158Nickel and Dimed: On (Not) Getting By in America0.116201to-read favorites currently-reading books-i-ow...10020.000000
6159Mr. Maybe0.116196to-read favorites currently-reading young-adul...10032.000000
6160The One and Only Ivan0.116182to-read fantasy favorites currently-reading yo...10025.000000
6161Transmetropolitan, Vol. 2: Lust for Life (Tran...0.116167to-read fantasy favorites currently-reading fi...10029.000000
6162Top Secret Twenty-One (Stephanie Plum, #21)0.116166to-read favorites currently-reading fiction bo...10028.000000
6163Jasper Jones0.116141to-read favorites currently-reading young-adul...10031.000000
6164Kitchen Confidential: Adventures in the Culina...0.116139to-read favorites currently-reading fiction bo...10027.000000
6165Stealing Parker0.116123to-read favorites currently-reading young-adul...10027.000000
6166The Heist (Fox and O'Hare, #1)0.116057to-read favorites currently-reading fiction bo...10029.000000
6167New York to Dallas (In Death, #33)0.116049to-read fantasy favorites currently-reading fi...10039.000000
6168The Emperor of All Maladies: A Biography of Ca...0.116043to-read favorites currently-reading fiction bo...10030.000000
6169Sahara (Dirk Pitt, #11)0.115995to-read favorites currently-reading fiction bo...10032.000000
6170The Lightning Thief: The Graphic Novel (Percy ...0.115963to-read fantasy favorites currently-reading yo...10025.000000
6171Oh, The Places You'll Go!0.115923to-read fantasy favorites currently-reading yo...10031.000000
6172Skippyjon Jones in Mummy Trouble (Skippyjon Jo...0.115905to-read fantasy favorites currently-reading fi...10020.000000
6173The Air He Breathes (Elements, #1)0.115857to-read favorites currently-reading fiction bo...10026.000000
6174Five Little Pigs (Hercule Poirot, #24)0.115855to-read favorites currently-reading fiction bo...10039.000000
6175Red Storm Rising0.115836to-read favorites currently-reading fiction bo...10033.000000
6176Law Man (Dream Man, #3)0.115817to-read favorites currently-reading fiction bo...10030.000000
6177Sick Puppy0.115817to-read favorites currently-reading fiction bo...10031.000000
6178The Qur'an / القرآن الكريÙ0.115802to-read fantasy favorites currently-reading fi...10031.000000
6179The Secret of Ella and Micha (The Secret, #1)0.115788to-read favorites young-adult fiction books-i-...10030.000000
6180Thunderhead0.115786to-read fantasy favorites currently-reading fi...10036.000000
6181Maine0.115784to-read favorites currently-reading fiction bo...10025.000000
6182Everything's Eventual: 14 Dark Tales0.115764to-read fantasy favorites currently-reading fi...10036.000000
6183Bury Your Dead (Chief Inspector Armand Gamache...0.115745to-read favorites currently-reading fiction bo...10027.000000
6184The Boxcar Children (The Boxcar Children, #1)0.115744to-read favorites currently-reading young-adul...10026.000000
6185The Door to December0.115736to-read fantasy favorites currently-reading fi...10035.000000
6186Seven Years in Tibet0.115733to-read favorites currently-reading fiction bo...10031.000000
6187The Mapping of Love and Death (Maisie Dobbs, #7)0.115718to-read favorites currently-reading fiction bo...10028.000000
6188Hoot0.115696to-read favorites currently-reading young-adul...10026.000000
6189The City of Falling Angels0.115673to-read fantasy favorites currently-reading fi...10028.000000
6190The Glass Castle0.115665to-read favorites currently-reading young-adul...10037.000000
6191Beautiful Bombshell (Beautiful Bastard, #2.5)0.115665to-read favorites currently-reading fiction bo...10034.000000
6192Hissy Fit0.115657to-read favorites currently-reading fiction bo...10030.000000
6193Cold Fire0.115649to-read fantasy favorites currently-reading fi...10034.000000
6194The Scent of Rain and Lightning0.115647to-read favorites currently-reading fiction bo...10030.000000
6195Pacific Vortex! (Dirk Pitt, #1)0.115646to-read favorites currently-reading fiction bo...10030.000000
6196Seriously... I'm Kidding0.115641to-read favorites currently-reading fiction bo...10029.000000
6197Good in Bed (Cannie Shapiro, #1)0.115639to-read favorites currently-reading fiction bo...10035.000000
6198Evil Under the Sun (Hercule Poirot, #23)0.115628to-read favorites currently-reading fiction bo...10038.000000
6199Star Island (Skink, #6)0.115603to-read favorites currently-reading fiction bo...10030.000000
6200Lincoln in the Bardo0.115599to-read fantasy favorites currently-reading fi...10028.000000
6201Endless Summer (The Boys Next Door, #1-2)0.115591to-read favorites currently-reading young-adul...10029.000000
6202The Hidden Reality: Parallel Universes and the...0.115579to-read favorites currently-reading books-i-ow...10025.000000
6203Double Fudge (Fudge, #5)0.115577to-read favorites currently-reading young-adul...10026.000000
6204The Racketeer0.115574to-read favorites currently-reading fiction bo...10032.000000
6205Because of Winn-Dixie0.115573to-read favorites currently-reading young-adul...10029.000000
6206The Cinderella Murder (Under Suspicion, #2)0.115541to-read favorites currently-reading fiction bo...10028.000000
6207The Elegant Universe: Superstrings, Hidden Dim...0.115492to-read favorites currently-reading books-i-ow...10027.000000
6208The Son0.115489to-read favorites currently-reading fiction bo...20017.500000
6209The Son0.066124to-read favorites currently-reading fiction bo...20017.500000
6210Sometimes It Happens0.115489to-read favorites currently-reading young-adul...10023.000000
6211Hidden Bodies (You, #2)0.115481to-read favorites currently-reading fiction bo...10028.000000
6212Angels in America0.115469to-read fantasy favorites currently-reading fi...10026.000000
6213As You Wish: Inconceivable Tales from the Maki...0.115456to-read fantasy favorites fiction books-i-own ...10026.000000
6214Swing Time0.115453to-read favorites currently-reading fiction bo...10028.000000
6215Tales of a Fourth Grade Nothing (Fudge, #1)0.115430to-read favorites currently-reading young-adul...10024.000000
6216The Will (Magdalene, #1)0.115414to-read favorites currently-reading fiction bo...10030.000000
6217Old School (Diary of a Wimpy Kid, #10)0.115412to-read favorites currently-reading young-adul...10026.000000
6218Epic Fail0.115334to-read favorites currently-reading young-adul...10022.000000
6219The Weekenders0.115334to-read favorites currently-reading fiction bo...10021.000000
6220Neanderthal Seeks Human (Knitting in the City,...0.115333to-read favorites currently-reading fiction bo...10026.000000
6221Isaac's Storm: A Man, a Time, and the Deadlies...0.115330to-read favorites currently-reading fiction bo...10029.000000
6222Snow Country0.115317to-read favorites currently-reading fiction bo...10030.000000
6223No Exit and Three Other Plays0.115308to-read fantasy favorites currently-reading fi...10034.000000
6224The Pursuit of Happyness0.115268to-read favorites currently-reading fiction bo...10028.000000
6225A Child's Garden of Verses0.115265to-read favorites currently-reading young-adul...10029.000000
6226Romancing the Duke (Castles Ever After, #1)0.115263to-read favorites currently-reading fiction bo...10025.000000
6227Turbo Twenty-Three (Stephanie Plum, #23)0.115256to-read favorites currently-reading fiction bo...10023.000000
6228Sherlock Holmes of Baker Street: A Life of the...0.115222to-read favorites currently-reading fiction bo...10017.000000
6229One Tiny Lie (Ten Tiny Breaths, #2)0.115205to-read favorites currently-reading young-adul...10030.000000
6230Born in Death (In Death, #23)0.115203to-read fantasy favorites currently-reading fi...10035.000000
6231Every Thing on It0.115180to-read favorites currently-reading young-adul...10026.000000
6232A Total Waste of Makeup (Charlize Edwards, #1)0.115168to-read favorites currently-reading fiction bo...10025.000000
6233The Poetry of Robert Frost (Collected Poems, C...0.115125to-read favorites currently-reading fiction bo...10029.000000
6234Flyy Girl (Flyy Girl, #1)0.115122to-read currently-reading young-adult fiction ...10022.000000
6235The Russia House0.115113to-read favorites currently-reading fiction bo...10031.000000
6236Birds of a Feather (Maisie Dobbs, #2)0.115096to-read favorites currently-reading fiction bo...10027.000000
6237Beautiful Beginning (Beautiful Bastard, #3.5)0.115073to-read favorites currently-reading fiction bo...10031.000000
6238Lush Life0.115051to-read favorites currently-reading fiction bo...10027.000000
6239Crow Lake0.115032to-read favorites currently-reading young-adul...10030.000000
6240Takedown Twenty (Stephanie Plum, #20)0.115030to-read favorites currently-reading fiction bo...10029.000000
6241Rabbit Is Rich (Rabbit Angstrom #3)0.115026to-read favorites currently-reading fiction bo...10030.000000
6242Seeing0.115013to-read fantasy favorites currently-reading fi...10030.000000
6243Survivor In Death (In Death, #20)0.115013to-read fantasy favorites currently-reading fi...10033.000000
6244The Pianist: The Extraordinary Story of One Ma...0.115006to-read favorites currently-reading fiction bo...10034.000000
6245Runaway Ralph (Ralph S. Mouse, #2)0.114994to-read fantasy favorites currently-reading yo...10028.000000
6246Free Will0.114991to-read favorites currently-reading fiction bo...10025.000000
6247I, Elizabeth0.114890to-read favorites currently-reading fiction bo...10026.000000
6248Collide (Collide, #1)0.114817to-read favorites currently-reading fiction bo...10031.000000
6249Standing in the Rainbow (Elmwood Springs, #2)0.114817to-read favorites currently-reading fiction bo...10031.000000
6250The Grownup0.114817to-read favorites currently-reading fiction bo...10026.000000
6251The Breadwinner (The Breadwinner, #1)0.114814to-read favorites currently-reading young-adul...10021.000000
6252Welcome to Temptation (Dempseys, #1)0.114808to-read favorites currently-reading fiction bo...10035.000000
6253Genome: the Autobiography of a Species in 23 C...0.114804to-read favorites currently-reading books-i-ow...10023.000000
6254Hello, Mrs. Piggle-Wiggle (Mrs. Piggle Wiggle,...0.114785to-read fantasy favorites currently-reading yo...10022.000000
6255Soumission0.114716to-read favorites currently-reading fiction bo...10028.000000
6256Ceremony in Death (In Death, #5)0.114695to-read fantasy favorites currently-reading fi...10031.000000
6257As Chimney Sweepers Come to Dust (Flavia de Lu...0.114682to-read favorites young-adult fiction books-i-...10026.000000
6258Where You Are (Between the Lines, #2)0.114682to-read favorites currently-reading young-adul...10031.000000
6259The Last Straw (Diary of a Wimpy Kid, #3)0.114640to-read fantasy favorites currently-reading yo...10031.000000
6260Appointment with Death (Hercule Poirot, #19)0.114635to-read favorites currently-reading fiction bo...10035.000000
6261The Virgin Cure0.114633to-read favorites currently-reading fiction bo...10029.000000
6262The Magic (The Secret, #3)0.114581to-read favorites currently-reading books-i-ow...10029.000000
6263Transmetropolitan, Vol. 3: Year of the Bastard...0.114574to-read fantasy favorites currently-reading fi...10028.000000
6264Death Without Company (Walt Longmire, #2)0.114552to-read favorites currently-reading fiction bo...10024.000000
6265Netherland0.114529to-read favorites currently-reading fiction bo...10027.000000
6266Down London Road (On Dublin Street, #2)0.114517to-read favorites currently-reading young-adul...10033.000000
6267Disclosure0.114495to-read favorites currently-reading fiction bo...10029.000000
6268Little Earthquakes0.114463to-read favorites currently-reading fiction bo...10032.000000
6269Branded (Fall of Angels, #1)0.114434to-read fantasy favorites currently-reading yo...10024.000000
6270Memory in Death (In Death, #22)0.114419to-read fantasy favorites currently-reading fi...10035.000000
6271The Guns of Navarone0.114377to-read favorites currently-reading fiction bo...10034.000000
6272Flood Tide (Dirk Pitt, #14)0.114367to-read favorites currently-reading fiction bo...10032.000000
6273While It Lasts (Sea Breeze, #3)0.114344to-read favorites currently-reading young-adul...10033.000000
6274Twisted Perfection (Rosemary Beach, #5; Perfec...0.114323to-read favorites currently-reading young-adul...10031.000000
6275Home0.114278to-read favorites currently-reading fiction bo...10029.000000
6276The Chase (Isaac Bell, #1)0.114272to-read favorites currently-reading fiction bo...10033.000000
6277The White Tiger0.114259to-read favorites currently-reading fiction bo...10033.000000
6278Fifty Shades Darker (Fifty Shades, #2)0.114240to-read favorites currently-reading young-adul...10019.000000
6279Bloodline (Sigma Force, #8)0.114196to-read favorites currently-reading fiction bo...10035.000000
6280The Moonlit Garden0.114194to-read favorites currently-reading fiction bo...10022.000000
6281The Dante Club0.114171to-read favorites currently-reading fiction bo...10033.000000
6282Riding the Bullet0.114161to-read fantasy favorites currently-reading fi...10027.000000
6283The Marriage Trap (Marriage to a Billionaire, #2)0.114153to-read favorites currently-reading fiction bo...10032.000000
6284Happier at Home: Kiss More, Jump More, Abandon...0.114073to-read favorites currently-reading books-i-ow...10023.000000
6285Keep Holding On0.114058to-read favorites currently-reading young-adul...10024.000000
6286In Search of Schrödinger's Cat: Quantum Physi...0.114031to-read favorites currently-reading books-i-ow...10018.000000
6287Red Phoenix (Red Phoenix #1)0.114021to-read favorites currently-reading fiction bo...10024.000000
6288Brief Interviews with Hideous Men0.114020to-read favorites currently-reading fiction bo...10034.000000
6289Night Film0.114014to-read favorites currently-reading fiction bo...10034.000000
6290The Line of Beauty0.114008to-read favorites currently-reading fiction bo...10028.000000
6291Fables, Vol. 2: Animal Farm0.114005to-read fantasy favorites currently-reading fi...10025.000000
6292The Secret (Highlands' Lairds #1)0.113985to-read favorites currently-reading fiction bo...10036.000000
6293The No. 1 Ladies' Detective Agency (No. 1 Lad...0.113957to-read favorites currently-reading fiction bo...10035.000000
6294Bone: Quest for the Spark, Vol. 10.113894to-read fantasy favorites currently-reading fi...10021.000000
6295Rodrick Rules (Diary of a Wimpy Kid, #2)0.113889to-read fantasy favorites currently-reading yo...10028.000000
6296The Girl in the Red Coat0.113863to-read favorites currently-reading fiction bo...10027.000000
6297Middle School: The Worst Years of My Life (Mid...0.113857to-read favorites currently-reading young-adul...10025.000000
6298Strip Tease0.113856to-read favorites currently-reading fiction bo...10032.000000
6299One Tuesday Morning (9/11, #1)0.113840to-read favorites currently-reading fiction bo...10028.000000
6300Spark Joy: An Illustrated Master Class on the ...0.113798to-read favorites currently-reading owned owne...10024.000000
6301Rule (Marked Men, #1)0.113773to-read favorites currently-reading young-adul...10031.000000
6302Captain Underpants and the Attack of the Talki...0.113764to-read fantasy favorites currently-reading yo...10025.000000
6303Natural Born Charmer (Chicago Stars, #7)0.113757to-read favorites currently-reading fiction bo...10032.000000
6304Bet Me0.113743to-read favorites currently-reading fiction bo...10036.000000
6305Being Mortal: Medicine and What Matters in the...0.113722to-read favorites currently-reading books-i-ow...10027.000000
6306In His Steps0.113707to-read favorites currently-reading fiction bo...10035.000000
6307Queen of Babble in the Big City (Queen of Babb...0.113681to-read favorites currently-reading young-adul...10031.000000
6308Festive in Death (In Death, #39)0.113658to-read fantasy favorites currently-reading fi...10025.000000
6309Sister0.113657to-read favorites currently-reading fiction bo...10033.000000
6310Ten Things We Did (and Probably Shouldn't Have)0.113655to-read favorites currently-reading young-adul...10027.000000
6311On Writing: A Memoir of the Craft0.113616to-read favorites currently-reading fiction bo...10040.000000
6312Mummies in the Morning (Magic Tree House, #3)0.113570to-read fantasy favorites currently-reading yo...10027.000000
6313The Murder House0.113563to-read favorites currently-reading fiction bo...10029.000000
6314This Boy's Life0.113554to-read favorites currently-reading young-adul...10036.000000
6315Totto-chan: The Little Girl at the Window0.113541to-read favorites currently-reading young-adul...10028.000000
6316Killing Sarai (In the Company of Killers, #1)0.113536to-read favorites currently-reading fiction bo...10029.000000
6317What She Knew0.113524to-read favorites currently-reading fiction bo...10030.000000
6318Dark Rivers of the Heart0.113521to-read fantasy favorites currently-reading fi...10039.000000
6319Memory Man (Amos Decker, #1)0.113480to-read favorites currently-reading fiction bo...10030.000000
6320Sweetbitter0.113452to-read favorites currently-reading fiction bo...10027.000000
6321The Man in the Brown Suit0.113403to-read favorites currently-reading fiction bo...10038.000000
6322Better Than Before: Mastering the Habits of Ou...0.113362to-read favorites currently-reading books-i-ow...10023.000000
6323The Christmas Sweater0.113360to-read fantasy favorites currently-reading fi...10027.000000
6324Incognito: The Secret Lives of the Brain0.113346to-read favorites currently-reading books-i-ow...10026.000000
6325Love and War (North and South, #2)0.113342to-read favorites currently-reading fiction bo...10036.000000
6326ABNKKBSNPLAKo?! (Mga Kwentong Chalk ni Bob Ong)0.113331to-read favorites currently-reading young-adul...10018.000000
6327Thankless in Death (In Death, #37)0.113321to-read fantasy favorites currently-reading fi...10028.000000
6328The Paris Vendetta (Cotton Malone, #5)0.113309to-read favorites currently-reading fiction bo...10029.000000
6329Rachel's Holiday (Walsh Family, #2)0.113277to-read favorites currently-reading fiction bo...10036.000000
6330Hopscotch0.113276to-read favorites currently-reading fiction bo...10033.000000
6331Murder in Mesopotamia (Hercule Poirot, #14)0.113263to-read favorites currently-reading fiction bo...10037.000000
6332The Hard Way (Jack Reacher, #10)0.113244to-read favorites currently-reading fiction bo...10035.000000
6333The Marvels0.113235to-read fantasy favorites currently-reading yo...10017.000000
6334Perfect (Second Opportunities, #2)0.113230to-read fantasy favorites currently-reading fi...10034.000000
6335The Nicomachean Ethics0.113180to-read favorites currently-reading books-i-ow...10019.000000
6336The Body0.113156to-read fantasy favorites currently-reading yo...10037.000000
6337Silence (Silence, #1)0.113152to-read favorites currently-reading young-adul...10026.000000
6338Tilt0.113149to-read favorites currently-reading young-adul...10025.000000
6339Crazy Rich Asians (Crazy Rich Asians #1)0.113138to-read favorites currently-reading fiction bo...10027.000000
6340Tears of the Giraffe (No. 1 Ladies' Detective ...0.113138to-read favorites currently-reading fiction bo...10033.000000
6341Fudge-a-Mania (Fudge, #4)0.113130to-read favorites currently-reading young-adul...10026.000000
6342Musicophilia: Tales of Music and the Brain0.113118to-read favorites currently-reading books-i-ow...10026.000000
6343Generation Kill: Devil Dogs, Iceman, Captain A...0.113095to-read favorites currently-reading fiction bo...10029.000000
6344Ms. Marvel, Vol. 1: No Normal0.113087to-read fantasy favorites currently-reading yo...10025.000000
6345The Whistler0.113084to-read favorites currently-reading fiction bo...10024.000000
6346Heart on a Chain0.113069to-read favorites currently-reading young-adul...10025.000000
6347The Dogs of War0.113043to-read favorites currently-reading fiction bo...10030.000000
6348Everyone Worth Knowing0.113029to-read favorites currently-reading young-adul...10032.000000
6349Beautiful Secret (Beautiful Bastard, #4)0.113001to-read favorites currently-reading fiction bo...10033.000000
6350Food: A Love Story0.112990to-read favorites currently-reading fiction bo...10023.000000
6351Trading Up0.112951to-read favorites currently-reading fiction bo...10027.000000
6352Night Light (Restoration #2)0.112935to-read favorites currently-reading fiction bo...10026.000000
6353Squirrel Seeks Chipmunk: A Modest Bestiary0.112926to-read fantasy favorites currently-reading fi...10030.000000
6354Falling Up0.112922to-read fantasy currently-reading young-adult ...10023.000000
6355Echo0.112917to-read fantasy favorites currently-reading yo...10021.000000
6356Sovereign (Matthew Shardlake, #3)0.112914to-read favorites currently-reading fiction bo...10031.000000
6357The Wright Brothers0.112893to-read favorites currently-reading fiction bo...10025.000000
6358Reservation Blues0.112882to-read fantasy favorites currently-reading yo...10033.000000
6359The General in His Labyrinth0.112842to-read favorites currently-reading fiction bo...10033.000000
6360Mister Pip0.112838to-read favorites currently-reading young-adul...10035.000000
6361Salvation in Death (In Death, #27)0.112834to-read fantasy favorites currently-reading fi...10035.000000
6362Babar the King0.112829to-read fantasy favorites currently-reading fi...10022.000000
6363Swallows and Amazons (Swallows and Amazons, #1)0.112806to-read favorites currently-reading young-adul...10035.000000
6364One More Chance (Rosemary Beach, #8; Chance, #2)0.112800favorites currently-reading young-adult fictio...10029.000000
6365Common Sense0.112756to-read favorites currently-reading fiction bo...10031.000000
6366I Let You Go0.112737to-read favorites currently-reading fiction bo...10027.000000
6367Her Mother's Hope (Marta's Legacy, #1)0.112727to-read favorites currently-reading fiction bo...10029.000000
6368Two Graves (Pendergast, #12)0.112722to-read fantasy favorites currently-reading fi...10032.000000
6369The Tao of Pooh0.112689to-read favorites currently-reading fiction bo...10038.000000
6370The Slap0.112664to-read favorites currently-reading fiction bo...10027.000000
6371Twilight Eyes0.112657to-read fantasy favorites currently-reading fi...10032.000000
6372Crooked Little Lies0.112645to-read favorites currently-reading fiction bo...10020.000000
6373I Hunt Killers (Jasper Dent, #1)0.112635to-read favorites currently-reading young-adul...10031.000000
6374West with the Night0.112633to-read favorites currently-reading fiction bo...10037.000000
6375The God Delusion0.112631to-read favorites currently-reading fiction bo...10034.000000
6376Ransom (Highlands' Lairds, #2)0.112626to-read favorites currently-reading fiction bo...10036.000000
6377Fables, Vol. 3: Storybook Love0.112625to-read fantasy favorites currently-reading fi...10025.000000
6378HHhH0.112606to-read favorites currently-reading fiction bo...10027.000000
6379Find You in the Dark (Find You in the Dark, #1)0.112605to-read favorites currently-reading young-adul...10031.000000
6380Defending Jacob0.112604to-read favorites currently-reading fiction bo...10027.000000
6381Tara Road0.112585to-read favorites currently-reading fiction bo...10030.000000
6382My Story0.112576to-read favorites currently-reading books-i-ow...10024.000000
6383Unnatural Death (Lord Peter Wimsey, #3)0.112556to-read favorites currently-reading fiction bo...10033.000000
6384The Lost City of Z: A Tale of Deadly Obsession...0.112553to-read favorites currently-reading fiction bo...10028.000000
6385Apt Pupil0.112544to-read fantasy favorites currently-reading fi...10033.000000
6386Ramona and Her Father (Ramona, #4)0.112530to-read favorites currently-reading young-adul...10026.000000
6387What I Know for Sure0.112527to-read favorites currently-reading books-i-ow...10027.000000
6388The Palace of Illusions0.112527to-read fantasy favorites fiction books-i-own ...10036.000000
6389The Madness of Lord Ian Mackenzie (Mackenzies ...0.112524to-read favorites currently-reading fiction bo...10033.000000
6390A Long Walk to Water: Based on a True Story0.112514to-read favorites currently-reading young-adul...10021.000000
6391The Underground Railroad0.112508to-read fantasy favorites currently-reading fi...10026.000000
6392Furiously Happy: A Funny Book About Horrible T...0.112466to-read favorites currently-reading fiction bo...10026.000000
6393TransAtlantic0.112466to-read favorites currently-reading fiction bo...10030.000000
6394Stranger Child (DCI Tom Douglas, #4)0.112444to-read favorites currently-reading fiction bo...10019.000000
6395A Beautiful Mind0.112433to-read favorites currently-reading fiction bo...10034.000000
6396How to Be Both0.112369to-read favorites currently-reading fiction bo...10031.000000
6397The Book of Basketball: The NBA According to T...0.112367to-read favorites currently-reading books-i-ow...10026.000000
6398Fish in a Tree0.112365to-read favorites currently-reading young-adul...10017.000000
6399Big Bang: The Origin of the Universe0.112346to-read favorites currently-reading books-i-ow...10020.000000
6400Pretty Baby0.112321to-read favorites currently-reading fiction bo...10027.000000
6401Evelyn, After0.112296to-read currently-reading fiction books-i-own ...10024.000000
6402Mere Christianity0.112283to-read favorites currently-reading fiction bo...10042.000000
6403The Passenger0.112232to-read favorites currently-reading fiction bo...10026.000000
6404Still Missing0.112229to-read favorites currently-reading fiction bo...10030.000000
6405The Unwritten, Vol. 1: Tommy Taylor and the Bo...0.112222to-read fantasy favorites currently-reading yo...10027.000000
6406Coma0.112216to-read favorites currently-reading fiction bo...10033.000000
6407Beautiful Stranger (Beautiful Bastard, #2)0.112196to-read favorites currently-reading fiction bo...10036.000000
6408Dewey: The Small-Town Library Cat Who Touched ...0.112183to-read favorites currently-reading young-adul...10031.000000
6409The Professor and the Madman: A Tale of Murder...0.112165to-read favorites currently-reading fiction bo...10031.000000
6410Mr. Popper's Penguins0.112161to-read fantasy favorites currently-reading yo...10028.000000
6411Dreaming of You (The Gamblers, #2)0.112150to-read favorites currently-reading fiction bo...10036.000000
6412The Omen0.112135to-read fantasy favorites currently-reading fi...10030.000000
6413Die Again (Rizzoli & Isles, #11)0.112115to-read favorites currently-reading fiction bo...10029.000000
6414El coronel no tiene quien le escriba0.112083to-read favorites currently-reading fiction bo...10028.000000
6415Bookends0.112054to-read favorites currently-reading fiction bo...10033.000000
6416Sleeping Murder (Miss Marple, #13)0.112037to-read favorites currently-reading fiction bo...10040.000000
6417You Were Mine (Rosemary Beach, #9)0.112036to-read favorites currently-reading young-adul...10031.000000
6418What the Dog Saw and Other Adventures0.111947to-read favorites currently-reading fiction bo...10032.000000
6419Gap Creek0.111941to-read favorites currently-reading fiction bo...10031.000000
6420Hidden Figures: The American Dream and the Unt...0.111916to-read favorites currently-reading fiction bo...10025.000000
6421The Long Haul (Diary of a Wimpy Kid, #9)0.111898to-read favorites currently-reading young-adul...10028.000000
6422Women of the Silk0.111868to-read favorites currently-reading fiction bo...10028.000000
6423The Third Chimpanzee: The Evolution and Future...0.111807to-read favorites currently-reading books-i-ow...10025.000000
6424Chopsticks0.111802to-read favorites currently-reading young-adul...10020.000000
6425All My Puny Sorrows0.111780to-read favorites currently-reading fiction bo...10028.000000
6426The Red Queen: Sex and the Evolution of Human ...0.111751to-read favorites currently-reading books-i-ow...10025.000000
6427Luna0.111749to-read favorites currently-reading young-adul...10025.000000
6428Chrysanthemum0.111746to-read fantasy favorites currently-reading fi...10014.000000
6429Moab Is My Washpot (Memoir #1)0.111731to-read favorites currently-reading fiction bo...10036.000000
6430Vampire Academy: The Graphic Novel (Vampire Ac...0.111705to-read fantasy favorites currently-reading yo...10030.000000
6431Primates of Park Avenue0.111703to-read favorites currently-reading fiction bo...10021.000000
6432The Family Fang0.111671to-read favorites currently-reading fiction bo...10028.000000
6433The Book of Luke0.111636to-read favorites currently-reading young-adul...10025.000000
6434Drowning Ruth0.111617to-read favorites currently-reading fiction bo...10033.000000
6435Homicide: A Year on the Killing Streets0.111592to-read favorites currently-reading fiction bo...10030.000000
6436All Families are Psychotic0.111591to-read favorites currently-reading fiction bo...10027.000000
6437Dust (Kay Scarpetta, #21)0.111586to-read favorites currently-reading fiction bo...10030.000000
6438Superfudge (Fudge, #3)0.111547to-read favorites currently-reading young-adul...10022.000000
6439The Weight of Blood0.111512to-read favorites currently-reading fiction bo...10026.000000
6440The Opportunist (Love Me with Lies, #1)0.111511to-read favorites currently-reading young-adul...10027.000000
6441Arthur & George0.111497to-read favorites currently-reading fiction bo...10035.000000
6442From Here to Eternity0.111419to-read favorites currently-reading fiction bo...10031.000000
6443Inca Gold (Dirk Pitt, #12)0.111372to-read favorites currently-reading fiction bo...10030.000000
6444Pretty Girls0.111365to-read favorites currently-reading fiction bo...10027.000000
6445Shadow Divers0.111335to-read favorites currently-reading fiction bo...10030.000000
6446Another Brooklyn0.111330to-read favorites currently-reading young-adul...10023.000000
6447That Night0.111286to-read favorites currently-reading fiction bo...10024.000000
6448Rose Madder0.111280to-read fantasy favorites currently-reading fi...10037.000000
6449The House of the Dead0.111270to-read favorites currently-reading fiction bo...10029.000000
6450How to Be a Woman0.111262to-read favorites currently-reading fiction bo...10030.000000
6451The Honourable Schoolboy0.111226to-read favorites currently-reading fiction bo...10037.000000
6452In the Garden of Beasts: Love, Terror, and an ...0.111224to-read favorites currently-reading fiction bo...10028.000000
6453The Talisman (Volume 1): The Road of Trials0.111221to-read fantasy favorites currently-reading fi...10021.000000
6454The Walking Dead, Vol. 12: Life Among Them0.111208to-read fantasy favorites currently-reading fi...10026.000000
6455False Memory0.111201to-read fantasy favorites currently-reading fi...10037.000000
6456How the Light Gets In (Chief Inspector Armand ...0.111185favorites currently-reading fiction books-i-ow...10026.000000
6457Touch & Go (Tessa Leoni, #2)0.111163to-read favorites currently-reading fiction bo...10032.000000
6458Finding Me: A Decade of Darkness, a Life Recla...0.111125to-read favorites currently-reading fiction bo...10025.000000
6459The Poisoner's Handbook: Murder and the Birth ...0.111124to-read favorites currently-reading fiction bo...10024.000000
6460Cat Among the Pigeons (Hercule Poirot, #32)0.111071to-read favorites currently-reading fiction bo...10039.000000
6461Ramona the Brave (Ramona, #3)0.111060to-read favorites currently-reading young-adul...10025.000000
6462Frosty the Snowman (Frosty the Snowman)0.111034to-read fantasy favorites currently-reading fi...10012.000000
6463Saga, Vol. 6 (Saga, #6)0.111003to-read fantasy favorites currently-reading fi...10031.000000
6464The Confession0.110989to-read favorites currently-reading fiction bo...10032.000000
6465The Rising: Antichrist is Born (Before They W...0.110983to-read fantasy favorites currently-reading fi...10028.000000
6466The Romanov Prophecy0.110978to-read favorites currently-reading fiction bo...10033.000000
6467Anil's Ghost0.110967to-read favorites currently-reading fiction bo...10033.000000
6468Captain Underpants and the Perilous Plot of Pr...0.110961to-read fantasy favorites currently-reading fi...10024.000000
6469The Bet (The Bet, #1)0.110956to-read favorites currently-reading young-adul...10030.000000
6470The Double Bind0.110926to-read favorites currently-reading fiction bo...10032.000000
6471Chains (Seeds of America, #1)0.110925to-read favorites currently-reading young-adul...10022.000000
6472Turning Angel0.110922to-read favorites currently-reading fiction bo...10032.000000
6473Hornet Flight0.110902to-read favorites currently-reading fiction bo...10031.000000
6474You Are Special (Wemmicksville, #1)0.110885to-read fantasy favorites currently-reading yo...10024.000000
6475Fear Nothing (Moonlight Bay, #1)0.110885to-read fantasy favorites currently-reading fi...10037.000000
6476The League of Extraordinary Gentlemen, Vol. 10.110855to-read fantasy favorites currently-reading yo...10030.000000
6477Courageous0.110816to-read favorites currently-reading fiction bo...10031.000000
6478Daring Greatly: How the Courage to Be Vulnerab...0.110804to-read favorites currently-reading books-i-ow...10026.000000
6479Act Like a Lady, Think Like a Man: What Men Re...0.110803to-read favorites currently-reading books-i-ow...10026.000000
6480Because of Mr. Terupt0.110795to-read favorites currently-reading young-adul...10022.000000
6481Snuff0.110773to-read favorites currently-reading fiction bo...10030.000000
6482The Duke and I (Bridgertons, #1)0.110746to-read favorites currently-reading fiction bo...10030.000000
6483A House in the Sky0.110718to-read favorites currently-reading fiction bo...10032.000000
6484Revelation (Matthew Shardlake, #4)0.110717to-read favorites currently-reading fiction bo...10031.000000
6485My Year of Meats0.110712to-read favorites currently-reading fiction bo...10032.000000
6486Dangerous Girls0.110702to-read favorites currently-reading young-adul...10025.000000
6487Girls of Riyadh0.110612to-read favorites currently-reading young-adul...10026.000000
6488The Nature of the Beast (Chief Inspector Arman...0.110583to-read favorites currently-reading fiction bo...10027.000000
6489The Three Little Pigs0.110581to-read fantasy favorites currently-reading fi...10015.000000
6490Summer House0.110502to-read favorites currently-reading fiction bo...10021.000000
6491A Fraction of the Whole0.110495to-read favorites currently-reading fiction bo...10033.000000
6492The Long Way Home (Chief Inspector Armand Gama...0.110481to-read favorites currently-reading fiction bo...10026.000000
6493The Gamble (Colorado Mountain, #1)0.110467to-read favorites currently-reading fiction bo...10031.000000
6494Reckless (Thoughtless, #3)0.110441to-read favorites currently-reading young-adul...10033.000000
6495The Widow of the South0.110441to-read favorites currently-reading fiction bo...10032.000000
6496Treachery in Death (In Death, #32)0.110401to-read fantasy favorites currently-reading fi...10033.000000
6497Return (Redemption, #3)0.110401to-read favorites currently-reading fiction bo...10026.000000
6498Dissolution (Matthew Shardlake, #1)0.110397to-read favorites currently-reading fiction bo...10034.000000
6499Fables, Vol. 7: Arabian Nights [and Days] (Fab...0.110390to-read fantasy favorites currently-reading fi...10024.000000
6500Even Now (Lost Love, #1)0.110371to-read favorites currently-reading young-adul...10030.000000
6501Before the Fall0.110362to-read favorites currently-reading fiction bo...10024.000000
6502Chromosome 6 (Jack Stapleton & Laurie Montgome...0.110352to-read fantasy favorites currently-reading fi...10032.000000
6503The Prettiest One0.110317to-read favorites currently-reading fiction bo...10023.000000
6504The Walking Dead, Vol. 11: Fear the Hunters0.110286to-read fantasy favorites currently-reading fi...10027.000000
6505Black and Blue0.110260to-read favorites currently-reading fiction bo...10026.000000
6506Most Wanted0.110251to-read favorites currently-reading fiction bo...10023.000000
6507Y: The Last Man - The Deluxe Edition Book One0.110248to-read fantasy favorites currently-reading fi...10030.000000
6508The Templar Legacy (Cotton Malone, #1)0.110242to-read fantasy favorites currently-reading fi...10032.000000
6509Let the Great World Spin0.110241to-read favorites currently-reading fiction bo...10033.000000
6510Fool Me Once0.110201to-read favorites currently-reading fiction bo...10026.000000
6511The Redhead Revealed (Redhead, #2)0.110162to-read favorites currently-reading fiction bo...10029.000000
6512Bared to You (Crossfire, #1)0.110131to-read favorites currently-reading fiction bo...10036.000000
6513Slammed (Slammed, #1)0.110085to-read favorites currently-reading young-adul...10023.000000
6514Fences (The Century Cycle #6)0.110081to-read favorites currently-reading fiction bo...10027.000000
6515Sleepers0.110046to-read favorites currently-reading fiction bo...10030.000000
6516The Naked Face0.110004to-read favorites currently-reading young-adul...10030.000000
6517The Killer Angels (The Civil War Trilogy, #2)0.109993to-read favorites currently-reading fiction bo...10039.000000
6518Envy0.109987to-read favorites currently-reading fiction bo...10033.000000
6519The Art of Asking; or, How I Learned to Stop W...0.109986to-read favorites books-i-own owned favourites...10029.000000
6520Scandal in Spring (Wallflowers, #4)0.109935to-read favorites currently-reading fiction bo...10030.000000
6521Think Like a Freak0.109871to-read favorites currently-reading owned seri...10024.000000
6522A Lesson Before Dying0.109863to-read favorites currently-reading young-adul...10034.000000
6523Heat Rises (Nikki Heat, #3)0.109820to-read fantasy favorites currently-reading fi...10030.000000
6524Secrets of a Summer Night (Wallflowers, #1)0.109819to-read favorites currently-reading fiction bo...10032.000000
6525The Coincidence of Callie & Kayden (The Coinci...0.109816to-read favorites currently-reading young-adul...10030.000000
6526Empress of the World (Battle Hall Davies, #1)0.109763to-read favorites currently-reading young-adul...10026.000000
6527Flesh and Blood (Kay Scarpetta, #22)0.109755to-read favorites currently-reading fiction bo...10030.000000
6528The Beautiful Mystery (Chief Inspector Armand ...0.109735to-read favorites currently-reading fiction bo...10028.000000
6529The Polar Express0.109716to-read fantasy favorites currently-reading yo...10022.000000
6530Heaven is for Real: A Little Boy's Astounding ...0.109711to-read currently-reading young-adult books-i-...10024.000000
6531Duma Key0.109663to-read fantasy favorites currently-reading fi...10039.000000
6532The Secret Place (Dublin Murder Squad, #5)0.109630to-read favorites currently-reading fiction bo...10029.000000
6533All I Really Need to Know I Learned in Kinderg...0.109627to-read favorites currently-reading fiction bo...10031.000000
6534Mark of the Lion Trilogy0.109588to-read favorites currently-reading fiction bo...10025.000000
6535The Truth Seeker (O'Malley #3)0.109578to-read favorites currently-reading young-adul...10035.000000
6536Le Petit Nicolas (Le petit Nicolas, #1)0.109554to-read favorites currently-reading young-adul...10032.000000
6537The Black Widow (Gabriel Allon, #16)0.109544to-read favorites currently-reading fiction bo...10028.000000
6538Orphan X (Orphan X, #1)0.109490to-read favorites currently-reading fiction bo...10028.000000
6539Locke & Key, Vol. 5: Clockworks0.109489to-read fantasy favorites currently-reading yo...10026.000000
6540The New Bedside, Bathtub and Armchair Companio...0.109484to-read currently-reading owned-books default ...10014.000000
6541The Christmas Wedding0.109462to-read favorites currently-reading fiction bo...10029.000000
6542Four Past Midnight0.109442to-read fantasy favorites currently-reading fi...10035.000000
6543The Codex0.109431to-read favorites currently-reading fiction bo...10030.000000
6544Wanted (Wanted, #1)0.109415to-read favorites currently-reading young-adul...10029.000000
6545Angry Housewives Eating Bon Bons0.109376to-read favorites currently-reading fiction bo...10032.000000
6546Soccernomics: Why England Loses, Why Germany a...0.109366to-read favorites currently-reading books-i-ow...10023.000000
6547Y: The Last Man, Vol. 4: Safeword (Y: The Last...0.109361to-read fantasy favorites currently-reading fi...10023.000000
6548One for the Murphys0.109361to-read favorites currently-reading young-adul...10018.000000
6549Beautiful Burn (The Maddox Brothers, #4)0.109334to-read favorites currently-reading young-adul...10026.000000
6550Chasing Perfect (Fool's Gold, #1)0.109325to-read favorites currently-reading fiction bo...10027.000000
6551Tangled (Tangled, #1)0.109317to-read favorites currently-reading fiction bo...10030.000000
6552Lies That Chelsea Handler Told Me0.109248to-read favorites currently-reading fiction bo...10030.000000
6553From a Buick 80.109226to-read favorites currently-reading fiction bo...10033.000000
6554Mine Till Midnight (The Hathaways, #1)0.109214to-read favorites currently-reading fiction bo...10031.000000
6555The Best Nest0.109208to-read fantasy favorites currently-reading fi...10015.000000
6556Wiseguy0.109200to-read favorites currently-reading fiction bo...10027.000000
6557The Gathering0.109177to-read favorites currently-reading fiction bo...10030.000000
6558Tea Time for the Traditionally Built (No. 1 La...0.109155to-read favorites currently-reading fiction bo...10033.000000
6559One Thousand White Women: The Journals of May ...0.109146to-read favorites currently-reading fiction bo...10035.000000
6560F*ck Love0.109141to-read favorites currently-reading young-adul...10024.000000
6561Rusty Nailed (Cocktail, #2)0.109110to-read favorites currently-reading fiction bo...10028.000000
6562Flora and Ulysses: The Illuminated Adventures0.109038to-read fantasy favorites currently-reading yo...10021.000000
6563Sadako and the Thousand Paper Cranes0.109006to-read favorites currently-reading young-adul...10021.000000
6564Bone: Tall Tales0.109004to-read fantasy favorites currently-reading yo...10024.000000
6565How I Became a Pirate0.109002to-read fantasy favorites currently-reading fi...10017.000000
6566Never Too Far (Rosemary Beach, #2; Too Far, #2)0.109000to-read favorites currently-reading young-adul...10027.000000
6567Vernon God Little0.108980to-read favorites currently-reading young-adul...10032.000000
6568The Bourne Legacy (Jason Bourne, #4)0.108966to-read favorites currently-reading fiction bo...10036.000000
6569The Wednesday Letters0.108965to-read favorites currently-reading fiction bo...10029.000000
6570The First Part Last (Heaven, #2)0.108958to-read favorites currently-reading young-adul...10020.000000
6571How to Get Filthy Rich in Rising Asia0.108953to-read favorites currently-reading fiction ow...10026.000000
6572Lady Luck (Colorado Mountain, #3)0.108928to-read favorites currently-reading fiction bo...10031.000000
6573Sweet Dreams (Colorado Mountain, #2)0.108895to-read favorites currently-reading fiction bo...10031.000000
6574Loving Frank0.108846to-read favorites currently-reading fiction bo...10028.000000
6575Innocent in Death (In Death, #24)0.108825to-read fantasy favorites currently-reading fi...10035.000000
6576A People's History of the United States0.108821to-read favorites currently-reading books-i-ow...10034.000000
6577Y: The Last Man, Vol. 9: Motherland (Y: The La...0.108764to-read fantasy favorites currently-reading fi...10026.000000
6578The Wednesday Wars0.108761to-read favorites currently-reading young-adul...10020.000000
6579Each Peach Pear Plum0.108751to-read fantasy favorites currently-reading fi...10018.000000
6580Homegoing0.108729to-read favorites currently-reading fiction bo...10028.000000
6581I Am Half-Sick of Shadows (Flavia de Luce, #4)0.108728to-read favorites currently-reading young-adul...10031.000000
6582Y: The Last Man, Vol. 2: Cycles (Y: The Last M...0.108727to-read fantasy favorites currently-reading fi...10026.000000
6583The Lowland0.108704to-read favorites currently-reading fiction bo...10031.000000
6584Home (Myron Bolitar #11)0.108681to-read favorites currently-reading fiction bo...10025.000000
6585It Chooses You0.108680to-read favorites currently-reading fiction bo...10022.000000
6586Beautiful Bitch (Beautiful Bastard, #1.5)0.108653to-read favorites currently-reading fiction bo...10033.000000
6587The Littles0.108635to-read fantasy favorites currently-reading yo...10020.000000
6588A Color of His Own0.108593to-read fantasy favorites currently-reading fi...10018.000000
6589Her Royal Spyness (Her Royal Spyness Mysteries...0.108591to-read favorites currently-reading fiction bo...10025.000000
6590Up Country0.108585to-read favorites currently-reading fiction bo...10031.000000
6591Sex, Drugs, and Cocoa Puffs: A Low Culture Man...0.108564to-read favorites currently-reading fiction bo...10030.000000
6592Cleopatra's Daughter0.108548to-read favorites currently-reading young-adul...10033.000000
6593Shakespeare's Landlord (Lily Bard, #1)0.108545to-read fantasy favorites currently-reading fi...10027.000000
6594The Information: A History, a Theory, a Flood0.108538to-read favorites currently-reading books-i-ow...10022.000000
6595In Bed with a Highlander (McCabe Trilogy, #1)0.108520to-read favorites currently-reading fiction bo...10027.000000
6596The Good Lord Bird0.108498to-read favorites fiction books-i-own owned ow...10026.000000
6597Tales from a Not-So-Graceful Ice Princess (Dor...0.108476to-read currently-reading young-adult owned ch...10015.000000
6598Against All Enemies (Max Moore, #1)0.108423to-read currently-reading fiction books-i-own ...10032.000000
6599The Last Boleyn0.108420to-read favorites currently-reading fiction bo...10025.000000
6600Entwined with You (Crossfire, #3)0.108415to-read favorites currently-reading fiction ow...10028.000000
6601The Vegetarian0.108405to-read favorites currently-reading fiction bo...10027.000000
6602Such a Rush0.108355to-read favorites currently-reading young-adul...10024.000000
6603Bridge of Sighs0.108324to-read favorites currently-reading fiction bo...10029.000000
6604Battlefield of the Mind: Winning the Battle in...0.108321to-read favorites currently-reading books-i-ow...10032.000000
6605Dumbo: A Little Golden Book0.108313to-read favorites currently-reading fiction bo...10025.000000
6606Why Not Me?0.108305to-read favorites currently-reading books-i-ow...10022.000000
6607The Bachman Books0.108252to-read fantasy favorites currently-reading fi...10034.000000
6608Celebrity in Death (In Death, #34)0.108183to-read fantasy favorites currently-reading fi...10032.000000
6609Left Drowning (Left Drowning, #1)0.108183to-read favorites currently-reading young-adul...10030.000000
6610The Dark Monk (The Hangman's Daughter, #2)0.108159to-read fantasy favorites currently-reading fi...10030.000000
6611Beachcombers0.108132to-read favorites currently-reading fiction bo...10025.000000
6612A Stranger In The Mirror0.108121to-read favorites currently-reading young-adul...10034.000000
6613The House by the Lake0.108102to-read favorites currently-reading fiction bo...10019.000000
6614That Boy (That Boy, #1)0.108083to-read favorites currently-reading young-adul...10028.000000
6615The Sandman: Overture0.108058to-read fantasy favorites currently-reading fi...10028.000000
6616Foreplay (The Ivy Chronicles, #1)0.108044to-read favorites currently-reading young-adul...10031.000000
6617After0.108026to-read favorites currently-reading young-adul...10028.000000
6618Drown0.108019to-read favorites currently-reading young-adul...10033.000000
6619Lost & Found (Lost & Found, #1)0.108014to-read favorites currently-reading young-adul...10031.000000
6620When Will Jesus Bring the Pork Chops?0.108005to-read favorites currently-reading fiction bo...10029.000000
6621The Shallows: What the Internet is Doing to Ou...0.107985to-read favorites currently-reading books-i-ow...10025.000000
6622This is the Story of a Happy Marriage0.107961to-read favorites currently-reading fiction bo...10025.000000
6623Size 14 Is Not Fat Either (Heather Wells, #2)0.107955to-read favorites currently-reading young-adul...10033.000000
6624The Wolf and the Dove0.107937to-read favorites currently-reading fiction bo...10033.000000
6625Glitter and Glue0.107921to-read favorites currently-reading fiction bo...10023.000000
6626Fearless: The Heroic Story of One Navy SEAL's ...0.107915to-read favorites currently-reading books-i-ow...10023.000000
6627Unaccustomed Earth0.107910to-read favorites currently-reading fiction bo...10034.000000
6628The Good Neighbor0.107894to-read favorites currently-reading fiction bo...10024.000000
6629This Man (This Man, #1)0.107880to-read favorites currently-reading fiction bo...10031.000000
6630Key of Light (Key Trilogy, #1)0.107877to-read fantasy favorites currently-reading fi...10036.000000
6631Oblivion0.107853to-read favorites currently-reading fiction bo...10030.000000
6632Caleb's Crossing0.107779to-read favorites currently-reading fiction bo...10027.000000
6633Stuff White People Like: A Definitive Guide to...0.107752to-read favorites currently-reading fiction bo...10031.000000
6634West Side Story0.107749to-read favorites currently-reading fiction bo...10020.000000
6635Scuffy the Tugboat (Big Little Golden Book)0.107689to-read fantasy favorites currently-reading fi...10019.000000
6636Crow's Row (Crow's Row, #1)0.107684to-read favorites currently-reading young-adul...10027.000000
6637Redeployment0.107682to-read favorites currently-reading fiction bo...10027.000000
6638Darwin's Dangerous Idea: Evolution and the Mea...0.107650to-read favorites currently-reading books-i-ow...10020.000000
6639Y: The Last Man, Vol. 7: Paper Dolls (Y: The L...0.107646to-read fantasy favorites currently-reading fi...10025.000000
6640The Girl You Lost0.107641to-read favorites currently-reading fiction bo...10021.000000
6641Taking Chances (Taking Chances, #1)0.107640to-read favorites currently-reading young-adul...10032.000000
6642The Story of the Trapp Family Singers0.107607to-read favorites currently-reading fiction bo...10032.000000
6643The Accidental Billionaires: The Founding of F...0.107595to-read favorites currently-reading fiction bo...10028.000000
6644My Favorite Mistake (My Favorite Mistake, #1)0.107581to-read favorites currently-reading young-adul...10030.000000
6645Think Twice (Rosato & Associates, #11)0.107552to-read favorites currently-reading fiction bo...10028.000000
6646Salvage the Bones0.107540to-read favorites currently-reading young-adul...10028.000000
6647Rock Chick Rescue (Rock Chick, #2)0.107494to-read favorites currently-reading fiction bo...10029.000000
6648Tuesday0.107477to-read fantasy favorites currently-reading fi...10016.000000
6649Tempt Me at Twilight (The Hathaways, #3)0.107458to-read favorites currently-reading fiction bo...10031.000000
6650One Good Dog0.107431to-read favorites currently-reading fiction bo...10028.000000
6651Under the Tuscan Sun0.107410to-read favorites currently-reading fiction bo...10033.000000
6652Sleeping Beauty: a Little Golden Book (Disney ...0.107327to-read fantasy favorites currently-reading fi...10019.000000
6653Last Chance Saloon0.107308to-read favorites currently-reading fiction bo...10030.000000
6654The Selected Poetry of Rainer Maria Rilke0.107271to-read favorites currently-reading fiction bo...10033.000000
6655Sometimes It Lasts (Sea Breeze, #5)0.107263to-read favorites currently-reading young-adul...10030.000000
6656Personal (Jack Reacher, #19)0.107260to-read favorites currently-reading fiction bo...10030.000000
6657The Faraway Tree Stories (The Faraway Tree #1-3)0.107257to-read fantasy favorites currently-reading yo...10033.000000
6658The Christmas Train0.107255to-read favorites currently-reading fiction bo...10030.000000
6659Fallen Crest Family (Fallen Crest High, #2)0.107244to-read favorites currently-reading young-adul...10028.000000
6660Sleep Tight0.107234to-read favorites currently-reading fiction bo...10023.000000
6661#GIRLBOSS0.107204to-read favorites currently-reading books-i-ow...10028.000000
6662Await Your Reply0.107155to-read favorites currently-reading fiction bo...10027.000000
6663What I Talk About When I Talk About Running0.107147to-read favorites currently-reading fiction bo...10033.000000
6664It Happened One Autumn (Wallflowers, #2)0.107144favorites currently-reading fiction books-i-ow...10031.000000
6665The Freedom Writers Diary0.107124to-read favorites currently-reading young-adul...10032.000000
6666The Farm0.107105to-read favorites currently-reading fiction bo...10027.000000
6667Silent Spring0.107080to-read favorites currently-reading fiction bo...10027.000000
6668The Mask0.107066to-read fantasy favorites currently-reading fi...10030.000000
6669I'd Know You Anywhere0.107064to-read favorites currently-reading fiction bo...10027.000000
6670Naked Heat (Nikki Heat, #2)0.107057to-read favorites currently-reading fiction bo...10030.000000
6671Where Eagles Dare0.107048to-read favorites currently-reading fiction bo...10030.000000
6672Goldfinger (James Bond, #7)0.107026to-read favorites currently-reading fiction bo...10039.000000
6673Red Sparrow (Red Sparrow Trilogy #1)0.106989to-read favorites currently-reading fiction bo...10030.000000
6674Ford County0.106952to-read favorites currently-reading fiction bo...10030.000000
6675Flush0.106918to-read favorites currently-reading young-adul...10025.000000
6676Harold and the Purple Crayon0.106893to-read fantasy favorites currently-reading yo...10022.000000
6677Suicide Notes0.106854to-read favorites currently-reading young-adul...10022.000000
6678Just Like Heaven (Smythe-Smith Quartet #1)0.106854to-read favorites currently-reading fiction bo...10033.000000
6679You Will Know Me0.106835to-read favorites currently-reading young-adul...10024.000000
6680Radiant Angel (John Corey, #7)0.106821to-read favorites currently-reading fiction bo...10028.000000
6681The Walking Dead, Book Two (The Walking Dead #...0.106814to-read fantasy favorites currently-reading fi...10026.000000
6682The Magpies0.106805to-read favorites currently-reading fiction bo...10024.000000
6683The Time Traveller's Guide to Medieval England...0.106792to-read fantasy favorites currently-reading fi...10031.000000
6684How We Are Hungry0.106753to-read favorites currently-reading fiction bo...10029.000000
6685Dataclysm: Who We Are (When We Think No One's ...0.106730to-read favorites currently-reading books-i-ow...10023.000000
6686You Are a Badass: How to Stop Doubting Your Gr...0.106721to-read favorites currently-reading books-i-ow...10028.000000
6687Locke & Key, Vol. 2: Head Games0.106676to-read fantasy favorites currently-reading yo...10028.000000
6688Delusion in Death (In Death, #35)0.106640to-read fantasy favorites currently-reading fi...10032.000000
6689White Nights0.106628to-read favorites currently-reading fiction bo...10030.000000
6690Flags of Our Fathers0.106617to-read favorites currently-reading fiction bo...10032.000000
6691A Complicated Kindness0.106597to-read favorites currently-reading young-adul...10033.000000
6692The Water is Wide: A Memoir0.106591to-read favorites currently-reading fiction bo...10030.000000
6693Feral Sins (The Phoenix Pack, #1)0.106574to-read fantasy favorites currently-reading fi...10025.000000
6694Thunderstruck0.106557to-read favorites currently-reading fiction bo...10030.000000
6695The Bastard of Istanbul0.106513to-read favorites currently-reading fiction bo...10031.000000
6696Si-cology 1: Tales and Wisdom from Duck Dynast...0.106497favorites currently-reading books-i-own owned ...10026.000000
6697Equus0.106491to-read favorites currently-reading young-adul...10031.000000
6698The Fry Chronicles (Memoir #2)0.106487to-read favorites currently-reading books-i-ow...10032.000000
6699The Declaration of Independence and The Consti...0.106482to-read favorites currently-reading fiction bo...10022.000000
6700Second Chance0.106481to-read favorites currently-reading fiction bo...10029.000000
6701Always You (Best Friend, #1)0.106459to-read favorites currently-reading young-adul...10030.000000
6702The Basketball Diaries0.106441to-read favorites currently-reading young-adul...10031.000000
6703Fallen Crest High (Fallen Crest High, #1)0.106402to-read favorites currently-reading young-adul...10030.000000
6704The Walking Dead, Compendium 20.106400to-read fantasy favorites currently-reading fi...10032.000000
6705On Liberty0.106398to-read favorites currently-reading books-i-ow...10024.000000
6706Virgin River (Virgin River, #1)0.106394to-read favorites currently-reading fiction bo...10029.000000
6707The Missing Piece Meets the Big O0.106364to-read favorites currently-reading young-adul...10028.000000
6708Lucky You0.106357to-read favorites currently-reading fiction bo...10032.000000
6709Rising Strong0.106351to-read favorites currently-reading fiction bo...10024.000000
6710Promised (One Night, #1)0.106344to-read favorites currently-reading fiction bo...10030.000000
6711Turn of Mind0.106340to-read favorites currently-reading fiction bo...10025.000000
6712Hedda Gabler0.106323to-read favorites currently-reading fiction bo...10027.000000
6713The Turner House0.106310to-read favorites currently-reading fiction bo...10023.000000
6714Those Guys Have All the Fun: Inside the World ...0.106308to-read favorites currently-reading books-i-ow...10022.000000
6715In the Kingdom of Ice: The Grand and Terrible ...0.106305to-read favorites currently-reading fiction bo...10026.000000
6716If You Give a Cat a Cupcake0.106286to-read fantasy favorites currently-reading fi...10017.000000
6717Waiting to Exhale (Waiting To Exhale #1)0.106284to-read favorites currently-reading fiction bo...10030.000000
6718The Fourth Protocol0.106273to-read favorites currently-reading fiction bo...10035.000000
6719Fantasy in Death (In Death, #30)0.106260to-read fantasy favorites currently-reading fi...10031.000000
6720The Hiding Place: The Triumphant True Story of...0.106240to-read favorites currently-reading young-adul...10034.000000
6721Life is What You Make It: A Story of Love, Hop...0.106225to-read favorites currently-reading young-adul...10026.000000
6722The Round House0.106210to-read favorites currently-reading young-adul...10029.000000
6723Before Jamaica Lane (On Dublin Street, #3)0.106200to-read favorites young-adult books-i-own owne...10025.000000
6724Freckle Juice0.106194to-read favorites currently-reading young-adul...10019.000000
6725Crash & Burn (Tessa Leoni, #3)0.106179to-read favorites currently-reading fiction bo...10026.000000
6726Locke & Key, Vol. 1: Welcome to Lovecraft0.106150to-read fantasy favorites currently-reading yo...10027.000000
6727Misbehaving (Sea Breeze, #6)0.106150to-read favorites currently-reading young-adul...10032.000000
6728The Deal (Off-Campus, #1)0.106140to-read favorites currently-reading young-adul...10025.000000
6729Forever Mine (The Moreno Brothers, #1)0.106092to-read favorites currently-reading young-adul...10024.000000
6730The Night Before Christmas0.106031to-read fantasy favorites currently-reading yo...10029.000000
6731سمفونی مردگان0.106016to-read favorites currently-reading fiction bo...10018.000000
6732Silent Scream (D.I. Kim Stone, #1)0.105994to-read favorites currently-reading fiction bo...10026.000000
6733Shroud for a Nightingale (Adam Dalgliesh #4)0.105985to-read favorites currently-reading fiction bo...10030.000000
6734The Sneetches and Other Stories0.105981to-read fantasy favorites currently-reading fi...10021.000000
6735If You Give a Mouse a Cookie0.105978to-read fantasy favorites currently-reading fi...10020.000000
6736The Negotiator (O'Malley, #1)0.105957to-read favorites currently-reading young-adul...10034.000000
6737Rosemary: The Hidden Kennedy Daughter0.105957to-read favorites currently-reading owned owne...10020.000000
6738Heart of the Sea (Gallaghers of Ardmore / Iris...0.105925to-read fantasy favorites currently-reading fi...10035.000000
6739The Guilty (Will Robie, #4)0.105914to-read favorites currently-reading fiction bo...10028.000000
6740Wir Kinder vom Bahnhof Zoo0.105891to-read favorites currently-reading young-adul...10034.000000
6741Life and Times of Michael K0.105864to-read favorites currently-reading fiction bo...10029.000000
6742Never Cry Wolf0.105854to-read favorites currently-reading young-adul...10033.000000
6743Ramona and Her Mother (Ramona, #5)0.105781to-read favorites currently-reading young-adul...10025.000000
6744The Score (Off-Campus, #3)0.105767to-read favorites currently-reading young-adul...10023.000000
6745Cop Town0.105757to-read favorites currently-reading fiction bo...10028.000000
6746The Servants of Twilight0.105752to-read fantasy favorites currently-reading fi...10031.000000
6747A Rogue by Any Other Name (The Rules of Scound...0.105730to-read favorites currently-reading fiction bo...10028.000000
6748Sophie & Carter0.105711to-read favorites currently-reading young-adul...10022.000000
6749Nature Girl0.105690to-read favorites currently-reading fiction bo...10030.000000
6750Roll of Thunder, Hear My Cry (Logans, #4)0.105674to-read favorites currently-reading young-adul...10025.000000
6751Beezus and Ramona (Ramona, #1)0.105661to-read favorites currently-reading young-adul...10025.000000
6752The Gashlycrumb Tinies (The Vinegar Works, #1)0.105643to-read fantasy favorites currently-reading yo...10030.000000
6753The Look of Love (San Francisco Sullivans, #1;...0.105627to-read favorites currently-reading fiction bo...10029.000000
6754The Guardian (O'Malley #2)0.105626to-read favorites currently-reading young-adul...10036.000000
6755Safe with Me (With Me in Seattle, #5)0.105624to-read favorites currently-reading fiction bo...10027.000000
6756The Christmas Box (The Christmas Box, #1)0.105566to-read favorites currently-reading young-adul...10033.000000
6757Frindle0.105548to-read favorites currently-reading young-adul...10023.000000
6758Missoula: Rape and the Justice System in a Col...0.105540to-read favorites currently-reading books-i-ow...10021.000000
6759Black Hawk Down0.105531to-read favorites currently-reading fiction bo...10032.000000
6760Tao of Pooh and Te of Piglet Boxed Set0.105501to-read fantasy favorites currently-reading fi...10030.000000
6761The Gruffalo0.105494to-read fantasy favorites currently-reading fi...10025.000000
6762An Offer From a Gentleman (Bridgertons, #3)0.105483to-read favorites currently-reading fiction bo...10031.000000
6763Chanakya's Chant0.105480to-read fantasy favorites currently-reading fi...10030.000000
6764Killing Kennedy: The End of Camelot0.105464to-read favorites currently-reading books-i-ow...10026.000000
6765Game Change: Obama and the Clintons, McCain an...0.105449to-read favorites currently-reading books-i-ow...10024.000000
6766Absurdistan0.105427to-read favorites fiction books-i-own owned ow...10029.000000
6767Saving Francesca0.105394to-read favorites currently-reading young-adul...10020.000000
6768Diary of a Wimpy Kid (Diary of a Wimpy Kid, #1)0.105393to-read favorites currently-reading young-adul...10028.000000
6769Prozac Nation0.105385to-read favorites currently-reading young-adul...10036.000000
6770Between, Georgia0.105381to-read favorites currently-reading fiction bo...10029.000000
6771The Bookseller of Kabul0.105331to-read favorites currently-reading fiction bo...10031.000000
6772Giggle, Giggle, Quack0.105325to-read fantasy favorites currently-reading fi...10015.000000
6773The Witness0.105310to-read favorites currently-reading fiction bo...20019.500000
6774The Witness0.082230to-read favorites currently-reading fiction bo...20019.500000
6775Something like Normal0.105289to-read favorites currently-reading young-adul...10021.000000
6776The Evolution of Calpurnia Tate (Calpurnia Tat...0.105288to-read favorites currently-reading young-adul...10025.000000
6777Indulgence in Death (In Death, #31)0.105285to-read fantasy favorites currently-reading fi...10030.000000
6778The Lions of Little Rock0.105284to-read favorites currently-reading young-adul...10018.000000
6779Half Girlfriend0.105253to-read favorites currently-reading young-adul...10030.000000
6780Personal History0.105242to-read favorites currently-reading books-i-ow...10026.000000
6781Effortless (Thoughtless, #2)0.105221to-read favorites currently-reading young-adul...10029.000000
6782The Boy Who Sneaks in My Bedroom Window0.105219to-read favorites currently-reading young-adul...10026.000000
6783The Happiness Project: Or Why I Spent a Year T...0.105213to-read favorites currently-reading books-i-ow...10031.000000
6784Twisted Palace (The Royals, #3)0.105208to-read favorites currently-reading young-adul...10026.000000
6785Wallbanger (Cocktail, #1)0.105198to-read favorites currently-reading fiction bo...10028.000000
6786Into Thin Air: A Personal Account of the Mount...0.105190to-read favorites currently-reading books-i-ow...10030.000000
6787The Beggar King (The Hangman's Daughter, #3)0.105117to-read fantasy favorites currently-reading fi...10030.000000
6788Lucky0.105086to-read favorites currently-reading young-adul...10038.000000
6789A Rule Against Murder (Chief Inspector Armand ...0.105073to-read favorites currently-reading fiction bo...10028.000000
6790The Suspicions of Mr. Whicher: A Shocking Murd...0.105068to-read favorites currently-reading fiction bo...10029.000000
6791A Morbid Taste for Bones (Chronicles of Brothe...0.105068to-read fantasy favorites currently-reading fi...10034.000000
6792Liar & Spy0.105050to-read favorites currently-reading young-adul...10018.000000
6793The Wicked Girls0.105045to-read favorites currently-reading fiction bo...10030.000000
6794Creation in Death (In Death, #25)0.105039to-read fantasy favorites currently-reading fi...10032.000000
6795The Story of Tracy Beaker0.105022to-read favorites currently-reading young-adul...10026.000000
6796Hidden (Bone Secrets. #1)0.104977to-read favorites currently-reading fiction bo...10026.000000
6797Plum Island (John Corey, #1)0.104973to-read favorites currently-reading fiction bo...10033.000000
6798Gods and Generals (The Civil War Trilogy, #1)0.104957to-read favorites currently-reading fiction bo...10029.000000
6799The Heist (Gabriel Allon, #14)0.104950to-read favorites currently-reading fiction bo...10030.000000
6800Revenge of the Spellmans (The Spellmans, #3)0.104931to-read favorites currently-reading fiction bo...10026.000000
6801The Stranger Beside Me: Ted Bundy The Shocking...0.104893to-read favorites currently-reading fiction bo...10031.000000
6802Anne Frank Remembered: The Story of the Woman ...0.104889to-read favorites currently-reading young-adul...10030.000000
6803Marvel 16020.104888to-read fantasy favorites currently-reading yo...10032.000000
6804The Apothecary's Daughter0.104884to-read favorites currently-reading young-adul...10029.000000
6805What the Dead Know0.104879to-read favorites currently-reading fiction bo...10033.000000
6806Johnny Tremain0.104873to-read favorites currently-reading young-adul...10027.000000
6807In the Woods (Dublin Murder Squad, #1)0.104862to-read favorites currently-reading fiction bo...10034.000000
6808Heat Wave (Nikki Heat, #1)0.104810to-read favorites currently-reading fiction bo...10032.000000
6809Lyle, Lyle, Crocodile0.104767to-read fantasy favorites currently-reading fi...10016.000000
6810Promises in Death (In Death, #28)0.104753to-read fantasy favorites currently-reading fi...10031.000000
6811If You Give a Pig a Pancake0.104750to-read fantasy favorites currently-reading fi...10019.000000
6812The Rapture of Canaan0.104748to-read favorites currently-reading young-adul...10029.000000
6813Earth (The Book): A Visitor's Guide to the Hum...0.104733to-read favorites currently-reading fiction bo...10028.000000
6814The Country Mouse and the City Mouse; The Fox ...0.104699to-read fantasy favorites currently-reading fi...10011.000000
6815The General's Daughter0.104683to-read favorites currently-reading fiction bo...10033.000000
6816The Pioneer Woman: Black Heels to Tractor Wheels0.104677to-read favorites currently-reading fiction bo...10026.000000
6817Imperial Bedrooms0.104665to-read favorites currently-reading fiction bo...10028.000000
6818If Life Is a Bowl of Cherries What Am I Doing ...0.104663to-read favorites currently-reading fiction bo...10024.000000
6819Trust in Me (Wait for You, #1.5)0.104659to-read favorites currently-reading young-adul...10029.000000
6820Murder at the Vicarage (Miss Marple, #1)0.104647to-read favorites currently-reading books-i-ow...10033.000000
6821The Blackhouse (Lewis Trilogy, #1)0.104632to-read favorites currently-reading fiction bo...10030.000000
6822Flight of the Intruder (Jake Grafton #1)0.104630to-read favorites currently-reading fiction bo...10028.000000
6823Three Day Road0.104630to-read favorites currently-reading fiction bo...10032.000000
6824Dad Is Fat0.104504to-read favorites currently-reading fiction bo...10024.000000
6825The Republic0.104495to-read favorites currently-reading fiction bo...10029.000000
6826Royally Screwed (Royally, #1)0.104417to-read favorites currently-reading fiction bo...10024.000000
6827Bring Up the Bodies (Thomas Cromwell, #2)0.104392to-read favorites currently-reading fiction bo...10036.000000
6828Supernova: Ksatria, Puteri, dan Bintang Jatuh0.104380to-read fantasy favorites currently-reading yo...10022.000000
6829Twenty Love Poems and a Song of Despair0.104324to-read favorites currently-reading fiction bo...10031.000000
6830Rome (Marked Men, #3)0.104316to-read favorites currently-reading young-adul...10031.000000
6831Falling into You (Falling, #1)0.104306to-read currently-reading young-adult owned ya...10025.000000
6832A Long Way from Chicago (A Long Way from Chica...0.104291to-read favorites currently-reading young-adul...10023.000000
6833The Interpretation of Dreams0.104288to-read favorites currently-reading owned owne...10026.000000
6834The Unidentified Redhead (Redhead, #1)0.104284to-read favorites currently-reading fiction bo...10029.000000
6835The Darkest Evening of the Year0.104281to-read fantasy favorites currently-reading fi...10033.000000
6836The Sheltering Sky0.104260to-read favorites currently-reading fiction bo...10033.000000
6837Killing Patton: The Strange Death of World War...0.104247to-read favorites currently-reading fiction bo...10026.000000
6838The Proposition (The Proposition, #1)0.104210to-read favorites currently-reading fiction bo...10025.000000
6839QED: The Strange Theory of Light and Matter0.104207to-read favorites currently-reading books-i-ow...10020.000000
6840The Hating Game0.104206to-read favorites currently-reading fiction bo...10027.000000
6841Caught0.104198to-read favorites currently-reading fiction bo...10032.000000
6842The Monster at the End of this Book0.104169to-read fantasy favorites currently-reading yo...10026.000000
6843The Walking Dead, Book One (The Walking Dead #...0.104149to-read fantasy favorites currently-reading fi...10029.000000
6844Sworn to Silence (Kate Burkholder, #1)0.104135to-read favorites currently-reading fiction bo...10026.000000
6845Memories of My Melancholy Whores0.104132to-read favorites currently-reading fiction bo...10032.000000
6846The Green Mile, Part 2: The Mouse on the Mile0.104121to-read fantasy favorites currently-reading fi...10035.000000
6847Missing You0.104097to-read favorites currently-reading fiction bo...10029.000000
6848Assholes Finish First (Tucker Max, #2)0.104091to-read favorites currently-reading fiction bo...10026.000000
6849Brain Droppings0.104087to-read favorites currently-reading fiction bo...10029.000000
6850The Twenty-One Balloons0.104078to-read fantasy favorites currently-reading yo...10027.000000
6851Welcome to the World, Baby Girl! (Elmwood Spri...0.104073to-read favorites currently-reading fiction bo...10029.000000
6852Horton Hears a Who!0.104037to-read fantasy favorites currently-reading yo...10023.000000
6853Fables, Vol. 9: Sons of Empire0.104006to-read fantasy favorites currently-reading fi...10027.000000
6854Amphigorey (Amphigorey, #1)0.104002to-read fantasy favorites currently-reading yo...10033.000000
6855The Inheritance of Loss0.103995to-read favorites currently-reading fiction bo...10033.000000
6856Jackdaws0.103963to-read favorites currently-reading fiction ow...10030.000000
6857The Starter Wife0.103962to-read favorites currently-reading fiction bo...10028.000000
6858Suzanne's Diary for Nicholas0.103961to-read favorites currently-reading fiction bo...10034.000000
6859Bringing Down the House: The Inside Story of S...0.103956to-read favorites currently-reading fiction bo...10028.000000
6860The Ugly Truth (Diary of a Wimpy Kid, #5)0.103944to-read fantasy favorites currently-reading yo...10028.000000
6861A Week to Be Wicked (Spindle Cove, #2)0.103943to-read favorites currently-reading fiction bo...10028.000000
6862Y: The Last Man, Vol. 5: Ring of Truth (Y: The...0.103922to-read fantasy favorites currently-reading fi...10024.000000
6863The Stand: Captain Trips0.103918to-read fantasy favorites currently-reading fi...10027.000000
6864Dog Days (Diary of a Wimpy Kid, #4)0.103903to-read fantasy favorites currently-reading yo...10029.000000
6865Let's Pretend This Never Happened (Dear Dumb D...0.103898to-read fantasy favorites currently-reading yo...10024.000000
6866The Girls of Atomic City: The Untold Story of ...0.103896to-read favorites currently-reading books-i-ow...10025.000000
6867On the Genealogy of Morals0.103869to-read favorites books-i-own owned favourites...10026.000000
6868Wolf Hall (Thomas Cromwell, #1)0.103855to-read favorites currently-reading fiction bo...10036.000000
6869The Sands of Time0.103852to-read favorites currently-reading young-adul...10034.000000
6870The Woman in Cabin 100.103844to-read favorites currently-reading fiction bo...10025.000000
6871The Other Side of the Story0.103826to-read favorites currently-reading fiction bo...10032.000000
6872Crush (Crash, #3)0.103809to-read favorites currently-reading young-adul...10031.000000
6873Galileo's Daughter: A Historical Memoir of Sci...0.103804to-read favorites currently-reading fiction bo...10032.000000
6874Double Whammy0.103787to-read favorites currently-reading fiction bo...10031.000000
68751,000 Places to See Before You Die0.103777to-read favorites currently-reading books-i-ow...10028.000000
6876No Talking0.103764to-read favorites currently-reading young-adul...10024.000000
6877A Walk Across the Sun0.103757to-read favorites currently-reading fiction bo...10028.000000
6878I Hope They Serve Beer in Hell (Tucker Max, #1)0.103721to-read favorites currently-reading fiction bo...10032.000000
6879Bad Romeo (Starcrossed, #1)0.103688to-read favorites currently-reading young-adul...10032.000000
6880Happy Ever After (Bride Quartet, #4)0.103680to-read favorites currently-reading fiction bo...10030.000000
6881Portrait of a Killer: Jack the Ripper - Case C...0.103666to-read favorites currently-reading fiction bo...10032.000000
6882Dexter in the Dark (Dexter, #3)0.103650to-read fantasy favorites currently-reading fi...10032.000000
6883The Real Mother Goose0.103650to-read fantasy favorites currently-reading yo...10023.000000
6884The Colorado Kid (Hard Case Crime #13)0.103645to-read fantasy favorites currently-reading fi...10034.000000
6885The Widow0.103608to-read favorites currently-reading fiction bo...10025.000000
6886Mystery Man (Dream Man, #1)0.103557to-read favorites currently-reading fiction bo...10031.000000
6887A History of Western Philosophy0.103550to-read favorites currently-reading books-i-ow...10032.000000
6888The 7 Habits of Highly Effective Teens: The Ul...0.103531to-read favorites currently-reading young-adul...10030.000000
6889Cemetery Dance (Pendergast, #9)0.103515to-read fantasy favorites currently-reading fi...10033.000000
6890And the Shofar Blew0.103499to-read favorites currently-reading fiction bo...10029.000000
6891A Trick of the Light (Chief Inspector Armand G...0.103479to-read favorites currently-reading fiction bo...10027.000000
6892SEAL Team Six: Memoirs of an Elite Navy SEAL S...0.103475to-read favorites currently-reading fiction bo...10025.000000
6893The Skin I'm In0.103448to-read favorites currently-reading young-adul...10018.000000
6894The Walking Dead, Vol. 03: Safety Behind Bars0.103431to-read fantasy favorites currently-reading fi...10030.000000
6895A Lot like Love (FBI/US Attorney, #2)0.103357to-read favorites currently-reading fiction bo...10027.000000
6896The Motorcycle Diaries: Notes on a Latin Ameri...0.103353to-read favorites currently-reading fiction bo...10032.000000
6897Between a Rock and a Hard Place0.103348to-read favorites currently-reading books-i-ow...10030.000000
6898The Duchess War (Brothers Sinister, #1)0.103339to-read favorites currently-reading fiction bo...10027.000000
6899Goodnight Moon0.103326to-read fantasy favorites currently-reading yo...10023.000000
6900Chomp0.103321to-read favorites currently-reading young-adul...10020.000000
6901How to Eat Fried Worms0.103303to-read favorites currently-reading young-adul...10018.000000
6902Three Fates0.103285to-read fantasy favorites currently-reading fi...10041.000000
6903Ramona Forever (Ramona, #7)0.103282to-read favorites currently-reading young-adul...10023.000000
6904The Berenstain Bears Forget Their Manners0.103282to-read fantasy favorites currently-reading yo...10020.000000
6905Strangers in Death (In Death, #26)0.103190to-read fantasy favorites currently-reading fi...10033.000000
6906Consider the Lobster and Other Essays0.103137to-read favorites currently-reading fiction bo...10031.000000
6907Hot, Flat, and Crowded: Why We Need a Green Re...0.103084to-read favorites currently-reading books-i-ow...10024.000000
6908The Beatles: The Biography0.103074to-read favorites currently-reading books-i-ow...10030.000000
6909Green Eggs and Ham0.103074to-read fantasy favorites currently-reading yo...10027.000000
6910Brotherhood in Death (In Death, #42)0.103063to-read fantasy favorites currently-reading fi...10026.000000
6911Tales from a Not-So-Happy Heartbreaker (Dork D...0.103052to-read favorites currently-reading young-adul...10020.000000
6912The Cat in the Hat0.103049to-read fantasy favorites currently-reading yo...10025.000000
6913Skeleton Crew0.103044to-read fantasy favorites currently-reading fi...10035.000000
6914Roadwork0.103035to-read fantasy favorites currently-reading fi...10035.000000
6915Afterburn (Jax & Gia, #1)0.103033to-read favorites currently-reading fiction bo...10027.000000
6916Bread and Wine: A Love Letter to Life Around...0.103014to-read favorites currently-reading fiction bo...10021.000000
6917The Christmas Shoes (Christmas Hope #1)0.102973to-read favorites currently-reading young-adul...10032.000000
6918In a Dark, Dark Wood0.102964to-read favorites currently-reading fiction bo...10024.000000
6919Inside the Human Body (The Magic School Bus, #3)0.102945to-read fantasy favorites currently-reading fi...10019.000000
6920The Bourne Supremacy (Jason Bourne, #2)0.102936to-read favorites currently-reading fiction bo...10038.000000
6921The Appeal0.102928to-read favorites currently-reading fiction bo...10029.000000
6922A Charlie Brown Christmas0.102914to-read favorites currently-reading young-adul...10026.000000
6923Phantoms in the Brain: Probing the Mysteries o...0.102880to-read favorites currently-reading books-i-ow...10022.000000
6924Beat the Reaper (Peter Brown #1)0.102874to-read favorites currently-reading fiction bo...10032.000000
6925Mean Streak0.102817to-read favorites currently-reading fiction bo...10029.000000
6926The Likeness (Dublin Murder Squad, #2)0.102811to-read favorites currently-reading fiction bo...10034.000000
6927Days with Frog and Toad (Frog and Toad, #4)0.102797to-read fantasy favorites currently-reading yo...10021.000000
6928Breathe (Colorado Mountain, #4)0.102781to-read favorites currently-reading fiction bo...10027.000000
6929The Dead Key0.102752to-read favorites currently-reading fiction bo...10025.000000
6930The Many Lives & Secret Sorrows of Josephine B...0.102731to-read favorites currently-reading fiction bo...10028.000000
6931The Howling0.102699to-read fantasy favorites currently-reading fi...10023.000000
6932The Hate U Give0.102686to-read favorites currently-reading young-adul...10026.000000
6933The Walking Dead, Book Three (The Walking Dead...0.102665to-read fantasy favorites currently-reading yo...10026.000000
6934The Teachings of Don Juan: A Yaqui Way of Know...0.102650to-read fantasy favorites fiction books-i-own ...10027.000000
6935Nobody's Baby But Mine (Chicago Stars, #3)0.102641to-read favorites currently-reading fiction bo...10028.000000
6936Lucy Sullivan Is Getting Married0.102638to-read favorites currently-reading fiction bo...10030.000000
6937Island Beneath the Sea0.102625to-read favorites currently-reading fiction bo...10030.000000
6938What the Night Knows0.102614to-read fantasy favorites currently-reading fi...10032.000000
6939Crocodile on the Sandbank (Amelia Peabody #1)0.102612to-read favorites currently-reading fiction bo...10032.000000
6940A Great Reckoning (Chief Inspector Armand Gama...0.102606to-read favorites currently-reading fiction bo...10024.000000
6941The Innocent0.102553to-read favorites currently-reading fiction bo...10035.000000
6942The Poetry of Pablo Neruda0.102550to-read favorites currently-reading fiction bo...10030.000000
6943Married By Morning (The Hathaways, #4)0.102529to-read favorites currently-reading fiction bo...10031.000000
6944Rain Reign0.102514to-read favorites currently-reading young-adul...10018.000000
6945Tempting the Player (Gamble Brothers, #2)0.102468to-read favorites currently-reading fiction bo...10027.000000
6946Kon-Tiki: Across The Pacific In A Raft0.102464to-read favorites currently-reading fiction bo...10028.000000
6947The Complete Calvin and Hobbes0.102452to-read fantasy favorites currently-reading yo...10032.000000
6948The Siren (The Original Sinners, #1)0.102432to-read favorites currently-reading fiction bo...10032.000000
6949Yes Please0.102409to-read favorites currently-reading books-i-ow...10027.000000
6950The Frog and Toad Treasury: Frog and Toad are ...0.102397to-read fantasy favorites currently-reading fi...10022.000000
6951David and Goliath: Underdogs, Misfits, and the...0.102375to-read favorites currently-reading fiction bo...10026.000000
6952Blink: The Power of Thinking Without Thinking0.102374to-read favorites currently-reading fiction bo...10030.000000
6953The Mirror Crack'd from Side to Side (Miss Mar...0.102359to-read favorites currently-reading fiction bo...10037.000000
6954The Virtue of Selfishness: A New Concept of Eg...0.102328to-read favorites currently-reading fiction bo...10028.000000
6955The Redemption of Callie & Kayden (The Coincid...0.102323to-read favorites young-adult fiction books-i-...10026.000000
6956From Ashes (From Ashes, #1)0.102321to-read favorites currently-reading young-adul...10030.000000
6957While I Was Gone0.102307to-read favorites currently-reading fiction bo...10029.000000
6958The Walking Dead, Vol. 05: The Best Defense0.102268to-read fantasy favorites currently-reading fi...10029.000000
6959Gabriel's Inferno (Gabriel's Inferno, #1)0.102267to-read favorites currently-reading young-adul...10031.000000
6960Cane River0.102265to-read favorites currently-reading fiction bo...10035.000000
6961The Last Mile (Amos Decker, #2)0.102250to-read favorites currently-reading fiction bo...10028.000000
6962The Escape (John Puller, #3)0.102241to-read favorites currently-reading fiction bo...10028.000000
6963Love You More (Tessa Leoni, #1; Detective D.D....0.102226to-read favorites currently-reading fiction bo...10030.000000
6964Stay Close0.102197to-read favorites currently-reading fiction bo...10029.000000
6965La catedral del mar0.102147to-read favorites currently-reading fiction bo...10033.000000
6966Eat, Pray, Love0.102144to-read favorites currently-reading fiction bo...10037.000000
6967Y: The Last Man, Vol. 6: Girl on Girl (Y: The ...0.102116to-read fantasy favorites currently-reading fi...10025.000000
6968Eeny Meeny (Helen Grace, #1)0.102101to-read favorites currently-reading fiction bo...10030.000000
6969Just Me in the Tub (Mercer Mayer's Little Crit...0.102076to-read favorites currently-reading fiction bo...10016.000000
6970The Signal and the Noise: Why So Many Predicti...0.102038to-read favorites currently-reading books-i-ow...10024.000000
6971Ultramarathon Man: Confessions of an All-Night...0.102000to-read favorites currently-reading books-i-ow...10023.000000
6972Tales from a Not-So-Fabulous Life (Dork Diarie...0.101972to-read favorites currently-reading young-adul...10022.000000
6973Saving Fish from Drowning0.101972to-read favorites currently-reading fiction bo...10033.000000
6974Complications: A Surgeon's Notes on an Imperfe...0.101935to-read favorites currently-reading fiction bo...10032.000000
6975Morality for Beautiful Girls (No. 1 Ladies' De...0.101918to-read favorites currently-reading fiction bo...10033.000000
6976The Kissing Hand0.101908to-read fantasy favorites currently-reading fi...10016.000000
6977Fables, Vol. 10: The Good Prince0.101894to-read fantasy favorites currently-reading fi...10027.000000
6978Behind Her Eyes0.101889to-read fantasy favorites currently-reading fi...10026.000000
6979The Day of the Jackal0.101880to-read favorites currently-reading fiction bo...10036.000000
6980No Place to Run (KGI, #2)0.101868to-read favorites currently-reading fiction bo...10031.000000
6981Good as Gone0.101835to-read favorites currently-reading fiction bo...10023.000000
6982The Climb: Tragic Ambitions on Everest0.101831to-read favorites currently-reading books-i-ow...10025.000000
6983Bag of Bones0.101814to-read fantasy favorites currently-reading fi...10036.000000
6984Nothing to Envy: Ordinary Lives in North Korea0.101782to-read favorites currently-reading books-i-ow...10026.000000
6985The Viscount Who Loved Me (Bridgertons, #2)0.101754to-read favorites currently-reading fiction bo...10029.000000
6986About That Night (FBI/US Attorney, #3)0.101738to-read favorites currently-reading fiction bo...10030.000000
6987Honor Among Thieves0.101709to-read favorites currently-reading fiction bo...10027.000000
6988Las batallas en el desierto0.101654to-read favorites currently-reading fiction bo...10027.000000
6989George Washington's Secret Six: The Spy Ring T...0.101653to-read favorites currently-reading books-i-ow...10026.000000
6990Born Free: A Lioness of Two Worlds (Story of E...0.101652to-read favorites currently-reading young-adul...10026.000000
6991The Art of Loving0.101641to-read favorites currently-reading fiction bo...10028.000000
6992The Discoverers: A History of Man's Search to ...0.101634to-read favorites currently-reading fiction bo...10029.000000
6993The One I Left Behind0.101614to-read favorites fiction books-i-own owned ow...10026.000000
6994In the Company of Cheerful Ladies (No. 1 Ladie...0.101613to-read favorites currently-reading fiction bo...10033.000000
6995Futures and Frosting (Chocolate Lovers, #2)0.101589to-read favorites currently-reading fiction bo...10026.000000
6996Savannah Blues (Weezie and Bebe Mysteries, #1)0.101550to-read favorites currently-reading fiction bo...10033.000000
6997Skippyjon Jones0.101537to-read fantasy favorites currently-reading fi...10021.000000
6998Frigid (Frigid, #1)0.101514to-read favorites currently-reading young-adul...10027.000000
6999Dear Daughter0.101478to-read favorites currently-reading young-adul...10023.000000
7000The Sister0.101471to-read favorites currently-reading fiction bo...10021.000000
7001Second Honeymoon (Honeymoon, #2)0.101447to-read favorites currently-reading fiction bo...10029.000000
7002Five Days at Memorial: Life and Death in a Sto...0.101421to-read favorites currently-reading owned owne...10019.000000
7003Second Life0.101409to-read favorites currently-reading fiction bo...10029.000000
7004And to Think That I Saw it on Mulberry Street0.101400to-read fantasy favorites currently-reading fi...10019.000000
7005The Little Red Caboose (Little Golden Book)0.101394to-read fantasy favorites currently-reading fi...10019.000000
7006Delicious!0.101381to-read favorites currently-reading fiction bo...10026.000000
7007Follow You Home0.101377to-read favorites currently-reading fiction bo...10026.000000
7008A Red Herring Without Mustard (Flavia de Luce,...0.101376to-read favorites currently-reading young-adul...10029.000000
7009Ms. Marvel, Vol. 2: Generation Why0.101375to-read fantasy favorites currently-reading yo...10024.000000
7010Hellboy, Vol. 2: Wake the Devil (Hellboy, #2)0.101344to-read fantasy favorites currently-reading fi...10023.000000
7011The Other Typist0.101336to-read favorites currently-reading fiction bo...10030.000000
7012Moonlight Mile (Kenzie & Gennaro,#6)0.101319to-read favorites currently-reading fiction bo...10028.000000
7013Holy Blood, Holy Grail0.101307to-read fantasy favorites currently-reading fi...10025.000000
7014Hellboy, Vol. 3: The Chained Coffin and Others...0.101291to-read fantasy favorites currently-reading fi...10022.000000
7015The Girl Next Door0.101280to-read favorites currently-reading fiction bo...10031.000000
7016Inés of My Soul0.101276to-read favorites currently-reading fiction bo...10034.000000
7017Between the World and Me0.101265to-read favorites currently-reading fiction bo...10021.000000
7018Rabbit at Rest (Rabbit Angstrom #4)0.101216to-read favorites currently-reading fiction bo...10031.000000
7019A Mercy0.101212to-read favorites currently-reading fiction bo...10031.000000
7020The Gift of Fear: Survival Signals That Protec...0.101203to-read favorites currently-reading books-i-ow...10029.000000
7021A Great Deliverance (Inspector Lynley, #1)0.101184to-read favorites currently-reading fiction bo...10028.000000
7022Wall and Piece0.101162to-read favorites currently-reading books-i-ow...10027.000000
7023The Language Instinct: How the Mind Creates La...0.101157to-read favorites currently-reading books-i-ow...10028.000000
7024South of Broad0.101151to-read favorites currently-reading fiction bo...10030.000000
7025Deliverance0.101136to-read favorites currently-reading fiction bo...10035.000000
7026The Cat in the Hat Comes Back0.101118to-read fantasy favorites currently-reading yo...10023.000000
7027The Infernal Devices: Clockwork Angel (The Inf...0.101078to-read fantasy favorites currently-reading yo...10030.000000
7028The Demon-Haunted World: Science as a Candle i...0.101065to-read favorites currently-reading books-i-ow...10022.000000
7029Fractured (Will Trent, #2)0.101061to-read favorites currently-reading fiction bo...10033.000000
7030A Corner of the Universe0.101040to-read favorites currently-reading young-adul...10026.000000
7031The Key to Midnight0.101040to-read favorites currently-reading fiction bo...10032.000000
7032Honor's Splendour0.101033to-read favorites currently-reading fiction bo...10034.000000
7033Only the Innocent (DCI Tom Douglas #1)0.101019to-read favorites currently-reading fiction bo...10025.000000
7034Locke & Key, Vol. 6: Alpha & Omega0.100992to-read fantasy favorites currently-reading yo...10027.000000
7035Chicken Soup for the Teenage Soul: 101 Stories...0.100979to-read favorites currently-reading young-adul...10026.000000
7036The Walking Dead, Vol. 01: Days Gone Bye0.100965to-read fantasy favorites currently-reading fi...10029.000000
7037Love You Forever0.100944to-read favorites currently-reading young-adul...10025.000000
7038The Wimpy Kid Movie Diary (Diary of a Wimpy Kid)0.100944to-read favorites currently-reading young-adul...10026.000000
7039The Passion of Artemisia0.100930to-read favorites currently-reading fiction bo...10031.000000
7040The Perfect Play (Play by Play, #1)0.100923to-read favorites currently-reading fiction bo...10034.000000
7041Knots and Crosses (Inspector Rebus, #1)0.100915to-read favorites currently-reading fiction bo...10029.000000
7042The Right Stuff0.100900to-read favorites currently-reading fiction bo...10029.000000
7043عقاید یک دلقک0.100893to-read favorites currently-reading fiction bo...10031.000000
7044Stellaluna0.100888to-read fantasy favorites currently-reading fi...10020.000000
7045The Complete Adventures of Curious George0.100879to-read fantasy favorites currently-reading yo...10021.000000
7046This Changes Everything: Capitalism vs. The Cl...0.100858to-read favorites currently-reading books-i-ow...10029.000000
7047Paper Girls, Vol. 1 (Paper Girls, #1)0.100851to-read fantasy favorites currently-reading yo...10024.000000
7048The Bone Bed (Kay Scarpetta, #20)0.100817to-read favorites currently-reading fiction bo...10030.000000
7049Wild: From Lost to Found on the Pacific Crest ...0.100812to-read favorites currently-reading fiction bo...10029.000000
7050The Story of an Hour0.100806to-read currently-reading fiction books-i-own ...10024.000000
7051Curious George Rides a Bike0.100795to-read fantasy favorites currently-reading fi...10022.000000
7052Moonwalking with Einstein: The Art and Science...0.100762to-read favorites currently-reading books-i-ow...10027.000000
7053Tawny Scrawny Lion0.100718to-read fantasy favorites currently-reading fi...10021.000000
7054Fear Nothing (Detective D.D. Warren, #7)0.100676to-read favorites currently-reading fiction bo...10028.000000
7055Is Everyone Hanging Out Without Me? (And Other...0.100672to-read favorites currently-reading fiction bo...10026.000000
7056The Scrapbook of Frankie Pratt0.100633to-read favorites currently-reading young-adul...10023.000000
7057Y: The Last Man, Vol. 3: One Small Step (Y: Th...0.100615to-read fantasy favorites currently-reading fi...10026.000000
7058A House for Mr Biswas0.100599to-read favorites currently-reading fiction bo...10028.000000
7059God Help the Child0.100593to-read favorites currently-reading fiction bo...10023.000000
7060In the Clearing (Tracy Crosswhite, #3)0.100577to-read favorites currently-reading fiction bo...10020.000000
7061A Coney Island of the Mind0.100577to-read favorites currently-reading fiction bo...10024.000000
7062Kaleidoscope Hearts (Hearts, #1)0.100575to-read favorites currently-reading young-adul...10027.000000
7063The Interpretation of Murder (Freud, #1)0.100537to-read favorites currently-reading fiction bo...10029.000000
7064The Last Nude0.100528to-read favorites currently-reading fiction bo...10023.000000
7065Curious George0.100485to-read fantasy favorites currently-reading yo...10019.000000
7066Wild Man (Dream Man, #2)0.100455to-read favorites currently-reading fiction bo...10029.000000
7067All the President's Men0.100422to-read favorites currently-reading fiction bo...10030.000000
7068Just Mercy: A Story of Justice and Redemption0.100385to-read favorites currently-reading fiction bo...10023.000000
7069Eating Animals0.100378to-read favorites currently-reading fiction bo...10029.000000
7070The Dhammapada0.100377to-read favorites currently-reading fiction bo...10024.000000
7071The Wild Ones (The Wild Ones, #1)0.100374to-read favorites currently-reading young-adul...10030.000000
7072I Was So Mad0.100362to-read fantasy favorites currently-reading fi...10017.000000
7073Rock Chick Redemption (Rock Chick, #3)0.100345to-read favorites currently-reading fiction bo...10026.000000
7074Wench0.100323to-read favorites currently-reading fiction bo...10028.000000
7075Fueled (Driven, #2)0.100319to-read favorites currently-reading fiction bo...10029.000000
7076Chicken Soup with Rice: A Book of Months (The ...0.100304to-read fantasy favorites currently-reading fi...10019.000000
7077Blue Highways0.100291to-read favorites currently-reading fiction bo...10031.000000
7078The Eagle Has Landed (Liam Devlin, #1)0.100261to-read favorites currently-reading fiction bo...10033.000000
7079Leonardo's Notebooks0.100245to-read favorites currently-reading fiction bo...10024.000000
7080Sh*t My Dad Says0.100236to-read favorites currently-reading fiction bo...10030.000000
7081The Garden of Evening Mists0.100233to-read favorites currently-reading fiction bo...10031.000000
7082Guess How Much I Love You0.100186to-read fantasy favorites currently-reading fi...10023.000000
7083Nikola Tesla: Imagination and the Man That Inv...0.100184to-read favorites currently-reading books-i-ow...10018.000000
7084The Girl With No Past0.100175to-read favorites currently-reading young-adul...10024.000000
7085Dream Team: How Michael, Magic, Larry, Charles...0.100158to-read favorites currently-reading books-i-ow...10015.000000
7086The Cold Dish (Walt Longmire, #1)0.100157to-read favorites currently-reading fiction bo...10028.000000
7087Essentialism: The Disciplined Pursuit of Less0.100156to-read favorites currently-reading books-i-ow...10020.000000
7088The Walking Dead, Vol. 04: The Heart's Desire0.100150to-read fantasy favorites currently-reading fi...10028.000000
7089The Foot Book: Dr. Seuss's Wacky Book of Oppos...0.100137to-read fantasy favorites currently-reading bo...10020.000000
7090ماهی سیاه کوچولو0.100132to-read favorites currently-reading young-adul...10018.000000
7091Supernova: Petir0.100122to-read fantasy favorites currently-reading yo...10021.000000
7092The Full Cupboard of Life (No. 1 Ladies' Detec...0.100072to-read favorites currently-reading fiction bo...10033.000000
7093Slouching Towards Bethlehem0.100067to-read favorites currently-reading fiction bo...10028.000000
7094Jet (Marked Men, #2)0.100049to-read favorites currently-reading young-adul...10029.000000
7095American Born Chinese0.100036to-read fantasy favorites currently-reading yo...10015.000000
7096Pictures of Hollis Woods0.100025to-read favorites currently-reading young-adul...10023.000000
7097Flyboys: A True Story of Courage0.100022to-read favorites currently-reading books-i-ow...10025.000000
7098The Reason I Jump: The Inner Voice of a Thirte...0.100018to-read favorites currently-reading young-adul...10027.000000
7099As a Man Thinketh0.099968to-read favorites currently-reading fiction bo...10029.000000
7100Lady and the Tramp0.099929to-read fantasy favorites currently-reading fi...10019.000000
7101Loving Mr. Daniels0.099911to-read favorites currently-reading young-adul...10023.000000
7102Into the Deep (Into the Deep, #1)0.099909to-read favorites currently-reading young-adul...10030.000000
7103Mao's Last Dancer0.099908to-read favorites currently-reading young-adul...10030.000000
7104King and Maxwell (Sean King & Michelle Maxwell...0.099896to-read favorites currently-reading fiction bo...10031.000000
7105The Cat in the Hat and Other Dr. Seuss Favorites0.099883to-read fantasy favorites currently-reading yo...10022.000000
7106Cabin Fever (Diary of a Wimpy Kid, #6)0.099879to-read favorites currently-reading young-adul...10030.000000
7107The Kalahari Typing School for Men (No. 1 Ladi...0.099878to-read favorites currently-reading fiction bo...10034.000000
7108The Snow Leopard0.099872to-read favorites currently-reading fiction bo...10025.000000
7109Chew, Vol. 2: International Flavor0.099857to-read fantasy favorites currently-reading fi...10025.000000
7110Longitude: The True Story of a Lone Genius Who...0.099846to-read favorites currently-reading fiction bo...10022.000000
7111The Constitution of the United States of America0.099844to-read favorites currently-reading books-i-ow...10026.000000
7112Fables, Vol. 8: Wolves0.099818to-read fantasy favorites currently-reading fi...10024.000000
7113One Week Girlfriend (One Week Girlfriend, #1)0.099775to-read favorites currently-reading young-adul...10028.000000
7114Paper Princess (The Royals, #1)0.099771to-read favorites currently-reading young-adul...10025.000000
7115Esperanza Rising0.099758to-read favorites currently-reading young-adul...10021.000000
7116Never Look Away0.099744to-read favorites currently-reading fiction bo...10028.000000
7117Clifford the Big Red Dog0.099741to-read fantasy favorites currently-reading fi...10017.000000
7118The Liar0.099740to-read favorites currently-reading fiction bo...10029.000000
7119Carry On, Warrior: Thoughts on Life Unarmed0.099733to-read favorites currently-reading books-i-ow...10022.000000
7120Just Go to Bed0.099731to-read fantasy favorites currently-reading fi...10020.000000
7121Samarkand0.099699to-read favorites currently-reading fiction bo...10030.000000
7122Women Who Run With the Wolves: Myths and Stori...0.099697to-read fantasy favorites currently-reading fi...10028.000000
7123Olive Kitteridge0.099678to-read favorites currently-reading fiction bo...10034.000000
7124Fallen Crest Public (Fallen Crest High, #3)0.099665to-read favorites currently-reading young-adul...10027.000000
7125One Fish, Two Fish, Red Fish, Blue Fish0.099663to-read fantasy favorites currently-reading yo...10022.000000
7126Gabriel's Redemption (Gabriel's Inferno, #3)0.099658to-read favorites currently-reading fiction bo...10030.000000
7127When He was Wicked (Bridgertons, #6)0.099630to-read favorites currently-reading fiction bo...10028.000000
7128Bumi Manusia0.099618to-read favorites currently-reading fiction bo...10020.000000
7129The Walking Dead, Vol. 14: No Way Out0.099618to-read fantasy favorites currently-reading fi...10028.000000
7130Calculated in Death (In Death, #36)0.099617to-read fantasy favorites currently-reading fi...10031.000000
7131Don't You Cry0.099594to-read favorites currently-reading fiction bo...10024.000000
7132Gabriel's Rapture (Gabriel's Inferno, #2)0.099537to-read favorites currently-reading fiction bo...10033.000000
7133Sweet Persuasion (Sweet, #2)0.099522to-read fantasy favorites currently-reading fi...10030.000000
7134Rock Chick Revenge (Rock Chick, #5)0.099519to-read favorites currently-reading fiction bo...10030.000000
7135The Eyes of Darkness0.099445to-read fantasy favorites currently-reading fi...10034.000000
7136Disney's the Lion King0.099433to-read fantasy favorites currently-reading fi...10019.000000
7137Find Her (Detective D.D. Warren, #8)0.099432to-read favorites currently-reading fiction bo...10028.000000
7138A Pocket Full of Rye (Miss Marple, #7)0.099419to-read favorites currently-reading fiction bo...10036.000000
7139The Fallen Angel (Gabriel Allon, #12)0.099410to-read favorites currently-reading fiction bo...10030.000000
7140A Supposedly Fun Thing I'll Never Do Again: E...0.099400to-read favorites currently-reading books-i-ow...10032.000000
7141Alexander Hamilton0.099378to-read favorites currently-reading books-i-ow...10028.000000
7142Rat Queens, Vol. 1: Sass & Sorcery0.099362to-read fantasy favorites currently-reading yo...10028.000000
7143Dirty English (English, #1)0.099351to-read favorites currently-reading young-adul...10025.000000
7144Sea of Poppies (Ibis Trilogy, #1)0.099346to-read favorites currently-reading fiction bo...10036.000000
7145Such a Pretty Fat: One Narcissist's Quest to D...0.099328to-read favorites currently-reading fiction bo...10030.000000
7146No Man's Land (John Puller, #4)0.099324to-read favorites currently-reading fiction bo...10025.000000
7147The Story About Ping0.099314to-read fantasy favorites currently-reading yo...10020.000000
7148The Oedipus Cycle: Oedipus Rex/Oedipus at Colo...0.099302to-read fantasy favorites currently-reading fi...10032.000000
7149Tough Customer (Mitchell & Associates #2)0.099295to-read favorites currently-reading fiction bo...10027.000000
7150Desert Solitaire0.099235to-read favorites currently-reading fiction bo...10032.000000
7151Pat the Bunny0.099194to-read fantasy favorites currently-reading fi...10017.000000
7152The Sign of the Beaver0.099174to-read favorites currently-reading young-adul...10025.000000
7153All My Friends Are Dead0.099164to-read favorites currently-reading young-adul...10029.000000
7154Faithless (Grant County, #5)0.099147to-read favorites currently-reading fiction bo...10033.000000
7155American Tabloid (Underworld USA, #1)0.099134to-read favorites currently-reading fiction bo...10026.000000
7156One Thousand Gifts: A Dare to Live Fully Right...0.099119to-read favorites currently-reading fiction bo...10033.000000
7157Depraved Heart (Kay Scarpetta, #23)0.099110to-read favorites currently-reading fiction bo...10029.000000
7158Release Me (Stark Trilogy, #1)0.099092to-read favorites currently-reading fiction bo...10034.000000
7159Skinny Dip0.099069to-read favorites currently-reading fiction bo...10032.000000
7160Bedtime for Frances0.099062to-read fantasy favorites currently-reading yo...10018.000000
7161Killing Floor (Jack Reacher, #1)0.099056to-read favorites currently-reading fiction bo...10034.000000
7162Echo Burning (Jack Reacher, #5)0.099019to-read favorites currently-reading fiction bo...10033.000000
7163The Weed That Strings the Hangman's Bag (Flavi...0.099008to-read favorites currently-reading young-adul...10030.000000
7164Ramona Quimby, Age 8 (Ramona, #6)0.099005to-read favorites currently-reading fiction bo...10022.000000
7165Pedro Páramo0.098998to-read fantasy favorites currently-reading fi...10029.000000
7166حوجن [Ḥawjan]0.098992to-read fantasy favorites currently-reading yo...10028.000000
7167Dinosaurs Before Dark (Magic Tree House, #1)0.098955to-read fantasy favorites currently-reading yo...10026.000000
7168Ghettoside: A True Story of Murder in America0.098948to-read currently-reading books-i-own owned ow...10020.000000
7169Being and Time0.098939to-read favorites currently-reading books-i-ow...10027.000000
7170The Kill Artist (Gabriel Allon, #1)0.098938to-read favorites currently-reading fiction bo...10028.000000
7171Sweet Addiction (Sweet Addiction, #1)0.098937to-read favorites currently-reading fiction bo...10028.000000
7172The Flanders Panel0.098936to-read favorites fiction books-i-own owned fa...10027.000000
7173The Lady in the Lake (Philip Marlowe, #4)0.098921to-read favorites fiction books-i-own owned se...10035.000000
7174The Sisters Brothers0.098918to-read favorites currently-reading fiction bo...10029.000000
7175The Target (Will Robie, #3)0.098892to-read favorites currently-reading fiction bo...10031.000000
7176Henry Huggins (Henry Huggins, #1)0.098891to-read favorites currently-reading young-adul...10023.000000
7177The Three Billy Goats Gruff0.098882to-read fantasy favorites currently-reading fi...10012.000000
7178Ghost in the Wires: My Adventures as the World...0.098846to-read favorites currently-reading fiction bo...10027.000000
7179Ruin (Ruin, #1)0.098842to-read favorites currently-reading young-adul...10025.000000
7180The Poky Little Puppy (A Little Golden Book)0.098841to-read fantasy favorites currently-reading fi...10021.000000
7181Tartuffe0.098837to-read favorites currently-reading fiction bo...10024.000000
7182The Orphan Master's Son0.098830to-read favorites currently-reading fiction bo...10031.000000
7183Avatar: The Last Airbender (The Rift, #1)0.098825to-read fantasy favorites currently-reading yo...10025.000000
7184Heat0.098805to-read favorites currently-reading young-adul...10019.000000
7185Turn Right at Machu Picchu: Rediscovering the ...0.098788to-read favorites currently-reading books-i-ow...10025.000000
7186Frog and Toad Together (Frog and Toad, #2)0.098782to-read fantasy favorites currently-reading yo...10021.000000
7187The Survivor (Mitch Rapp, #14)0.098781to-read favorites currently-reading fiction bo...10025.000000
7188Lick (Stage Dive, #1)0.098767to-read favorites currently-reading young-adul...10028.000000
7189My Name is Red0.098766to-read favorites currently-reading fiction bo...10033.000000
7190The Odessa File0.098757to-read favorites currently-reading fiction bo...10035.000000
7191The Kept Woman (Will Trent, #8)0.098733to-read favorites currently-reading fiction bo...10021.000000
7192Judgment in Death (In Death, #11)0.098721to-read fantasy favorites currently-reading fi...10031.000000
7193Orange Is the New Black0.098711to-read favorites currently-reading fiction bo...10029.000000
7194The Story of Ferdinand0.098708to-read fantasy favorites fiction books-i-own ...10024.000000
7195The Communist Manifesto0.098705to-read favorites currently-reading fiction bo...10029.000000
7196The Jefferson Key (Cotton Malone, #7)0.098680to-read favorites currently-reading fiction bo...10029.000000
7197Beautiful Broken Rules (Broken, #1)0.098679to-read favorites currently-reading young-adul...10029.000000
7198The Walking Dead, Vol. 02: Miles Behind Us0.098650to-read fantasy favorites currently-reading fi...10029.000000
7199Elizabeth the Queen: The Life of a Modern Monarch0.098630to-read favorites currently-reading books-i-ow...10026.000000
7200Six Years0.098620to-read favorites currently-reading fiction bo...10029.000000
7201Make Me (Jack Reacher, #20)0.098590to-read favorites currently-reading fiction bo...10030.000000
7202True Evil0.098583to-read favorites currently-reading fiction bo...10033.000000
7203Thoughtless (Thoughtless, #1)0.098575to-read favorites currently-reading young-adul...10029.000000
7204Empress Orchid (Empress Orchid, #1)0.098566to-read favorites currently-reading fiction bo...10033.000000
7205Winnie the Pooh and Tigger Too (Disney's Wonde...0.098556to-read fantasy favorites currently-reading fi...10015.000000
7206Real Murders (Aurora Teagarden, #1)0.098527to-read fantasy favorites currently-reading fi...10028.000000
7207Bully (Fall Away, #1)0.098483to-read favorites currently-reading young-adul...10026.000000
7208When the Game Was Ours0.098424to-read favorites currently-reading books-i-ow...10019.000000
7209Disastrous (Disastrous, #1)0.098388to-read favorites young-adult books-i-own owne...10022.000000
7210The Black Lyon (Montgomery/Taggert, #1)0.098357to-read fantasy favorites currently-reading fi...10029.000000
7211Extreme Prey (Lucas Davenport, #26)0.098327to-read favorites currently-reading fiction bo...10021.000000
7212The Last Seven Months of Anne Frank0.098316to-read favorites currently-reading young-adul...10023.000000
7213The Cruelest Month (Chief Inspector Armand Gam...0.098310to-read favorites currently-reading fiction bo...10027.000000
7214Rock Chick (Rock Chick, #1)0.098277to-read favorites currently-reading fiction bo...10029.000000
7215Night School0.098220to-read favorites currently-reading fiction bo...10026.000000
7216The Marriage Bargain (Marriage to a Billionair...0.098215to-read favorites currently-reading fiction bo...10033.000000
7217Ice Station Zebra0.098198to-read favorites currently-reading fiction bo...10028.000000
7218The Three Little Pigs (Disney Classic)0.098192to-read fantasy favorites currently-reading fi...10013.000000
7219The Devil's Alternative0.098173to-read favorites currently-reading fiction bo...10030.000000
7220The Saggy Baggy Elephant (A Little Golden Book)0.098170to-read fantasy favorites currently-reading fi...10021.000000
7221A Fatal Grace (Chief Inspector Armand Gamache,...0.098167to-read favorites currently-reading fiction bo...10025.000000
722210% Happier: How I Tamed the Voice in My Head,...0.098150to-read favorites currently-reading books-i-ow...10022.000000
7223The Unexpected Mrs. Pollifax (Mrs. Pollifax #1)0.098127to-read favorites currently-reading fiction ow...10031.000000
7224Goodnight Nobody0.098098to-read favorites currently-reading fiction bo...10028.000000
7225The Diving Bell and the Butterfly0.098087to-read favorites currently-reading fiction bo...10029.000000
7226Beneath a Marble Sky0.098072to-read favorites currently-reading books-i-ow...10025.000000
7227Eats, Shoots & Leaves: The Zero Tolerance Appr...0.098060to-read favorites currently-reading fiction bo...10027.000000
7228Blood Defense (Samantha Brinkman, #1)0.098059to-read favorites currently-reading fiction bo...10026.000000
7229No Second Chance0.098059to-read favorites currently-reading fiction bo...10033.000000
7230Jewels of the Sun (Gallaghers of Ardmore, #1)0.098040to-read fantasy favorites currently-reading fi...10037.000000
7231Portrait in Sepia0.098039to-read favorites currently-reading fiction bo...10033.000000
7232A Land More Kind Than Home0.098024to-read favorites currently-reading fiction bo...10026.000000
7233The Walking Dead, Vol. 10: What We Become0.097996to-read fantasy favorites currently-reading fi...10027.000000
7234Black-Eyed Susans0.097986to-read favorites currently-reading fiction bo...10024.000000
7235Bed of Roses (Bride Quartet, #2)0.097975to-read favorites currently-reading fiction bo...10036.000000
7236Gathering Prey (Lucas Davenport, #25)0.097973to-read favorites currently-reading fiction bo...10026.000000
7237Twenty-Eight and a Half Wishes (Rose Gardner M...0.097969to-read fantasy favorites currently-reading yo...10029.000000
7238The Wall0.097922to-read favorites currently-reading fiction bo...10024.000000
7239Worth the Fight (MMA Fighter, #1)0.097920to-read favorites currently-reading fiction bo...10024.000000
7240The Second Assistant: A Tale from the Bottom o...0.097906to-read favorites currently-reading fiction bo...10022.000000
7241Pillar of Light (The Work and the Glory, #1)0.097895to-read favorites currently-reading young-adul...10030.000000
7242Fear and Loathing on the Campaign Trail '720.097879to-read favorites currently-reading fiction bo...10029.000000
7243The Gods of Guilt (Mickey Haller, #6; Harry Bo...0.097866to-read favorites currently-reading fiction bo...10028.000000
7244The Debutante Divorcee0.097856to-read favorites currently-reading young-adul...10025.000000
7245Way of the Peaceful Warrior: A Book That Chang...0.097846to-read fantasy favorites currently-reading fi...10034.000000
7246Paddle Your Own Canoe: One Man's Fundamentals ...0.097753to-read favorites currently-reading fiction bo...10030.000000
7247The Bourne Objective (Jason Bourne, #8)0.097736to-read favorites currently-reading fiction bo...10029.000000
7248Stone Soup0.097710to-read fantasy favorites currently-reading fi...3006.333333
7249Stone Soup0.078718to-read fantasy favorites currently-reading fi...3006.333333
7250Stone Soup0.077026to-read favorites currently-reading fiction bo...3006.333333
7251Novecento. Un monologo0.097658to-read favorites fiction books-i-own owned fa...10027.000000
7252Horton Hatches the Egg0.097646to-read fantasy favorites currently-reading fi...10023.000000
7253Our Dumb Century: The Onion Presents 100 Years...0.097643to-read favorites currently-reading fiction bo...10018.000000
7254Angels in America, Part Two: Perestroika0.097628to-read fantasy favorites currently-reading fi...10028.000000
7255Year of Yes: How to Dance It Out, Stand In the...0.097624to-read favorites currently-reading books-i-ow...10021.000000
7256The Pragmatic Programmer: From Journeyman to M...0.097614to-read favorites currently-reading books-i-ow...10020.000000
7257It Had to Be You (Chicago Stars, #1)0.097583to-read favorites currently-reading fiction bo...10028.000000
7258I'm a Stranger Here Myself: Notes on Returning...0.097564to-read favorites currently-reading fiction bo...10026.000000
7259Burn (Breathless, #3)0.097561to-read favorites currently-reading books-i-ow...10031.000000
7260The Complete Short Novels0.097555to-read favorites currently-reading fiction bo...10028.000000
7261Something About You (FBI/US Attorney, #1)0.097543to-read favorites currently-reading fiction bo...10027.000000
7262Just My Type: A Book About Fonts0.097529to-read favorites currently-reading books-i-ow...10027.000000
7263Tears of the Moon (Gallaghers of Ardmore / Iri...0.097524to-read fantasy favorites currently-reading fi...10037.000000
7264Just for You (Little Critter)0.097509to-read favorites currently-reading fiction bo...10020.000000
7265The Gambler0.097492to-read favorites currently-reading fiction ow...10028.000000
7266A Kingdom of Dreams (Westmoreland, #1)0.097491to-read fantasy favorites currently-reading fi...10028.000000
7267Lilly's Purple Plastic Purse0.097480to-read fantasy favorites currently-reading fi...10013.000000
7268Neither Here nor There: Travels in Europe0.097459to-read favorites currently-reading fiction bo...10035.000000
7269Gentle Rogue (Malory-Anderson Family, #3)0.097411to-read favorites currently-reading fiction bo...10034.000000
7270Just the Sexiest Man Alive0.097404to-read favorites currently-reading fiction bo...10029.000000
7271Where's Spot?0.097391to-read favorites currently-reading fiction bo...10019.000000
7272The Berenstain Bears and Too Much TV0.097387to-read fantasy favorites currently-reading yo...10016.000000
7273Broken Prince (The Royals, #2)0.097350to-read favorites currently-reading young-adul...10025.000000
7274Take This Regret (Take This Regret, #1)0.097327to-read favorites currently-reading young-adul...10030.000000
7275The Great Railway Bazaar0.097302to-read favorites currently-reading fiction bo...10027.000000
7276The Good Guy0.097291to-read fantasy favorites currently-reading fi...10035.000000
7277Elon Musk: Inventing the Future0.097289to-read favorites currently-reading books-i-ow...10025.000000
7278Anne Frank: Beyond the Diary - A Photographic ...0.097285to-read favorites currently-reading young-adul...10019.000000
7279The Empathy Exams: Essays0.097240to-read favorites currently-reading fiction bo...10022.000000
7280Someone to Love (Someone to Love, #1)0.097231to-read favorites currently-reading young-adul...10028.000000
7281Gorky Park (Arkady Renko, #1)0.097227to-read favorites currently-reading fiction bo...10035.000000
7282Morning, Noon & Night0.097217to-read favorites currently-reading young-adul...10027.000000
7283The Little Mouse, the Red Ripe Strawberry, and...0.097168to-read fantasy favorites currently-reading fi...10018.000000
7284The Adventures of Captain Underpants (Captain ...0.097160to-read fantasy favorites currently-reading yo...10020.000000
7285Worth Dying For (Jack Reacher, #15)0.097157to-read favorites currently-reading fiction bo...10030.000000
7286Undone (Will Trent, #3)0.097149to-read favorites currently-reading fiction bo...10031.000000
7287Practice Makes Perfect (Berkley Sensation)0.097141to-read favorites currently-reading fiction bo...10029.000000
7288Heaven, Texas (Chicago Stars, #2)0.097128to-read favorites currently-reading fiction bo...10028.000000
7289The Other Daughter0.097109to-read favorites currently-reading fiction bo...10030.000000
7290Until You (Fall Away, #1.5)0.097091to-read favorites currently-reading young-adul...10026.000000
7291Blockade Billy0.097039to-read fantasy favorites currently-reading fi...10034.000000
7292The Runaway Bunny0.097012to-read fantasy favorites currently-reading fi...10020.000000
7293Rush (Breathless, #1)0.096985to-read favorites currently-reading fiction bo...10033.000000
7294August: Osage County0.096977to-read favorites currently-reading fiction bo...10029.000000
7295The Last Full Measure (The Civil War Trilogy, #3)0.096971to-read favorites currently-reading fiction bo...10025.000000
7296My Name is Mary Sutter0.096938to-read favorites currently-reading fiction bo...10027.000000
7297The Art of Travel0.096923to-read favorites currently-reading fiction bo...10028.000000
7298Rock Chick Renegade (Rock Chick, #4)0.096922to-read favorites currently-reading fiction bo...10027.000000
7299Fox in Socks0.096920to-read fantasy favorites currently-reading yo...10023.000000
7300There Was An Old Lady Who Swallowed A Fly (Cla...0.096904to-read fantasy favorites currently-reading fi...10016.000000
7301Savor the Moment (Bride Quartet, #3)0.096867to-read favorites currently-reading fiction bo...10036.000000
7302The Hundred Dresses0.096866to-read favorites currently-reading young-adul...10021.000000
7303Come Away with Me (With Me in Seattle, #1)0.096864to-read favorites currently-reading fiction bo...10027.000000
7304Mr. Murder0.096860to-read fantasy favorites currently-reading fi...10032.000000
7305PostSecret: Extraordinary Confessions from Ord...0.096843to-read favorites currently-reading young-adul...10022.000000
7306The Caine Mutiny0.096821to-read favorites currently-reading fiction bo...10037.000000
7307Red Notice: A True Story of High Finance, Murd...0.096804to-read favorites currently-reading fiction bo...10025.000000
7308It's in His Kiss (Bridgertons, #7)0.096803to-read favorites currently-reading fiction bo...10030.000000
7309The Green Mile, Part 5: Night Journey0.096745to-read fantasy favorites currently-reading fi...10034.000000
7310Behind Closed Doors0.096726to-read favorites currently-reading fiction bo...10025.000000
7311Sometimes Never (Sometimes Never, #1)0.096726to-read favorites currently-reading young-adul...10023.000000
7312Long Time Coming0.096680to-read fantasy favorites currently-reading fi...10024.000000
7313Batman: The Dark Knight Returns (The Dark Knig...0.096679to-read fantasy favorites currently-reading yo...10036.000000
7314The Charlemagne Pursuit (Cotton Malone, #4)0.096635to-read favorites currently-reading fiction bo...10030.000000
7315The Cherry Orchard0.096614to-read favorites currently-reading fiction bo...10030.000000
7316The Holy Bible: English Standard Version0.096603to-read favorites currently-reading fiction bo...10033.000000
7317Angels in America, Part One: Millennium Approa...0.096566to-read fantasy favorites currently-reading fi...10029.000000
7318Half Broke Horses0.096547to-read favorites currently-reading fiction bo...10032.000000
7319Arsenic and Old Lace0.096520to-read favorites currently-reading fiction bo...10022.000000
7320The Dirty Girls Social Club (Dirty Girls, #1)0.096512to-read favorites currently-reading fiction bo...10025.000000
7321Calvin and Hobbes0.096506to-read fantasy favorites currently-reading yo...10034.000000
7322Scoring Wilder0.096486to-read favorites currently-reading young-adul...10024.000000
7323I'll Walk Alone0.096482to-read favorites currently-reading fiction bo...10031.000000
7324I Remember Nothing: and Other Reflections0.096448to-read favorites currently-reading fiction bo...10024.000000
7325Curious George Takes a Job0.096420to-read favorites currently-reading young-adul...10019.000000
7326Y: The Last Man, Vol. 8: Kimono Dragons (Y: Th...0.096413to-read fantasy favorites currently-reading fi...10022.000000
7327Agnes and the Hitman0.096363to-read favorites currently-reading fiction bo...10032.000000
7328If You Stay (Beautifully Broken, #1)0.096355to-read favorites currently-reading young-adul...10029.000000
7329The Authoritative Calvin and Hobbes: A Calvin ...0.096333to-read fantasy favorites currently-reading yo...10031.000000
7330The Alienist (Dr. Laszlo Kreizler, #1)0.096318to-read favorites currently-reading fiction bo...10038.000000
7331Something Wonderful (Sequels, #2)0.096309to-read favorites currently-reading fiction bo...10030.000000
7332Black Boy0.096259to-read favorites currently-reading young-adul...10030.000000
7333Brain on Fire: My Month of Madness0.096257to-read favorites currently-reading fiction bo...10026.000000
7334Seconds0.096216to-read fantasy favorites currently-reading yo...10027.000000
7335The Last Child0.096208to-read favorites currently-reading fiction bo...10031.000000
7336Superman for All Seasons0.096185to-read fantasy favorites currently-reading yo...10025.000000
7337Supernova: Akar0.096180to-read fantasy favorites currently-reading yo...10022.000000
7338Hop On Pop0.096158to-read fantasy favorites currently-reading fi...10020.000000
7339The Great Gilly Hopkins0.096037to-read favorites currently-reading young-adul...10022.000000
7340Checkmate (Neighbor from Hell, #3)0.096005to-read favorites currently-reading fiction bo...10027.000000
7341Nash (Marked Men, #4)0.095982favorites currently-reading young-adult fictio...10027.000000
7342High Heat (Jack Reacher #17.5)0.095980to-read favorites currently-reading fiction bo...10027.000000
7343Last Orders0.095975to-read favorites currently-reading fiction bo...10033.000000
7344Tikki Tikki Tembo0.095975to-read fantasy favorites currently-reading fi...10015.000000
7345Sweet Home (Sweet Home, #1)0.095971to-read favorites currently-reading young-adul...10027.000000
7346Caddie Woodlawn (Caddie Woodlawn #1)0.095968to-read favorites currently-reading young-adul...10027.000000
7347Forever You (Forever, #2)0.095967to-read favorites currently-reading fiction bo...10026.000000
7348Faithful Place (Dublin Murder Squad, #3)0.095960to-read favorites currently-reading fiction bo...10030.000000
7349No Easy Day: The Firsthand Account of the Miss...0.095958to-read favorites currently-reading fiction bo...10027.000000
7350Fade Away (Myron Bolitar #3)0.095937to-read favorites currently-reading fiction bo...10031.000000
7351The Miracle at Speedy Motors (No.1 Ladies' Det...0.095932to-read favorites currently-reading fiction bo...10032.000000
7352Darkfall0.095905to-read fantasy favorites currently-reading fi...10033.000000
7353Fables, Vol. 1: Legends in Exile0.095883to-read fantasy favorites currently-reading yo...10028.000000
7354Inside Out & Back Again0.095879to-read favorites currently-reading young-adul...10020.000000
7355Then Came You (The Gamblers, #1)0.095869to-read favorites currently-reading fiction bo...10031.000000
7356The Goal (Off-Campus, #4)0.095819to-read favorites currently-reading young-adul...10021.000000
7357Notorious RBG: The Life and Times of Ruth Bade...0.095817to-read favorites currently-reading young-adul...10021.000000
7358Down the Rabbit Hole: Curious Adventures and C...0.095798to-read favorites currently-reading books-i-ow...10024.000000
7359Chronicle of a Death Foretold0.095783to-read favorites currently-reading fiction bo...10031.000000
7360I Suck at Girls0.095768to-read favorites currently-reading fiction bo...10025.000000
7361Grit: Passion, Perseverance, and the Science o...0.095748to-read favorites currently-reading books-i-ow...10019.000000
7362The Sportswriter0.095740to-read favorites currently-reading fiction bo...10030.000000
7363Trouble Is My Business0.095735to-read favorites currently-reading fiction bo...10031.000000
7364The Boy in the Suitcase (Nina Borg, #1)0.095704to-read favorites currently-reading fiction bo...10025.000000
7365Elizabeth Street0.095697to-read favorites currently-reading fiction bo...10024.000000
7366The True Story of the 3 Little Pigs0.095693to-read fantasy favorites currently-reading yo...10016.000000
7367The Princess and the Pea0.095692to-read fantasy favorites currently-reading fi...10013.000000
7368Why We Suck: A Feel Good Guide to Staying Fat,...0.095646to-read favorites currently-reading fiction bo...10028.000000
7369The Immortal Life of Henrietta Lacks0.095627to-read favorites currently-reading fiction bo...10027.000000
7370Songs in Ordinary Time0.095620to-read favorites currently-reading fiction bo...10028.000000
7371The Last Man (Mitch Rapp, #13)0.095611to-read favorites currently-reading fiction bo...10032.000000
7372Hyperbole and a Half: Unfortunate Situations, ...0.095603to-read favorites currently-reading fiction bo...10027.000000
7373Criminal (Will Trent, #6)0.095561to-read favorites currently-reading fiction bo...10030.000000
7374The Angel of Darkness (Dr. Laszlo Kreizler, #2)0.095552to-read fantasy favorites currently-reading fi...10031.000000
7375The Walking Dead, Vol. 06: This Sorrowful Life0.095520to-read fantasy favorites currently-reading fi...10028.000000
7376Underground: The Tokyo Gas Attack and the Japa...0.095509to-read favorites currently-reading fiction bo...10030.000000
7377Blue Shoes and Happiness (No. 1 Ladies' Detect...0.095503to-read favorites currently-reading fiction bo...10034.000000
7378There's a Nightmare in My Closet0.095494to-read fantasy favorites currently-reading fi...10016.000000
7379The Total Money Makeover: A Proven Plan for Fi...0.095490to-read favorites currently-reading books-i-ow...10029.000000
7380The Hero With a Thousand Faces0.095486to-read fantasy favorites currently-reading fi...10030.000000
7381Waiting0.095471to-read favorites currently-reading fiction bo...10032.000000
7382Deadline (Virgil Flowers, #8)0.095454to-read favorites currently-reading fiction bo...10026.000000
7383Rejoice (Redemption, #4)0.095448to-read favorites currently-reading fiction bo...10025.000000
7384Eve (Eve Duncan, #12; Eve, Quinn and Bonnie #1)0.095431to-read favorites currently-reading young-adul...10030.000000
7385Scrappy Little Nobody0.095418to-read favorites currently-reading books-i-ow...10025.000000
7386The Butterfly Garden (The Collector #1)0.095416to-read favorites currently-reading young-adul...10025.000000
7387The Affair (Jack Reacher, #16)0.095387to-read favorites currently-reading fiction bo...10032.000000
7388The Brutal Telling (Chief Inspector Armand Gam...0.095382to-read favorites currently-reading fiction bo...10028.000000
7389Smoke Gets in Your Eyes: And Other Lessons fro...0.095378to-read favorites currently-reading fiction bo...10023.000000
7390Born in Ice (Born In Trilogy, #2)0.095372to-read fantasy favorites currently-reading fi...10034.000000
7391Diary of a Worm0.095358to-read fantasy favorites currently-reading fi...10014.000000
7392The Perfect Game (The Perfect Game, #1)0.095348to-read favorites currently-reading young-adul...10028.000000
7393When Beauty Tamed the Beast (Fairy Tales, #2)0.095345to-read fantasy favorites currently-reading fi...10033.000000
7394The Green Mile, Part 4: The Bad Death of Eduar...0.095323to-read fantasy favorites currently-reading fi...10035.000000
7395Crooked Letter, Crooked Letter0.095321to-read favorites currently-reading fiction bo...10025.000000
7396The English Girl (Gabriel Allon, #13)0.095284to-read favorites currently-reading fiction bo...10029.000000
7397Beauty from Surrender (Beauty, #2)0.095276to-read favorites currently-reading fiction bo...10026.000000
7398The Wedding (Lairds' Fiancées, #2)0.095270to-read favorites currently-reading fiction bo...10034.000000
7399Seven Years to Sin0.095264to-read favorites currently-reading fiction bo...10035.000000
7400No Place to Hide: Edward Snowden, the NSA, and...0.095256to-read favorites currently-reading books-i-ow...10026.000000
7401Are You My Mother?0.095242to-read fantasy favorites currently-reading yo...20014.500000
7402Are You My Mother?0.041657to-read favorites currently-reading fiction bo...20014.500000
7403This Man Confessed (This Man, #3)0.095194to-read favorites currently-reading fiction bo...10030.000000
7404Guilty as Sin (Deer Lake, #2)0.095139to-read favorites currently-reading fiction bo...10029.000000
7405Darkness, Take My Hand (Kenzie & Gennaro, #2)0.095137to-read favorites currently-reading fiction bo...10032.000000
7406Charade (Games, #1)0.095123to-read favorites currently-reading young-adul...10024.000000
7407If You Take a Mouse to School0.095076to-read fantasy favorites currently-reading fi...10018.000000
7408The Voice of the Night0.095065to-read fantasy favorites currently-reading fi...10029.000000
7409Hero (Hero, #1)0.095065to-read favorites currently-reading fiction bo...10026.000000
7410The Lost Continent: Travels in Small Town America0.095035to-read favorites currently-reading fiction bo...10032.000000
7411What the Bleep Do We Know!?: Discovering the E...0.095034to-read favorites currently-reading books-i-ow...10013.000000
7412The Long Walk: The True Story of a Trek to Fre...0.095001to-read favorites currently-reading fiction bo...10033.000000
7413Train to Pakistan0.094996to-read favorites currently-reading fiction bo...10033.000000
7414Eating the Dinosaur0.094992to-read favorites currently-reading fiction bo...10025.000000
7415The Hypnotist (Joona Linna, #1)0.094967to-read favorites currently-reading fiction bo...10033.000000
7416Antifragile: Things That Gain from Disorder0.094948to-read favorites currently-reading books-i-ow...10024.000000
7417The Innocent (Will Robie, #1)0.094942to-read favorites currently-reading fiction bo...10028.000000
7418Thief (Love Me with Lies, #3)0.094934to-read favorites currently-reading fiction bo...10025.000000
7419The Swerve: How the World Became Modern0.094908to-read favorites currently-reading fiction bo...10030.000000
7420The Wicked + The Divine, Vol. 1: The Faust Act0.094874to-read fantasy favorites currently-reading yo...10030.000000
7421Attack of the Deranged Mutant Killer Monster S...0.094852to-read fantasy favorites currently-reading yo...10031.000000
7422Mr. Brown Can Moo! Can You?0.094829to-read fantasy currently-reading fiction book...10022.000000
7423Talking as Fast as I Can: From Gilmore Girls t...0.094781to-read favorites currently-reading books-i-ow...10023.000000
7424In a Sunburned Country0.094768to-read favorites currently-reading fiction bo...10033.000000
7425The Mistake (Off-Campus, #2)0.094765to-read favorites currently-reading young-adul...10024.000000
7426Anyone But You0.094711to-read favorites currently-reading fiction bo...10028.000000
7427Y: The Last Man, Vol. 1: Unmanned0.094698to-read fantasy favorites currently-reading fi...10025.000000
7428Ever After (Lost Love, #2)0.094648to-read favorites currently-reading fiction bo...10025.000000
7429Al Capone Does My Shirts (Al Capone at Alcatra...0.094644to-read favorites currently-reading young-adul...10020.000000
7430The Venetian Betrayal (Cotton Malone, #3)0.094630to-read favorites currently-reading fiction bo...10031.000000
7431It Starts with Food: Discover the Whole30 and ...0.094625to-read favorites currently-reading books-i-ow...10025.000000
7432There's a Wocket in My Pocket!0.094619to-read fantasy favorites currently-reading yo...10020.000000
7433The Survivors Club0.094542to-read favorites currently-reading fiction bo...10031.000000
7434Friction0.094518to-read favorites currently-reading fiction bo...10025.000000
7435If You Take a Mouse to the Movies0.094505to-read fantasy favorites currently-reading fi...10022.000000
7436The Ugly Duckling0.094477to-read fantasy favorites currently-reading fi...10020.000000
7437Happy, Happy, Happy0.094467to-read favorites currently-reading young-adul...10029.000000
7438Blood Memory0.094452to-read favorites currently-reading fiction bo...10034.000000
7439In the Plex: How Google Thinks, Works, and Sha...0.094450to-read favorites currently-reading books-i-ow...10022.000000
7440Breath, Eyes, Memory0.094426to-read favorites currently-reading fiction bo...10030.000000
7441Jesus Calling: Enjoying Peace in His Presence0.094417to-read favorites currently-reading books-i-ow...10031.000000
7442The Couple Next Door0.094390to-read favorites currently-reading fiction ow...10020.000000
7443Fables, Vol. 5: The Mean Seasons0.094378to-read fantasy favorites currently-reading yo...10024.000000
7444How Children Succeed: Grit, Curiosity, and the...0.094368to-read favorites currently-reading books-i-ow...10024.000000
7445Meditations0.094351to-read favorites currently-reading fiction bo...10027.000000
7446Sins & Needles (The Artists Trilogy, #1)0.094298to-read favorites currently-reading young-adul...10027.000000
7447The Berenstain Bears Go to School0.094287to-read fantasy favorites currently-reading yo...10018.000000
7448Broken Harbour (Dublin Murder Squad, #4)0.094279to-read favorites currently-reading fiction bo...10027.000000
7449Love Is a Mix Tape0.094274to-read favorites currently-reading fiction bo...10027.000000
7450An Essay Concerning Human Understanding0.094235to-read favorites currently-reading books-i-ow...10021.000000
7451Beneath This Man (This Man, #2)0.094197to-read favorites currently-reading fiction bo...10031.000000
7452Mother Courage and Her Children0.094160to-read favorites currently-reading fiction bo...10029.000000
7453The Lone Ranger and Tonto Fistfight in Heaven0.094128to-read favorites currently-reading young-adul...10033.000000
7454The Power of Now: A Guide to Spiritual Enlight...0.094127to-read favorites currently-reading books-i-ow...10034.000000
7455The Mothers0.094115to-read favorites currently-reading fiction bo...10022.000000
7456Fables, Vol. 4: March of the Wooden Soldiers0.094102to-read fantasy favorites currently-reading fi...10024.000000
7457يوتوبيا0.094076to-read fantasy favorites currently-reading fi...10029.000000
7458Lord of Scoundrels (Scoundrels, #3)0.094056to-read favorites currently-reading fiction bo...10033.000000
7459Whiskey Beach0.094046to-read favorites currently-reading fiction bo...10030.000000
7460Corduroy0.094003to-read fantasy favorites currently-reading fi...10021.000000
7461Travel Team0.093975to-read favorites currently-reading young-adul...10021.000000
7462The Rainbow Fish0.093935to-read fantasy favorites currently-reading fi...10015.000000
7463Three Little Kittens0.093928to-read favorites currently-reading fiction bo...10014.000000
7464Papillon0.093922to-read currently-reading fiction books-i-own ...10034.000000
7465Think of a Number (Dave Gurney, #1)0.093919to-read favorites currently-reading fiction bo...10031.000000
7466Outliers: The Story of Success0.093887to-read favorites currently-reading books-i-ow...10029.000000
7467The Berenstain Bears' Trouble at School0.093869to-read favorites currently-reading young-adul...10015.000000
7468SuperFreakonomics: Global Cooling, Patriotic P...0.093862to-read favorites currently-reading books-i-ow...10027.000000
7469Brown Girl Dreaming0.093851to-read favorites currently-reading young-adul...10017.000000
7470Notorious Nineteen (Stephanie Plum, #19)0.093848to-read favorites currently-reading fiction bo...10029.000000
7471Committed: A Skeptic Makes Peace with Marriage0.093842to-read favorites currently-reading fiction bo...10030.000000
7472Windmills of the Gods0.093806to-read favorites currently-reading fiction bo...10029.000000
7473The Midwife's Apprentice0.093740to-read fantasy favorites currently-reading yo...10020.000000
7474Avoiding Commitment (Avoiding, #1)0.093729to-read favorites currently-reading young-adul...10028.000000
7475The Sociopath Next Door0.093724to-read favorites currently-reading books-i-ow...10028.000000
7476Real (Real, #1)0.093721to-read favorites currently-reading fiction bo...10029.000000
7477Raven Black (Shetland Island, #1)0.093711to-read favorites currently-reading fiction bo...10029.000000
7478Death Comes for the Archbishop0.093674to-read favorites currently-reading fiction bo...10027.000000
7479Hide (Detective D.D. Warren, #2)0.093673to-read favorites currently-reading fiction bo...10032.000000
7480Jacob Have I Loved0.093615to-read favorites currently-reading young-adul...10029.000000
7481Amelia Bedelia (Amelia Bedelia #1)0.093582to-read favorites currently-reading young-adul...10018.000000
7482Bird by Bird: Some Instructions on Writing and...0.093569to-read favorites currently-reading fiction bo...10037.000000
7483Uncle Vanya0.093563to-read currently-reading fiction books-i-own ...10026.000000
7484The Confessor (Gabriel Allon, #3)0.093554to-read favorites currently-reading fiction bo...10029.000000
7485Operation Mincemeat: How a Dead Man and a Biza...0.093542to-read favorites currently-reading fiction bo...10025.000000
7486Madeline0.093541to-read favorites currently-reading young-adul...10019.000000
7487The Secret History of the Pink Carnation (Pink...0.093523to-read favorites currently-reading fiction bo...10033.000000
7488The Women of Brewster Place0.093499to-read favorites currently-reading fiction bo...10027.000000
7489The Righteous Mind: Why Good People are Divide...0.093460to-read favorites currently-reading books-i-ow...10022.000000
7490Harvest0.093455to-read favorites currently-reading fiction bo...10036.000000
7491Lead (Stage Dive, #3)0.093443to-read favorites currently-reading fiction bo...10026.000000
7492Dearly Devoted Dexter (Dexter, #2)0.093436to-read favorites currently-reading fiction bo...10031.000000
7493Intensity0.093403to-read fantasy favorites currently-reading fi...10036.000000
7494If You Give a Moose a Muffin0.093397to-read fantasy favorites currently-reading fi...10021.000000
7495On the Way to the Wedding (Bridgertons, #8)0.093346to-read favorites currently-reading fiction bo...10031.000000
7496All the Missing Girls0.093322to-read favorites currently-reading fiction bo...10024.000000
7497The Lake (The Lake Trilogy #1)0.093311to-read favorites currently-reading young-adul...10025.000000
7498The Lemonade War (The Lemonade War, #1)0.093295to-read favorites currently-reading young-adul...10019.000000
7499This Body of Death (Inspector Lynley, #16)0.093280to-read favorites currently-reading fiction bo...10027.000000
7500A Civil Action0.093267to-read favorites currently-reading fiction bo...10027.000000
7501I Have Lived a Thousand Years0.093246to-read favorites currently-reading young-adul...10025.000000
7502The Protector (O'Malley #4)0.093242to-read favorites currently-reading young-adul...10032.000000
7503The Devil All the Time0.093218to-read favorites currently-reading fiction bo...10026.000000
7504Abducted (Lizzy Gardner #1)0.093214to-read favorites currently-reading fiction bo...10024.000000
7505Every Dead Thing (Charlie Parker, #1)0.093203to-read fantasy favorites currently-reading fi...10032.000000
7506One with You (Crossfire, #5)0.093194to-read favorites fiction books-i-own owned se...10028.000000
7507Turtle in Paradise0.093187to-read favorites currently-reading young-adul...10020.000000
7508When Breath Becomes Air0.093184to-read favorites currently-reading fiction bo...10022.000000
7509Strange Pilgrims0.093148to-read fantasy favorites currently-reading fi...10031.000000
7510Swindle (Swindle, #1)0.093122to-read favorites currently-reading young-adul...10021.000000
7511Darkest Fear (Myron Bolitar #7)0.093109to-read favorites currently-reading fiction bo...10028.000000
7512We Should All Be Feminists0.093095to-read favorites currently-reading books-i-ow...10022.000000
7513Twisted (Tangled, #2)0.093070to-read favorites currently-reading fiction bo...10024.000000
7514Lean In: Women, Work, and the Will to Lead0.093044to-read favorites currently-reading books-i-ow...10028.000000
7515Damaged (Damaged, #1)0.093000to-read favorites currently-reading young-adul...10027.000000
7516Drop Dead Healthy: One Man's Humble Quest for ...0.092985to-read favorites currently-reading fiction bo...10025.000000
7517The Gifts of Imperfection: Let Go of Who You T...0.092981to-read favorites currently-reading books-i-ow...10026.000000
7518The Bone Garden0.092967to-read favorites currently-reading fiction bo...10034.000000
7519The Highly Sensitive Person: How to Thrive Whe...0.092949to-read favorites currently-reading books-i-ow...10030.000000
7520Four Blondes0.092936to-read favorites currently-reading fiction bo...10027.000000
7521Remy (Real, #3)0.092907to-read favorites currently-reading fiction bo...10032.000000
7522Heads in Beds: A Reckless Memoir of Hotels, Hu...0.092906to-read favorites currently-reading fiction bo...10023.000000
7523The Associate0.092905to-read favorites currently-reading fiction bo...10031.000000
7524Field of Prey (Lucas Davenport, #24)0.092890to-read favorites currently-reading fiction bo...10027.000000
7525Made in America: An Informal History of the En...0.092888to-read favorites currently-reading fiction bo...10032.000000
7526The Burning Room (Harry Bosch, #19; Harry Bosc...0.092883to-read favorites currently-reading fiction bo...10025.000000
7527The Areas of My Expertise: An Almanac of Compl...0.092872to-read favorites currently-reading fiction bo...10025.000000
7528Girls in Love (Girls, #1)0.092852to-read favorites currently-reading young-adul...10023.000000
7529Explosive Eighteen (Stephanie Plum, #18)0.092829to-read favorites currently-reading fiction bo...10029.000000
7530The Quiet Game0.092822to-read favorites currently-reading fiction bo...10032.000000
7531The Arrangement: The Ferro Family (The Arrange...0.092817to-read favorites currently-reading young-adul...10023.000000
7532What Remains: A Memoir of Fate, Friendship, an...0.092808to-read favorites currently-reading fiction bo...10024.000000
7533The Sweet Gum Tree0.092801to-read favorites currently-reading young-adul...10025.000000
7534Civilization and Its Discontents0.092787to-read favorites currently-reading books-i-ow...10025.000000
7535Hellboy, Vol. 1: Seed of Destruction (Hellboy,...0.092761to-read fantasy favorites currently-reading fi...10025.000000
7536The Darkest Hour (KGI, #1)0.092751to-read favorites currently-reading fiction bo...10030.000000
7537The Hunt for Red October (Jack Ryan Universe, #4)0.092745to-read favorites currently-reading fiction bo...10037.000000
7538No One Belongs Here More Than You0.092744to-read favorites currently-reading fiction bo...10032.000000
7539For the Love: Fighting for Grace in a World of...0.092723to-read favorites currently-reading books-i-ow...10021.000000
7540First to Kill (Nathan McBride, #1)0.092723to-read favorites currently-reading fiction bo...10026.000000
7541You Are Not So Smart: Why You Have Too Many Fr...0.092714to-read favorites currently-reading books-i-ow...10026.000000
7542Notes from a Small Island0.092691to-read favorites currently-reading fiction bo...10034.000000
7543Fight with Me (With Me in Seattle, #2)0.092678to-read favorites currently-reading fiction bo...10028.000000
7544Flat Stanley (Flat Stanley, #1)0.092607to-read fantasy favorites currently-reading yo...10020.000000
7545Killing Yourself to Live: 85% of a True Story0.092605to-read favorites currently-reading fiction bo...10027.000000
7546The Enemy (Jack Reacher, #8)0.092602to-read favorites currently-reading fiction bo...10034.000000
7547Homer Price (A Puffin Book)0.092578to-read favorites currently-reading young-adul...10020.000000
7548The Forever of Ella and Micha (The Secret, #2)0.092576to-read favorites currently-reading young-adul...10025.000000
7549Her Final Breath (Tracy Crosswhite, #2)0.092575to-read favorites currently-reading fiction bo...10022.000000
7550Bitter Is the New Black: Confessions of a Cond...0.092561to-read favorites currently-reading fiction bo...10029.000000
7551I Can Read With My Eyes Shut!0.092554to-read fantasy favorites currently-reading fi...10020.000000
7552Gone Tomorrow (Jack Reacher, #13)0.092526to-read favorites currently-reading fiction bo...10032.000000
7553Tell No One0.092521to-read favorites currently-reading fiction bo...10033.000000
7554The Girl In The Ice (Detective Erika Foster, #1)0.092507to-read favorites currently-reading fiction bo...10025.000000
7555Hard as It Gets (Hard Ink, #1)0.092506to-read favorites currently-reading fiction bo...10028.000000
7556Still Life (Chief Inspector Armand Gamache, #1)0.092491to-read favorites currently-reading fiction bo...10023.000000
7557Forever with You (Fixed, #3)0.092476to-read favorites currently-reading fiction bo...10027.000000
7558Yertle the Turtle and Other Stories0.092466to-read fantasy favorites currently-reading fi...10019.000000
7559Full Dark, No Stars0.092453to-read fantasy favorites currently-reading fi...10035.000000
7560Claim Me (Stark Trilogy, #2)0.092446to-read favorites currently-reading fiction bo...10031.000000
7561The Short and Tragic Life of Robert Peace: A B...0.092441to-read favorites currently-reading books-i-ow...10019.000000
7562The Lion (John Corey, #5)0.092435to-read fantasy favorites currently-reading fi...10029.000000
7563Critique of Pure Reason0.092418to-read favorites currently-reading books-i-ow...10027.000000
7564Danny and the Dinosaur (An I Can Read Book)0.092372to-read fantasy favorites currently-reading fi...10020.000000
7565Too Late0.092312to-read favorites currently-reading young-adul...10022.000000
7566Mein Kampf0.092296to-read favorites currently-reading books-i-ow...10028.000000
7567Aura0.092288to-read fantasy favorites currently-reading fi...10030.000000
7568Sullivan's Island (Lowcountry Tales, #1)0.092273to-read favorites currently-reading fiction bo...10024.000000
7569Again the Magic (Wallflowers, #0)0.092268to-read favorites currently-reading fiction bo...10031.000000
7570Kiss an Angel0.092262to-read favorites currently-reading fiction bo...10030.000000
7571Little Bear's Friend0.092259to-read fantasy favorites currently-reading fi...10019.000000
7572Toujours Provence0.092254to-read favorites currently-reading fiction bo...10021.000000
7573In the Miso Soup0.092253to-read favorites currently-reading fiction bo...10027.000000
7574Medea0.092236to-read fantasy favorites currently-reading fi...10023.000000
7575Sleepwalk With Me and Other Painfully True Sto...0.092220to-read favorites fiction books-i-own owned ow...10021.000000
7576Raid (Unfinished Hero, #3)0.092210to-read favorites currently-reading fiction bo...10027.000000
7577Danger in the Shadows (O'Malley #0.5)0.092203to-read favorites currently-reading young-adul...10035.000000
7578The Walking Dead, Vol. 09: Here We Remain0.092200to-read fantasy favorites currently-reading fi...10026.000000
7579The War that Saved My Life (The War That Saved...0.092197to-read favorites currently-reading young-adul...10019.000000
7580Driven (Driven, #1)0.092190to-read favorites currently-reading fiction bo...10027.000000
7581Big Nate: In a Class by Himself (Big Nate Nove...0.092158to-read fantasy favorites currently-reading yo...10020.000000
7582Double Indemnity0.092149to-read favorites currently-reading fiction bo...10030.000000
7583Getting Things Done: The Art of Stress-Free Pr...0.092136to-read favorites currently-reading books-i-ow...10031.000000
7584Henry & Ramona0.092132to-read currently-reading young-adult fiction ...10010.000000
7585Harry the Dirty Dog0.092131to-read fantasy favorites currently-reading fi...10017.000000
7586The Gift (Crown's Spies, #3)0.092122to-read favorites currently-reading fiction bo...10034.000000
7587Tempting the Best Man (Gamble Brothers, #1)0.092110to-read favorites fiction books-i-own owned se...10024.000000
7588Double Act0.092084to-read favorites currently-reading young-adul...10026.000000
7589The Talent Code: Unlocking the Secret of Skill...0.092081to-read favorites currently-reading books-i-ow...10023.000000
7590Breathing Lessons0.092071to-read favorites currently-reading fiction bo...10035.000000
7591Persuader (Jack Reacher, #7)0.092041to-read favorites currently-reading fiction bo...10034.000000
7592The Secret Diaries of Miss Miranda Cheever (Be...0.092035to-read favorites currently-reading fiction bo...10032.000000
7593For You (The 'Burg, #1)0.092022to-read favorites currently-reading fiction bo...10028.000000
7594Your Heart Belongs to Me0.092000to-read favorites currently-reading fiction bo...10030.000000
7595Pretty in Plaid0.091999to-read favorites currently-reading fiction bo...10028.000000
7596Survival in Auschwitz0.091998to-read currently-reading owned re-read my-boo...10020.000000
7597Live from New York: An Uncensored History of S...0.091983to-read favorites currently-reading books-i-ow...10023.000000
7598Chinese Cinderella: The True Story of an Unwan...0.091977to-read favorites currently-reading young-adul...10031.000000
7599Hold Tight0.091968to-read favorites currently-reading fiction bo...10033.000000
7600A Book of Five Rings: The Classic Guide to Str...0.091966to-read favorites currently-reading fiction bo...10032.000000
7601Native Tongue (Skink, #2)0.091926to-read favorites currently-reading fiction bo...10029.000000
7602A Thousand Acres0.091921to-read favorites currently-reading fiction bo...10031.000000
7603The 48 Laws of Power0.091919to-read favorites currently-reading books-i-ow...10028.000000
7604Executive Power (Mitch Rapp, #6)0.091918to-read favorites currently-reading fiction bo...10034.000000
7605The Lion's Lady (Crown's Spies, #1)0.091904to-read favorites currently-reading fiction bo...10033.000000
7606How the García Girls Lost Their Accents0.091897to-read favorites currently-reading young-adul...10029.000000
7607War0.091896to-read favorites currently-reading fiction bo...10024.000000
7608Heartbreaker (Buchanan-Renard, #1)0.091882to-read favorites currently-reading fiction bo...10034.000000
7609Steve Jobs0.091863to-read favorites currently-reading books-i-ow...10030.000000
7610All In (The Blackstone Affair, #2)0.091845to-read favorites currently-reading fiction bo...10028.000000
7611The Luminaries0.091833to-read fantasy favorites currently-reading fi...10038.000000
7612The Brain That Changes Itself: Stories of Pers...0.091827to-read favorites currently-reading books-i-ow...10025.000000
7613Rock Chick Regret (Rock Chick, #7)0.091825to-read favorites currently-reading fiction bo...10026.000000
7614The Very Hungry Caterpillar Board Book0.091822to-read fantasy favorites currently-reading fi...10018.000000
7615Fire Inside (Chaos, #2)0.091818to-read favorites currently-reading fiction bo...10026.000000
7616Damaged 2 (Damaged, #2)0.091786to-read favorites currently-reading young-adul...10023.000000
7617The Forgotten (John Puller, #2)0.091771to-read favorites currently-reading fiction bo...10029.000000
7618The Accident0.091770to-read favorites currently-reading fiction bo...10028.000000
7619Hunger Makes Me a Modern Girl0.091737to-read favorites books-i-own owned favourites...10021.000000
7620The Federalist Papers0.091723to-read favorites currently-reading fiction bo...10023.000000
7621The Watsons Go to Birmingham - 19630.091696to-read favorites currently-reading young-adul...10019.000000
7622The Social Animal: The Hidden Sources of Love,...0.091692to-read favorites currently-reading fiction bo...10025.000000
7623You Can Win: A Step by Step Tool for Top Achie...0.091690to-read favorites currently-reading books-i-ow...10017.000000
7624Rumors of War (Children of the Promise, #1)0.091681to-read favorites currently-reading young-adul...10029.000000
7625Eat and Run: My Unlikely Journey to Ultramarat...0.091671to-read favorites currently-reading books-i-ow...10025.000000
7626Naked (The Blackstone Affair, #1)0.091591to-read favorites currently-reading fiction bo...10029.000000
7627The Little Red Hen (Little Golden Book)0.091569to-read fantasy favorites currently-reading fi...10014.000000
7628Sushi for Beginners0.091546to-read favorites currently-reading fiction bo...10033.000000
7629Mrs. Kennedy and Me: An Intimate Memoir0.091526to-read favorites currently-reading books-i-ow...10022.000000
7630Fifty Shades Duo: Fifty Shades Darker / Fifty ...0.091525to-read favorites currently-reading fiction se...10016.000000
7631Five Point Someone0.091510to-read favorites currently-reading young-adul...10028.000000
7632Lab Girl0.091496to-read favorites currently-reading fiction bo...10022.000000
7633Fever (Breathless, #2)0.091451to-read favorites currently-reading fiction bo...10033.000000
7634Nothing to Lose (Jack Reacher, #12)0.091372to-read favorites currently-reading fiction bo...10033.000000
7635Born in Shame (Born In Trilogy, #3)0.091363to-read fantasy favorites currently-reading fi...10036.000000
76361421: The Year China Discovered America0.091355to-read fantasy favorites currently-reading fi...10026.000000
7637Neil Patrick Harris: Choose Your Own Autobiogr...0.091340to-read favorites currently-reading fiction bo...10024.000000
7638Empty Mansions: The Mysterious Life of Huguett...0.091320to-read favorites currently-reading books-i-ow...10021.000000
7639Bad Luck and Trouble (Jack Reacher, #11)0.091311to-read favorites currently-reading fiction bo...10032.000000
7640Outbreak (Dr. Marissa Blumenthal, #1)0.091310to-read favorites currently-reading fiction bo...10035.000000
7641Secrets to the Grave (Oak Knoll, #2)0.091309to-read favorites currently-reading fiction bo...10027.000000
7642The Berenstain Bears and the Messy Room0.091308to-read favorites currently-reading young-adul...10018.000000
7643Flash and Bones (Temperance Brennan, #14)0.091245to-read favorites currently-reading fiction bo...10028.000000
7644One Night at the Call Center0.091222to-read favorites currently-reading young-adul...10025.000000
7645The Prize0.091197to-read favorites currently-reading fiction bo...10032.000000
7646Mike Mulligan and His Steam Shovel0.091176to-read fantasy favorites currently-reading yo...10018.000000
7647Preacher, Volume 2: Until the End of the World0.091166to-read fantasy favorites currently-reading fi...10023.000000
7648Dr. Seuss's ABC: An Amazing Alphabet Book! (Br...0.091156to-read fantasy favorites currently-reading fi...10020.000000
7649The Phoenix Project: A Novel About IT, DevOps,...0.091126to-read favorites currently-reading fiction bo...10024.000000
7650Born in Fire (Born In Trilogy, #1)0.091037to-read fantasy favorites currently-reading fi...10036.000000
7651Out0.091037to-read favorites currently-reading fiction bo...10030.000000
7652Term Limits0.090976to-read favorites currently-reading fiction bo...10031.000000
7653No Time for Goodbye (No Time For Goodbye #1)0.090941to-read favorites currently-reading fiction bo...10032.000000
7654If I Were You (Inside Out, #1)0.090936to-read favorites currently-reading fiction bo...10030.000000
7655The Kind Worth Killing0.090894to-read favorites currently-reading fiction bo...10024.000000
7656Taking Shots (Assassins, #1)0.090869to-read favorites currently-reading fiction bo...10028.000000
7657Just a Mess (Little Critter)0.090863to-read favorites currently-reading fiction bo...10018.000000
7658Lies My Teacher Told Me0.090854to-read favorites currently-reading books-i-ow...10028.000000
7659Live to Tell (Detective D.D. Warren, #4)0.090842to-read favorites currently-reading fiction bo...10028.000000
7660Kindle Paperwhite User's Guide0.090821to-read currently-reading owned my-library kin...6212.903226
7661Junie B. Jones and the Stupid Smelly Bus (Jun...0.090820to-read fantasy favorites currently-reading fi...10023.000000
7662Hafalan Shalat Delisa0.090814to-read favorites currently-reading young-adul...10016.000000
7663The Making of the Atomic Bomb0.090808to-read favorites currently-reading books-i-ow...10026.000000
7664Mistress0.090788to-read favorites currently-reading fiction bo...10031.000000
7665Killing Pablo: The Hunt for the World's Greate...0.090778to-read favorites currently-reading fiction bo...10029.000000
7666The Last Lecture0.090776to-read favorites currently-reading fiction bo...10030.000000
7667Saving Grace0.090761to-read favorites currently-reading fiction bo...10032.000000
7668The Day of the Locust0.090750to-read favorites currently-reading fiction bo...10027.000000
7669Little Bear0.090681to-read fantasy favorites currently-reading fi...10018.000000
7670Mother of Pearl0.090642to-read favorites currently-reading fiction bo...10028.000000
7671The English Spy (Gabriel Allon, #15)0.090640favorites books-i-own owned series owned-books...10028.000000
7672The Inner Circle (Culper Ring, #1)0.090635to-read currently-reading fiction books-i-own ...10020.000000
7673Why Men Love Bitches: From Doormat to Dreamgir...0.090632to-read favorites currently-reading books-i-ow...10028.000000
7674Nothing Lasts Forever0.090617to-read favorites currently-reading young-adul...10031.000000
7675The Fixed Trilogy (Fixed, #1-3)0.090598to-read favorites currently-reading fiction bo...10024.000000
7676The Road to Character0.090572to-read favorites currently-reading books-i-ow...10020.000000
7677The Amber Room0.090550to-read favorites currently-reading fiction bo...10031.000000
7678Rainbow Boys (Rainbow Trilogy, #1)0.090544to-read favorites currently-reading young-adul...10026.000000
7679Path of the Assassin (Scot Harvath, #2)0.090540to-read favorites currently-reading fiction bo...10028.000000
7680Revolution 2020: Love, Corruption, Ambition0.090509to-read favorites currently-reading young-adul...10026.000000
7681The Hook Up (Game On, #1)0.090508to-read favorites currently-reading young-adul...10024.000000
7682Antigone0.090497to-read favorites currently-reading fiction bo...10028.000000
7683The Sound of Gravel0.090497to-read favorites currently-reading fiction bo...10019.000000
7684A Death in the Family0.090495to-read favorites currently-reading fiction bo...10031.000000
7685A Wanted Man (Jack Reacher, #17)0.090446to-read favorites currently-reading fiction bo...10026.000000
7686The Introvert Advantage: How to Thrive in an E...0.090365to-read favorites currently-reading books-i-ow...10029.000000
7687Clifford's Halloween0.090335to-read currently-reading fiction books-i-own ...10018.000000
7688The Grouchy Ladybug0.090334to-read fantasy favorites currently-reading fi...10017.000000
7689Just Kids0.090332to-read favorites currently-reading fiction bo...10028.000000
7690Lethal0.090317to-read favorites currently-reading fiction bo...10031.000000
7691Overruled (The Legal Briefs, #1)0.090315to-read favorites currently-reading fiction bo...10024.000000
7692Don't Let's Go to the Dogs Tonight0.090268to-read favorites currently-reading fiction bo...10031.000000
7693Go, Dog. Go!0.090263to-read fantasy favorites currently-reading fi...10024.000000
7694Transmetropolitan, Vol. 1: Back on the Street ...0.090241to-read fantasy favorites currently-reading fi...10026.000000
7695Avatar: The Last Airbender: The Lost Adventures0.090241to-read fantasy favorites currently-reading yo...10030.000000
7696Do-It-Yourself Book (Diary of a Wimpy Kid)0.090223to-read fantasy favorites currently-reading yo...10023.000000
7697We Were Soldiers Once... and Young: Ia Drang -...0.090223to-read favorites currently-reading fiction bo...10025.000000
7698The Woman Warrior0.090220to-read fantasy favorites currently-reading fi...10027.000000
7699The Better Angels of Our Nature: Why Violence ...0.090212to-read favorites currently-reading books-i-ow...10023.000000
7700The Marriage Mistake (Marriage to a Billionair...0.090201to-read favorites currently-reading fiction bo...10030.000000
7701Devil Bones (Temperance Brennan, #11)0.090182to-read favorites currently-reading fiction bo...10033.000000
7702Lawrence in Arabia: War, Deceit, Imperial Foll...0.090174to-read favorites currently-reading books-i-ow...10026.000000
7703Innocent Erendira and Other Stories0.090173to-read fantasy favorites currently-reading fi...10032.000000
7704The Pelican Brief0.090169to-read favorites currently-reading fiction bo...10033.000000
7705Chasing The Night (Eve Duncan, #11; Catherine ...0.090160to-read favorites currently-reading fiction bo...10027.000000
7706The Jester0.090156to-read fantasy favorites currently-reading fi...10033.000000
7707M Train0.090149to-read favorites currently-reading fiction bo...10026.000000
7708The Keepsake (Rizzoli & Isles, #7)0.090135to-read favorites currently-reading fiction bo...10031.000000
7709When the Lion Feeds (Courtney, #1)0.090134to-read favorites currently-reading fiction bo...10031.000000
7710Thrive: The Third Metric to Redefining Success...0.090119to-read favorites currently-reading books-i-ow...10022.000000
7711The Magic of Thinking Big0.090105to-read favorites currently-reading books-i-ow...10029.000000
7712To Sir Phillip, With Love (Bridgertons, #5)0.089989to-read favorites currently-reading fiction bo...10029.000000
7713Curious George Visits the Library0.089978to-read favorites currently-reading young-adul...10016.000000
7714The Little Engine That Could0.089947to-read fantasy favorites currently-reading yo...10017.000000
7715The Glass Palace0.089913to-read favorites currently-reading fiction bo...10033.000000
7716The Woods0.089904to-read favorites currently-reading fiction bo...10033.000000
7717Smashed: Story of a Drunken Girlhood0.089827to-read favorites currently-reading young-adul...10028.000000
7718Tourist Season0.089807to-read favorites currently-reading fiction bo...10029.000000
7719The Social Contract0.089767to-read favorites currently-reading books-i-ow...10020.000000
7720Gang Leader for a Day: A Rogue Sociologist Tak...0.089765to-read favorites currently-reading books-i-ow...10024.000000
7721Curious George Goes to the Hospital0.089735to-read fantasy favorites currently-reading fi...10014.000000
7722The Best Laid Plans0.089725to-read fantasy favorites currently-reading fi...10030.000000
7723One False Move (Myron Bolitar #5)0.089713to-read favorites currently-reading fiction bo...10027.000000
7724Open City0.089679to-read favorites currently-reading fiction bo...10027.000000
7725Bread and Jam for Frances0.089637to-read fantasy favorites currently-reading fi...10019.000000
7726Homer's Odyssey0.089630to-read favorites currently-reading fiction bo...10030.000000
7727The Emperor's Tomb (Cotton Malone, #6)0.089577to-read favorites currently-reading fiction bo...10028.000000
7728Mile 810.089577to-read favorites currently-reading fiction bo...10023.000000
7729Zeitoun0.089555to-read favorites currently-reading fiction bo...10023.000000
7730The Trespasser (Dublin Murder Squad #6)0.089550to-read favorites currently-reading fiction bo...10022.000000
7731Eat That Frog!: 21 Great Ways to Stop Procrast...0.089550to-read favorites currently-reading books-i-ow...10025.000000
7732Miss Nelson Is Back (Miss Nelson, #2)0.089549to-read fantasy favorites currently-reading fi...10016.000000
7733On the Street Where You Live0.089546to-read favorites currently-reading fiction bo...10031.000000
7734We're Going on a Bear Hunt0.089529to-read fantasy favorites currently-reading fi...10018.000000
7735The Beet Queen0.089472to-read favorites currently-reading fiction bo...10023.000000
7736Better: A Surgeon's Notes on Performance0.089470to-read favorites currently-reading books-i-ow...10028.000000
7737Big Nate on a Roll (Big Nate Novels, #3)0.089423to-read favorites currently-reading young-adul...10021.000000
7738Agamemnon (Oresteia, #1)0.089408to-read fantasy favorites currently-reading fi...10024.000000
7739Snowmen at Night0.089395to-read fantasy favorites currently-reading fi...10014.000000
7740Tintin in Tibet (Tintin, #20)0.089382to-read fantasy favorites currently-reading yo...10029.000000
7741Motorcycle Man (Dream Man, #4)0.089375to-read favorites currently-reading fiction bo...10027.000000
7742Not That Kind of Girl: A Young Woman Tells You...0.089368to-read favorites books-i-own owned favourites...10026.000000
7743The Complete Maus (Maus, #1-2)0.089354to-read favorites currently-reading young-adul...10020.000000
7744The Jordan Rules0.089346to-read favorites currently-reading books-i-ow...10015.000000
7745Not My Father's Son0.089329to-read favorites currently-reading books-i-ow...10020.000000
7746Down to You (The Bad Boys, #1)0.089310to-read favorites currently-reading young-adul...10029.000000
7747The Crossover0.089263to-read favorites currently-reading young-adul...10015.000000
7748America (The Book): A Citizen's Guide to Democ...0.089244to-read favorites currently-reading fiction bo...10027.000000
7749Whitney, My Love (Westmoreland, #2)0.089236to-read favorites currently-reading fiction bo...10033.000000
7750The Subtle Art of Not Giving a F*ck: A Counter...0.089192to-read favorites currently-reading books-i-ow...10025.000000
7751Put Me in the Zoo0.089190to-read fantasy favorites young-adult owned ow...10019.000000
7752Sister of My Heart0.089130to-read favorites currently-reading fiction bo...10028.000000
7753Rules0.089112to-read favorites currently-reading young-adul...10021.000000
7754Pucked (Pucked, #1)0.089110to-read favorites currently-reading fiction bo...10024.000000
7755Portrait of a Spy (Gabriel Allon, #11)0.089105to-read favorites currently-reading fiction bo...10029.000000
7756Low Country0.089095to-read favorites currently-reading fiction bo...10019.000000
7757Twilight: The Graphic Novel, Vol. 2 (Twilight...0.089085to-read fantasy favorites currently-reading yo...10026.000000
7758Basket Case0.089070to-read favorites currently-reading fiction bo...10029.000000
7759Catch Me (Detective D.D. Warren, #6)0.089040to-read favorites currently-reading fiction bo...10030.000000
7760Paradise0.088965to-read fantasy favorites currently-reading fi...10035.000000
7761Second Son (Jack Reacher, #15.5)0.088895to-read favorites currently-reading fiction bo...10027.000000
7762Die Trying (Jack Reacher, #2)0.088869to-read favorites currently-reading fiction bo...10031.000000
7763The Face of Fear0.088806to-read fantasy favorites currently-reading fi...10032.000000
7764Hope: A Memoir of Survival in Cleveland0.088801to-read favorites books-i-own owned owned-book...10022.000000
7765Chuck Klosterman IV: A Decade of Curious Peopl...0.088777to-read favorites currently-reading fiction bo...10024.000000
7766The Story of Philosophy: The Lives and Opinion...0.088763to-read favorites currently-reading books-i-ow...10030.000000
7767The Submissive (Submissive, #1)0.088754to-read favorites currently-reading fiction bo...10030.000000
7768I is for Innocent (Kinsey Millhone, #9)0.088739to-read favorites currently-reading fiction bo...10032.000000
7769Bad Feminist0.088731to-read favorites currently-reading books-i-ow...10024.000000
7770The Last Juror0.088701to-read favorites currently-reading fiction bo...10031.000000
7771Become a Better You: 7 Keys to Improving Your ...0.088670to-read favorites currently-reading books-i-ow...10020.000000
7772A Million Miles in a Thousand Years: What I Le...0.088658to-read favorites currently-reading fiction bo...10027.000000
7773The Life and Times of the Thunderbolt Kid0.088634to-read favorites currently-reading fiction bo...10034.000000
7774Kisscut (Grant County, #2)0.088608to-read favorites currently-reading fiction bo...10030.000000
7775The Geography of Bliss: One Grump's Search for...0.088589to-read favorites currently-reading fiction bo...10024.000000
7776Genius: The Life and Science of Richard Feynman0.088588to-read favorites currently-reading books-i-ow...10023.000000
7777Hell's Angels: A Strange and Terrible Saga0.088561to-read favorites currently-reading fiction bo...10026.000000
7778Cycle of the Werewolf0.088550to-read fantasy favorites currently-reading fi...10034.000000
7779Skin Tight (Mick Stranahan, #1)0.088540to-read favorites currently-reading fiction bo...10027.000000
7780Frog and Toad Are Friends (Frog and Toad, #1)0.088534to-read fantasy favorites currently-reading yo...10016.000000
7781Just After Sunset0.088530to-read fantasy favorites currently-reading fi...10036.000000
7782Another Bullshit Night in Suck City0.088520to-read favorites currently-reading fiction bo...10019.000000
7783The Ghost Map: The Story of London's Most Terr...0.088478to-read favorites currently-reading books-i-ow...10021.000000
7784Apology0.088467to-read favorites currently-reading fiction bo...10029.000000
7785The Trial and Death of Socrates0.088462to-read favorites currently-reading fiction bo...10022.000000
7786Mistakes Were Made (But Not by Me): Why We Jus...0.088451to-read favorites currently-reading books-i-ow...10022.000000
7787My Life on the Road0.088445to-read favorites currently-reading books-i-ow...10021.000000
7788Under the Banner of Heaven: A Story of Violent...0.088444to-read favorites currently-reading fiction bo...10028.000000
7789Let's Pretend This Never Happened: A Mostly Tr...0.088429to-read favorites currently-reading fiction bo...10026.000000
7790The Gulag Archipelago 1918-19560.088415to-read favorites currently-reading fiction bo...10027.000000
7791The Walking Dead, Vol. 07: The Calm Before0.088397to-read fantasy favorites currently-reading fi...10029.000000
7792Hiroshima0.088325to-read favorites currently-reading young-adul...10031.000000
7793Troublemaker: Surviving Hollywood and Scientology0.088302to-read favorites currently-reading books-i-ow...10019.000000
7794We30.088293to-read fantasy favorites currently-reading yo...10026.000000
7795Transfer of Power (Mitch Rapp, #3)0.088292to-read favorites currently-reading fiction bo...10032.000000
7796Reasonable Doubt: Volume 3 (Reasonable Doubt, #3)0.088281to-read favorites currently-reading fiction bo...10021.000000
7797Strange Highways0.088269to-read fantasy favorites currently-reading fi...10034.000000
7798Rock Chick Revolution (Rock Chick, #8)0.088264to-read favorites currently-reading fiction bo...10028.000000
7799Beyond Good and Evil0.088244to-read favorites currently-reading fiction bo...10026.000000
7800The Good Husband of Zebra Drive (No. 1 Ladies'...0.088240to-read favorites currently-reading fiction bo...10033.000000
7801The Bourne Ultimatum (Jason Bourne, #3)0.088225to-read favorites currently-reading fiction bo...10035.000000
7802Tall, Tatted and Tempting (The Reed Brothers, #1)0.088222to-read currently-reading young-adult fiction ...10025.000000
7803Dolores Claiborne0.088221to-read fantasy favorites currently-reading fi...10038.000000
7804The Walking Dead, Vol. 13: Too Far Gone0.088220to-read fantasy favorites currently-reading fi...10025.000000
7805Kindle User's Guide0.088079to-read currently-reading owned default own-it...5616.071429
7806Lean Mean Thirteen (Stephanie Plum, #13)0.088074to-read favorites currently-reading fiction bo...10031.000000
7807Reunion (Redemption, #5)0.088067to-read favorites currently-reading fiction bo...10024.000000
7808The Power (The Secret, #2)0.088055to-read favorites currently-reading books-i-ow...10027.000000
7809Cinderella0.088049to-read fantasy favorites currently-reading yo...10020.000000
7810Knight (Unfinished Hero, #1)0.088039to-read favorites currently-reading fiction bo...10028.000000
7811Bloodline0.088030to-read favorites currently-reading young-adul...10032.000000
7812How Music Works0.088009to-read favorites currently-reading books-i-ow...10024.000000
7813In a People House0.088007to-read fantasy favorites currently-reading yo...10019.000000
7814The Tenth Insight: Holding the Vision (Celesti...0.088006to-read fantasy favorites currently-reading fi...10026.000000
7815Play with Me (With Me in Seattle, #3)0.087977to-read favorites currently-reading fiction bo...10028.000000
7816The Gay Science0.087966to-read favorites currently-reading books-i-ow...10024.000000
7817Tar Baby0.087963to-read favorites currently-reading fiction bo...10031.000000
7818Blackout: Remembering the Things I Drank to Fo...0.087958to-read favorites currently-reading fiction bo...10020.000000
7819Alive: The Story of the Andes Survivors0.087957to-read favorites currently-reading fiction bo...10026.000000
7820Beyond Reach (Grant County, #6)0.087952to-read favorites currently-reading fiction bo...10033.000000
7821Under Locke0.087920to-read favorites currently-reading fiction ow...10023.000000
7822The Bridge of San Luis Rey0.087904to-read favorites currently-reading fiction bo...10032.000000
7823Ceremony0.087902to-read favorites currently-reading fiction bo...10028.000000
7824The Third Secret0.087891to-read favorites currently-reading fiction bo...10028.000000
7825March0.087868to-read favorites currently-reading fiction bo...10032.000000
7826The Essential Calvin and Hobbes: A Calvin and ...0.087859to-read fantasy favorites currently-reading yo...10033.000000
7827The Wealth of Nations0.087844to-read favorites currently-reading fiction bo...10027.000000
7828When You Are Engulfed in Flames0.087840to-read favorites currently-reading fiction bo...10031.000000
7829Vision in White (Bride Quartet, #1)0.087787to-read favorites currently-reading fiction bo...10035.000000
7830Men Explain Things to Me0.087740to-read favorites currently-reading books-i-ow...10022.000000
7831The Power of Myth0.087739to-read fantasy favorites currently-reading fi...10028.000000
7832Fame (Firstborn, #1)0.087720to-read favorites currently-reading young-adul...10024.000000
7833Sweet Surrender (Sweet, #1)0.087693to-read favorites currently-reading fiction bo...10029.000000
7834Change Your Thoughts - Change Your Life: Livin...0.087689to-read favorites currently-reading books-i-ow...10026.000000
7835My Life in France0.087677to-read favorites currently-reading fiction bo...10027.000000
7836Julie of the Wolves (Julie of the Wolves, #1)0.087670to-read favorites currently-reading young-adul...10026.000000
7837The 3 Mistakes of My Life0.087667to-read favorites currently-reading young-adul...10028.000000
7838Jake Undone (Jake, #1)0.087664to-read favorites currently-reading young-adul...10025.000000
7839Steal Like an Artist: 10 Things Nobody Told Yo...0.087639to-read favorites currently-reading books-i-ow...10023.000000
7840Out from Boneville (Bone, #1)0.087635to-read fantasy favorites currently-reading yo...10029.000000
7841A Death in Sweden0.087631to-read favorites currently-reading fiction bo...10024.000000
7842The Walking Dead, Vol. 08: Made to Suffer0.087625to-read fantasy favorites currently-reading fi...10028.000000
78435 cm0.087621to-read favorites currently-reading young-adul...10017.000000
7844Live Wire (Myron Bolitar #10)0.087611to-read favorites currently-reading fiction bo...10029.000000
7845Just Me and My Dad (Little Critter)0.087610to-read favorites currently-reading fiction bo...10017.000000
7846The Indispensable Calvin and Hobbes0.087602to-read fantasy favorites currently-reading yo...10032.000000
7847Three Junes0.087588to-read favorites currently-reading fiction bo...10031.000000
7848Big Rock0.087581to-read favorites currently-reading fiction bo...10021.000000
7849The End of Your Life Book Club0.087577to-read favorites currently-reading fiction bo...10026.000000
7850The Brethren0.087572to-read favorites currently-reading fiction bo...10032.000000
7851The Fifth Witness (Mickey Haller, #5; Harry Bo...0.087572to-read favorites currently-reading fiction bo...10029.000000
7852Gideon's Sword (Gideon Crew, #1)0.087536to-read fantasy favorites currently-reading fi...10031.000000
7853Lysistrata0.087536to-read favorites fiction books-i-own owned fa...10023.000000
7854Wonder Woman, Volume 1: Blood0.087532to-read fantasy favorites currently-reading yo...10027.000000
7855The Great Shark Hunt: Strange Tales from a Str...0.087531to-read favorites currently-reading fiction bo...10023.000000
7856Stephen King's N.0.087489to-read fantasy favorites currently-reading fi...10022.000000
7857Lost in Shangri-la: A True Story of Survival, ...0.087483to-read favorites currently-reading fiction bo...10023.000000
7858I Too Had a Love Story0.087469to-read favorites currently-reading young-adul...10025.000000
7859How to Win Friends and Influence People0.087457to-read currently-reading books-i-own owned fa...10030.000000
7860Unveiled: Tamar (Lineage of Grace #1)0.087442to-read favorites currently-reading young-adul...10023.000000
7861The Anti-Christ0.087437to-read favorites currently-reading books-i-ow...10024.000000
7862Hollywood Dirt (Hollywood Dirt, #1)0.087425to-read favorites currently-reading fiction bo...10024.000000
7863The Unofficial Harry Potter Cookbook: From Cau...0.087416to-read fantasy favorites currently-reading yo...10027.000000
7864Sincerely, Carter (Sincerely Carter, #1)0.087415to-read favorites currently-reading young-adul...10022.000000
7865Auschwitz0.087378to-read favorites currently-reading fiction bo...10024.000000
7866Pinkalicious0.087367to-read fantasy favorites currently-reading fi...10016.000000
7867Two Little Girls in Blue0.087339to-read favorites currently-reading fiction bo...10032.000000
7868One for the Money (Stephanie Plum, #1)0.087317to-read favorites currently-reading fiction bo...10032.000000
7869What Every Body is Saying: An Ex-FBI Agent's G...0.087312to-read favorites currently-reading books-i-ow...10025.000000
7870In Real Life0.087295to-read fantasy favorites currently-reading yo...10022.000000
7871A Mother's Reckoning: Living in the Aftermath ...0.087266to-read favorites currently-reading books-i-ow...10018.000000
7872Waiting to Be Heard: A Memoir0.087259to-read favorites currently-reading books-i-ow...10025.000000
7873Trouble0.087245to-read favorites currently-reading young-adul...10025.000000
7874Zealot: The Life and Times of Jesus of Nazareth0.087175to-read favorites currently-reading fiction bo...10026.000000
7875Own the Wind (Chaos, #1)0.087162to-read favorites currently-reading fiction bo...10026.000000
7876Fever Dream (Pendergast, #10)0.087151to-read favorites currently-reading fiction bo...10028.000000
7877Llama Llama Red Pajama0.087148to-read fantasy favorites currently-reading fi...10014.000000
7878Vanished (Callahan & McLane #1)0.087132to-read favorites currently-reading fiction ow...10021.000000
7879The Sympathizer0.087117to-read favorites currently-reading fiction bo...10026.000000
7880Never Seduce a Scot (The Montgomerys and Armst...0.087090to-read favorites currently-reading fiction bo...10029.000000
7881Imagine: How Creativity Works0.087082to-read favorites currently-reading fiction bo...10021.000000
7882An Invisible Thread: The True Story of an 11-Y...0.087081to-read favorites currently-reading young-adul...10024.000000
7883Freakonomics: A Rogue Economist Explores the H...0.087060to-read favorites currently-reading fiction bo...10030.000000
7884The Tin Roof Blowdown (Dave Robicheaux, #16)0.087056to-read favorites currently-reading fiction bo...10025.000000
7885Smokin' Seventeen (Stephanie Plum, #17)0.087054to-read favorites currently-reading fiction bo...10030.000000
7886Body Double (Rizzoli & Isles, #4)0.087042to-read favorites currently-reading fiction bo...10032.000000
7887Stenhuggaren (Patrik Hedström, #3)0.086989to-read favorites currently-reading fiction bo...10030.000000
7888Frédéric0.086989to-read fantasy favorites currently-reading fi...10015.000000
7889Complete Me (Stark Trilogy, #3)0.086988to-read favorites currently-reading fiction bo...10029.000000
7890The Firm (Penguin Readers, Level 5)0.086982to-read favorites currently-reading fiction bo...10036.000000
7891The Hit (Will Robie, #2)0.086968to-read favorites currently-reading fiction bo...10030.000000
7892Beyond Band of Brothers: The War Memoirs of Ma...0.086955to-read favorites currently-reading books-i-ow...10023.000000
7893The Sleeping Doll (Kathryn Dance, #1)0.086929to-read favorites currently-reading fiction bo...10035.000000
7894Say You're One of Them0.086920to-read favorites currently-reading fiction bo...10032.000000
7895Conversations with God: An Uncommon Dialogue, ...0.086918to-read favorites currently-reading fiction bo...10030.000000
7896The Symposium0.086861to-read favorites currently-reading fiction bo...10028.000000
7897Good Night, Gorilla0.086818to-read fantasy favorites currently-reading fi...10019.000000
7898Superman: Red Son0.086812to-read fantasy favorites currently-reading yo...10028.000000
7899Rock Chick Reckoning (Rock Chick, #6)0.086789to-read favorites currently-reading fiction bo...10028.000000
7900Unseen (Will Trent, #7)0.086784to-read favorites currently-reading fiction bo...10028.000000
7901Escape0.086727to-read favorites currently-reading fiction bo...10023.000000
7902The Cove (FBI Thriller #1)0.086702to-read favorites currently-reading fiction bo...10030.000000
7903Miss Nelson Is Missing! (Miss Nelson, #1)0.086686to-read favorites currently-reading fiction bo...10015.000000
7904Gone (Quincy & Rainie, #5)0.086667to-read favorites currently-reading fiction bo...10032.000000
7905A Death in Vienna (Gabriel Allon, #4)0.086664to-read favorites currently-reading fiction bo...10031.000000
7906Frog and Toad All Year (Frog and Toad, #3)0.086642to-read fantasy favorites currently-reading fi...10021.000000
7907The Voyages of Doctor Dolittle (Doctor Dolittl...0.086633to-read fantasy currently-reading young-adult ...10032.000000
7908Second Treatise of Government0.086623to-read favorites currently-reading books-i-ow...10023.000000
7909V is for Vengeance (Kinsey Millhone, #22)0.086618to-read favorites currently-reading fiction bo...10030.000000
7910The View from Saturday0.086618to-read favorites currently-reading young-adul...10024.000000
7911Shoe Dog: A Memoir by the Creator of NIKE0.086584to-read favorites currently-reading books-i-ow...10023.000000
7912Say Goodbye (Quincy & Rainie, #6)0.086576to-read favorites currently-reading fiction bo...10030.000000
7913A Long Way Gone: Memoirs of a Boy Soldier0.086550to-read favorites currently-reading young-adul...10031.000000
7914Paula0.086548to-read favorites currently-reading fiction bo...10032.000000
7915More Than This (More Than, #1)0.086529to-read favorites currently-reading young-adul...10023.000000
7916Where Men Win Glory: The Odyssey of Pat Tillman0.086502to-read favorites currently-reading fiction bo...10027.000000
7917The Little Old Lady Who Was Not Afraid of Anyt...0.086444to-read fantasy favorites currently-reading fi...10016.000000
7918Crush (Crush, #1)0.086441to-read favorites currently-reading young-adul...10023.000000
7919Coming Clean0.086439to-read favorites currently-reading fiction bo...10019.000000
7920Running Blind (Jack Reacher, #4)0.086439to-read favorites currently-reading fiction bo...10030.000000
7921Perfection (Neighbor from Hell, #2)0.086425to-read favorites currently-reading fiction bo...10024.000000
7922Last to Die (Rizzoli & Isles, #10)0.086379to-read favorites currently-reading fiction bo...10028.000000
7923Gerald's Game0.086354to-read fantasy favorites currently-reading fi...10039.000000
7924Black Rose (In the Garden, #2)0.086346to-read fantasy favorites currently-reading fi...10034.000000
7925Mad River (Virgil Flowers, #6)0.086323to-read favorites currently-reading fiction bo...10027.000000
7926The Greatest Salesman in the World0.086306to-read favorites currently-reading fiction bo...10029.000000
7927Tobacco Road (Brown Thrasher Books)0.086292to-read favorites currently-reading fiction bo...10026.000000
7928Most Talkative: Stories from the Front Lines o...0.086281to-read favorites currently-reading books-i-ow...10019.000000
7929The I Ching or Book of Changes0.086242to-read favorites currently-reading fiction bo...10022.000000
7930Second Chance Boyfriend (One Week Girlfriend, #2)0.086222to-read favorites currently-reading young-adul...10027.000000
7931Never Go Back (Jack Reacher, #18)0.086220to-read favorites currently-reading fiction bo...10028.000000
7932The Great Influenza: The Story of the Deadlies...0.086215to-read favorites currently-reading books-i-ow...10024.000000
7933The Twelve Tribes of Hattie0.086201to-read favorites currently-reading fiction bo...10028.000000
7934The Blank Slate: The Modern Denial of Human Na...0.086200to-read favorites currently-reading books-i-ow...10021.000000
7935Born on a Blue Day: Inside the Extraordinary M...0.086186to-read favorites currently-reading books-i-ow...10023.000000
7936Flotsam0.086172to-read fantasy favorites currently-reading fi...10011.000000
7937Play (Stage Dive, #2)0.086163to-read favorites currently-reading fiction bo...10026.000000
7938Nightmares and Dreamscapes0.086158to-read fantasy favorites currently-reading fi...10037.000000
7939I Am Not Myself These Days0.086150to-read favorites currently-reading young-adul...10026.000000
7940Mr. Darcy's Diary (Jane Austen Heroes, #1)0.086146to-read favorites currently-reading fiction bo...10028.000000
7941Out of the Dust0.086141to-read favorites currently-reading young-adul...10018.000000
7942Joey Pigza Swallowed the Key (Joey Pigza, #1)0.086122to-read favorites currently-reading young-adul...10017.000000
7943Mine (Real, #2)0.086108to-read favorites currently-reading fiction bo...10030.000000
7944The Tao of Physics: An Exploration of the Para...0.086107to-read favorites currently-reading books-i-ow...10022.000000
7945Taken (Elvis Cole, #15; Joe Pike, #4)0.086051to-read favorites currently-reading fiction bo...10029.000000
7946The Dirty Life: On Farming, Food, and Love0.086047to-read favorites currently-reading books-i-ow...10021.000000
7947The Misanthrope0.086012to-read favorites currently-reading fiction bo...10024.000000
7948The Collectors (Camel Club, #2)0.086001to-read favorites currently-reading fiction bo...10032.000000
7949Millions of Cats0.085988to-read fantasy favorites currently-reading yo...10018.000000
7950Small Sacrifices: A True Story of Passion and ...0.085985to-read favorites currently-reading fiction bo...10024.000000
7951Full Tilt (Full #2)0.085954to-read favorites currently-reading fiction bo...10029.000000
7952Hard Choices0.085924to-read favorites currently-reading books-i-ow...10027.000000
7953Little Red Riding Hood0.085906to-read fantasy favorites currently-reading fi...10015.000000
7954Transmetropolitan, Vol. 5: Lonely City (Transm...0.085903to-read fantasy favorites currently-reading fi...10029.000000
7955Well-Schooled in Murder (Inspector Lynley, #3)0.085901to-read favorites currently-reading fiction bo...10025.000000
7956The Johnstown Flood0.085886to-read favorites currently-reading books-i-ow...10023.000000
7957Ball Four0.085879to-read favorites currently-reading books-i-ow...10029.000000
7958Cape Fear0.085879to-read favorites currently-reading fiction bo...10022.000000
7959Full House (Full #1)0.085865to-read favorites currently-reading fiction bo...10028.000000
7960Discourse on Method0.085864to-read currently-reading fiction books-i-own ...10024.000000
7961The Boy Who Harnessed the Wind: Creating Curre...0.085792to-read favorites currently-reading young-adul...10027.000000
7962Long Day's Journey Into Night0.085775to-read favorites currently-reading fiction bo...10029.000000
7963Hidden Order (Scot Harvath, #12)0.085753to-read favorites currently-reading fiction bo...10028.000000
7964A Severe Mercy: A Story of Faith, Tragedy and ...0.085749to-read favorites currently-reading fiction bo...10031.000000
7965The Firm0.085731to-read favorites currently-reading fiction bo...10035.000000
7966Close Range0.085728to-read favorites currently-reading fiction bo...10026.000000
7967The Onion Field0.085705to-read favorites currently-reading fiction bo...10027.000000
7968Prior Bad Acts (Kovac and Liska, #3)0.085705to-read favorites currently-reading fiction bo...10034.000000
7969Behind the Beautiful Forevers: Life, Death, an...0.085704to-read favorites currently-reading fiction bo...10024.000000
7970The Untethered Soul: The Journey Beyond Yourself0.085698to-read favorites currently-reading books-i-ow...10027.000000
7971The Cat Who Could Read Backwards (Cat Who..., #1)0.085681to-read favorites currently-reading fiction bo...10031.000000
7972The River of Doubt: Theodore Roosevelt's Darke...0.085675to-read favorites currently-reading books-i-ow...10024.000000
7973The Book on the Taboo Against Knowing Who You Are0.085670to-read favorites currently-reading books-i-ow...10025.000000
7974Mile High (Up in the Air, #2)0.085626to-read favorites currently-reading fiction bo...10029.000000
7975One Crazy Summer (Gaither Sisters, #1)0.085622to-read favorites currently-reading young-adul...10017.000000
7976Sacred (Kenzie & Gennaro, #3)0.085571to-read favorites currently-reading fiction bo...10026.000000
7977Redemption (Redemption, #1)0.085508to-read favorites currently-reading fiction bo...10027.000000
7978The Secret of the Unicorn (Tintin, #11)0.085496to-read fantasy favorites currently-reading yo...10024.000000
7979Avoiding Responsibility (Avoiding, #2)0.085490to-read favorites currently-reading young-adul...10026.000000
7980Eyes Wide Open (The Blackstone Affair, #3)0.085478to-read favorites currently-reading fiction bo...10028.000000
7981Dream Man0.085475to-read fantasy favorites currently-reading fi...10028.000000
7982Remember (Redemption, #2)0.085453to-read favorites currently-reading fiction bo...10025.000000
7983Too Much Happiness0.085398to-read favorites currently-reading fiction bo...10034.000000
7984Never Love a Highlander (McCabe Trilogy, #3)0.085381to-read favorites currently-reading fiction bo...10027.000000
7985Orthodoxy0.085381to-read favorites currently-reading books-i-ow...10031.000000
7986The Hare With Amber Eyes: A Family's Century o...0.085349to-read favorites currently-reading fiction bo...10028.000000
7987The Calvin and Hobbes Tenth Anniversary Book0.085343to-read fantasy favorites currently-reading yo...10029.000000
7988Aunt Julia and the Scriptwriter0.085301to-read favorites currently-reading fiction bo...10029.000000
7989Plum Spooky (Stephanie Plum, #14.5)0.085254to-read fantasy favorites currently-reading fi...10025.000000
7990Meditations on First Philosophy0.085254to-read favorites currently-reading books-i-ow...10022.000000
7991Waking Up: A Guide to Spirituality Without Rel...0.085251to-read favorites currently-reading books-i-ow...10025.000000
7992A Child Called \"It\" (Dave Pelzer #1)0.085246to-read favorites currently-reading young-adul...10031.000000
7993The Measure of a Lady0.085230to-read favorites currently-reading fiction bo...10032.000000
7994The High Window (Philip Marlowe, #3)0.085217to-read favorites currently-reading fiction bo...10033.000000
7995Dear Life: Stories0.085184to-read favorites currently-reading fiction bo...10033.000000
7996Interpreter of Maladies0.085164to-read favorites currently-reading fiction bo...10035.000000
7997The Last Boyfriend (Inn BoonsBoro, #2)0.085102to-read fantasy favorites currently-reading fi...10031.000000
7998Daring to Dream (Dream Trilogy, #1)0.085098to-read fantasy favorites currently-reading fi...10036.000000
7999Wave0.085086to-read favorites currently-reading fiction bo...10024.000000
8000The Five Chinese Brothers0.085070to-read fantasy favorites currently-reading fi...10015.000000
8001The Hat0.085055to-read fantasy favorites currently-reading fi...10015.000000
8002Batman: The Dark Knight Returns #10.085052to-read fantasy favorites currently-reading fi...10019.000000
8003The Stinky Cheese Man and Other Fairly Stupid ...0.085042to-read fantasy favorites currently-reading yo...10018.000000
8004Stormy Weather0.085036to-read favorites currently-reading fiction bo...10029.000000
8005Six Days of the Condor0.085034to-read favorites currently-reading fiction bo...10025.000000
8006The Flame and the Flower0.084987to-read favorites currently-reading fiction bo...10032.000000
8007Detroit: An American Autopsy0.084970to-read favorites currently-reading books-i-ow...10020.000000
8008The Devotion of Suspect X0.084912to-read favorites currently-reading fiction bo...10031.000000
8009King of the Wind: The Story of the Godolphin A...0.084909to-read favorites currently-reading young-adul...10025.000000
8010The Messenger (Gabriel Allon, #6)0.084906to-read favorites currently-reading fiction bo...10027.000000
8011Istanbul: Memories and the City0.084895to-read favorites currently-reading fiction bo...10026.000000
8012The Four Agreements: A Practical Guide to Pers...0.084889to-read favorites currently-reading fiction bo...10034.000000
8013Until Trevor (Until, #2)0.084859to-read favorites currently-reading fiction bo...10025.000000
8014The Proposal (The Proposition, #2)0.084827to-read favorites currently-reading fiction bo...10027.000000
8015King (King, #1)0.084824to-read favorites currently-reading fiction bo...10023.000000
8016How We Decide0.084819to-read favorites currently-reading books-i-ow...10022.000000
8017Escape from Camp 14: One Man's Remarkable Odys...0.084810to-read favorites currently-reading young-adul...10026.000000
8018The Divan0.084778to-read favorites currently-reading fiction bo...10018.000000
8019A Kiss for Little Bear (An I Can Read Book) by...0.084764to-read fantasy favorites currently-reading fi...10016.000000
8020A New Earth: Awakening to Your Life's Purpose0.084727to-read favorites currently-reading books-i-ow...10034.000000
8021The One Thing: The Surprisingly Simple Truth B...0.084724to-read favorites currently-reading books-i-ow...10025.000000
8022The Power of Habit: Why We Do What We Do in Li...0.084723to-read favorites currently-reading books-i-ow...10026.000000
8023100 Love Sonnets0.084693to-read favorites fiction books-i-own owned fa...10030.000000
8024Friend-Zoned (Friend-Zoned, #1)0.084668to-read favorites currently-reading fiction ow...10023.000000
8025There are No Children Here: The Story of Two B...0.084639to-read favorites currently-reading fiction bo...10024.000000
8026El túnel0.084616to-read favorites currently-reading fiction bo...10028.000000
8027The Silent Girl (Rizzoli & Isles, #9)0.084593to-read favorites currently-reading fiction bo...10028.000000
8028Paradise (Second Opportunities, #1)0.084575to-read favorites currently-reading fiction bo...10029.000000
8029Rock with Me (With Me in Seattle, #4)0.084568to-read favorites currently-reading fiction bo...10025.000000
8030Same Kind of Different as Me0.084546to-read favorites currently-reading fiction bo...10029.000000
8031Deep Down (Jack Reacher, #16.5)0.084520to-read favorites currently-reading fiction ow...10027.000000
8032Hearts in Darkness (Hearts in Darkness, #1)0.084515to-read favorites currently-reading fiction bo...10026.000000
8033House of M0.084508to-read fantasy favorites currently-reading yo...10027.000000
8034My Booky Wook0.084492to-read favorites currently-reading books-i-ow...10024.000000
8035Dear Zoo: A Lift-the-Flap Book0.084492to-read currently-reading fiction books-i-own ...10019.000000
8036The King of Torts0.084479to-read favorites currently-reading fiction bo...10029.000000
8037Now You See Her0.084466to-read favorites currently-reading fiction bo...10030.000000
8038The Invisible Wall: A Love Story That Broke Ba...0.084450to-read favorites currently-reading fiction bo...10026.000000
8039Black Hole0.084444to-read fantasy favorites young-adult fiction ...10026.000000
8040Chicken Soup for the Soul0.084438to-read favorites currently-reading young-adul...10030.000000
8041The Testament of Mary0.084424to-read favorites currently-reading fiction bo...10030.000000
8042God's Smuggler0.084406to-read favorites currently-reading young-adul...10027.000000
8043Assassination Vacation0.084403to-read favorites currently-reading fiction bo...10025.000000
8044One Shot (Jack Reacher, #9)0.084401to-read favorites currently-reading fiction bo...10034.000000
8045Beauty from Pain (Beauty, #1)0.084356to-read favorites currently-reading fiction bo...10026.000000
8046The Alibi0.084352to-read favorites currently-reading fiction bo...10030.000000
8047You're Never Weird on the Internet (Almost)0.084320to-read favorites currently-reading books-i-ow...10027.000000
8048The Perfect Hope (Inn Boonsboro, #3)0.084318to-read fantasy favorites currently-reading fi...10030.000000
8049A Virtuous Woman0.084309to-read favorites currently-reading fiction bo...10026.000000
8050Until November (Until, #1)0.084252to-read favorites currently-reading fiction bo...10025.000000
8051Cinderella Ate My Daughter: Dispatches from th...0.084251to-read favorites currently-reading books-i-ow...10019.000000
8052The Rainbow Comes and Goes: A Mother and Son O...0.084237to-read favorites currently-reading books-i-ow...10020.000000
8053Whispers0.084214to-read fantasy favorites currently-reading fi...10031.000000
8054Amazing Grace0.084168to-read fantasy favorites currently-reading fi...10013.000000
8055Tao Te Ching0.084158to-read favorites currently-reading fiction fa...10028.000000
8056Into the Darkest Corner0.084148to-read favorites currently-reading fiction ow...10027.000000
8057The Meaning of Marriage: Facing the Complexiti...0.084139to-read favorites currently-reading books-i-ow...10030.000000
8058A Higher Call: An Incredible True Story of Com...0.084112to-read favorites currently-reading books-i-ow...10026.000000
8059Bomb: The Race to Build—and Steal—the Worl...0.084109to-read favorites currently-reading young-adul...10017.000000
8060Broken (Will Trent, #4)0.084089to-read favorites currently-reading fiction bo...10031.000000
8061The Willpower Instinct: How Self-Control Works...0.084061to-read favorites currently-reading books-i-ow...10023.000000
8062Please Stop Laughing at Me... One Woman's Insp...0.084045to-read favorites currently-reading young-adul...10029.000000
8063The Millionaire Mind0.084024to-read favorites currently-reading books-i-ow...10024.000000
8064The Histories0.084008to-read favorites currently-reading fiction bo...10030.000000
8065Politics0.083990to-read favorites currently-reading books-i-ow...10022.000000
8066The Everything Store: Jeff Bezos and the Age o...0.083960to-read favorites currently-reading books-i-ow...10026.000000
8067Caps for Sale: A Tale of a Peddler, Some Monke...0.083958to-read favorites currently-reading fiction bo...10016.000000
8068The Monster of Florence0.083940to-read favorites currently-reading fiction bo...10027.000000
8069Fatal Vision0.083939to-read favorites currently-reading fiction bo...10024.000000
8070The Days Are Just Packed: A Calvin and Hobbes ...0.083928to-read fantasy favorites currently-reading yo...10031.000000
8071Price of a Kiss (Forbidden Men, #1)0.083912to-read favorites currently-reading young-adul...10023.000000
8072The One You Love (Emma Holden Suspense Mystery...0.083904to-read favorites currently-reading fiction bo...10026.000000
8073Maus II: A Survivor's Tale: And Here My Troubl...0.083897to-read favorites currently-reading young-adul...10029.000000
8074Alexander and the Terrible, Horrible, No Good,...0.083861to-read favorites currently-reading young-adul...10016.000000
8075Rival (Fall Away, #2)0.083856to-read favorites currently-reading young-adul...10025.000000
8076The Man Who Listens to Horses0.083855to-read favorites currently-reading fiction bo...10019.000000
8077The Broker0.083852to-read favorites currently-reading fiction bo...10033.000000
8078The Mephisto Club (Rizzoli & Isles, #6)0.083786to-read favorites currently-reading fiction bo...10031.000000
8079The Art of Thinking Clearly0.083781to-read favorites currently-reading books-i-ow...10024.000000
8080Without Fail (Jack Reacher, #6)0.083778to-read favorites currently-reading fiction bo...10030.000000
8081Don't Sweat the Small Stuff ... and it's all s...0.083773to-read currently-reading books-i-own owned ow...10028.000000
8082Boundaries: When to Say Yes, How to Say No to ...0.083760to-read favorites currently-reading books-i-ow...10017.000000
8083Carter Reed (Carter Reed, #1)0.083749to-read favorites currently-reading young-adul...10025.000000
8084Just One Look0.083726to-read favorites currently-reading fiction bo...10029.000000
8085The Upside of Irrationality: The Unexpected Be...0.083696to-read favorites currently-reading books-i-ow...10021.000000
8086Wit0.083680to-read favorites currently-reading fiction bo...10024.000000
8087Band of Brothers: E Company, 506th Regiment, 1...0.083677to-read favorites currently-reading fiction bo...10033.000000
8088Krakatoa: The Day the World Exploded0.083671to-read favorites currently-reading books-i-ow...10023.000000
8089All-Star Superman, Vol. 20.083654to-read fantasy favorites currently-reading yo...10024.000000
8090Maniac Magee0.083651to-read favorites currently-reading young-adul...10024.000000
8091Planetary, Volume 1: All Over the World and Ot...0.083649to-read fantasy favorites currently-reading fi...10023.000000
8092god is Not Great: How Religion Poisons Everything0.083648to-read favorites currently-reading books-i-ow...10030.000000
8093Sea Swept (Chesapeake Bay Saga, #1)0.083616to-read favorites currently-reading fiction bo...10034.000000
8094Almost Heaven (Sequels, #3)0.083615to-read favorites currently-reading fiction bo...10030.000000
8095Tripwire (Jack Reacher, #3)0.083607to-read favorites currently-reading fiction bo...10027.000000
8096The Incredible Hulk: Planet Hulk0.083605to-read fantasy favorites currently-reading fi...10023.000000
8097The Street Lawyer0.083590to-read favorites currently-reading fiction bo...10033.000000
8098Sweet Tooth, Volume 1: Out of the Deep Woods0.083540to-read fantasy favorites currently-reading yo...10022.000000
8099Devoured (Devoured, #1)0.083529to-read favorites currently-reading young-adul...10026.000000
8100Five Dialogues: Euthyphro, Apology, Crito, Men...0.083505to-read favorites currently-reading fiction bo...10024.000000
8101You've Been Warned0.083482to-read fantasy favorites currently-reading fi...10035.000000
8102Spider Bones (Temperance Brennan, #13)0.083424to-read favorites currently-reading fiction bo...10030.000000
8103The Oresteia (Ορέστεια, #1-3)0.083403to-read fantasy favorites currently-reading fi...10025.000000
8104The Whole Truth (A. Shaw, #1)0.083381to-read currently-reading fiction books-i-own ...10029.000000
8105Crazy For You0.083372to-read favorites currently-reading fiction bo...10028.000000
8106Thinking, Fast and Slow0.083371to-read favorites currently-reading books-i-ow...10026.000000
8107Cage (Corps Security, #2)0.083356to-read favorites currently-reading books-i-ow...10024.000000
8108Crashed (Driven, #3)0.083322to-read favorites currently-reading fiction bo...10027.000000
8109Night Shift0.083314to-read fantasy favorites currently-reading fi...10036.000000
8110Oogy: The Dog Only a Family Could Love0.083313to-read favorites currently-reading young-adul...10031.000000
8111I Want My Hat Back0.083301to-read fantasy favorites currently-reading fi...10016.000000
8112The Wall of Winnipeg and Me0.083297to-read favorites currently-reading fiction fa...10022.000000
8113The Lincoln Lawyer (Mickey Haller, #1; Harry B...0.083265to-read favorites currently-reading fiction bo...10033.000000
8114Mortality0.083254to-read favorites currently-reading books-i-ow...10026.000000
8115The Executioner's Song0.083254to-read favorites currently-reading fiction bo...10025.000000
8116Hawkeye, Volume 2: Little Hits0.083251to-read fantasy favorites currently-reading yo...10025.000000
8117Transmetropolitan, Vol. 4: The New Scum (Trans...0.083244to-read fantasy favorites currently-reading fi...10026.000000
8118The Day Jimmy's Boa Ate the Wash0.083239to-read fantasy favorites currently-reading fi...10018.000000
8119Miss Rumphius0.083112to-read favorites currently-reading young-adul...10019.000000
8120Man and His Symbols0.083104to-read favorites currently-reading books-i-ow...10022.000000
8121Kisses from Katie: A Story of Relentless Love ...0.083070to-read favorites currently-reading young-adul...10029.000000
8122Far from the Tree: Parents, Children, and the ...0.083065to-read favorites currently-reading books-i-ow...10025.000000
8123Democracy in America0.083065to-read favorites currently-reading fiction bo...10023.000000
8124Self Matters: Creating Your Life from the Insi...0.083056to-read favorites currently-reading books-i-ow...10018.000000
8125The Hungry Tide0.083013to-read favorites currently-reading fiction bo...10032.000000
8126A Dark Lure0.082982to-read favorites currently-reading fiction bo...10021.000000
8127Asterios Polyp0.082973to-read fantasy favorites currently-reading fi...10027.000000
8128The Alexandria Link (Cotton Malone, #2)0.082966to-read favorites currently-reading fiction bo...10032.000000
8129Back Roads0.082965to-read favorites currently-reading young-adul...10028.000000
8130The Story of a Shipwrecked Sailor0.082953to-read favorites currently-reading fiction bo...10029.000000
8131Fools Rush In (Weddings by Bella, #1)0.082908to-read favorites currently-reading young-adul...10022.000000
8132The Complete Poems 1927-19790.082903to-read favorites currently-reading fiction bo...10024.000000
8133The Keeper of Lost Causes (Department Q, #1)0.082903to-read favorites currently-reading fiction bo...10030.000000
8134Book of Mormon, Doctrine and Covenants, Pearl ...0.082900to-read fantasy favorites currently-reading yo...10028.000000
8135At Peace (The 'Burg, #2)0.082869to-read favorites currently-reading fiction bo...10027.000000
8136Forever Black (Forever, #1)0.082864to-read favorites currently-reading fiction bo...10025.000000
8137Shadow Fires0.082852to-read fantasy favorites currently-reading fi...10030.000000
8138Drift: The Unmooring of American Military Power0.082849to-read favorites currently-reading books-i-ow...10023.000000
8139Can Love Happen Twice?0.082817to-read favorites currently-reading young-adul...10023.000000
8140The World Is Flat: A Brief History of the Twen...0.082809to-read favorites currently-reading books-i-ow...10026.000000
8141The Mixed-Up Chameleon0.082802to-read fantasy favorites currently-reading fi...10015.000000
8142The Sinner (Rizzoli & Isles, #3)0.082791to-read favorites currently-reading fiction bo...10030.000000
8143Convicted (Consequences, #3)0.082789to-read favorites currently-reading fiction bo...10027.000000
8144Plum Lucky (Stephanie Plum, #13.5)0.082741to-read fantasy favorites currently-reading fi...10029.000000
8145The Day the Crayons Quit0.082719to-read fantasy favorites currently-reading fi...10018.000000
8146Superman: Birthright0.082715to-read fantasy favorites currently-reading yo...10027.000000
8147Runaways, Vol. 1: Pride and Joy (Runaways, #1)0.082703to-read fantasy favorites currently-reading yo...10024.000000
8148Lots of Candles, Plenty of Cake0.082702to-read favorites currently-reading fiction bo...10022.000000
8149Georgiana: Duchess of Devonshire0.082692to-read favorites currently-reading fiction bo...10022.000000
8150Feel the Fear and Do It Anyway0.082641to-read favorites currently-reading books-i-ow...10025.000000
8151Utilitarianism0.082633to-read favorites currently-reading books-i-ow...10024.000000
8152An Innocent Client0.082626to-read favorites currently-reading fiction bo...10022.000000
8153The Monkey's Raincoat (Elvis Cole, #1)0.082621to-read favorites currently-reading fiction bo...10025.000000
8154Where Are You Now?0.082606to-read favorites currently-reading fiction bo...10030.000000
8155Unfamiliar Fishes0.082563to-read favorites currently-reading fiction bo...10024.000000
8156Birdman (Jack Caffery, #1)0.082560to-read favorites currently-reading fiction bo...10030.000000
8157The Cross of Lead (Crispin, #1)0.082557to-read fantasy favorites currently-reading yo...10023.000000
8158The One That Got Away0.082540to-read favorites currently-reading fiction bo...10021.000000
8159My Fair Lazy: One Reality Television Addict's ...0.082531to-read favorites currently-reading fiction bo...10023.000000
8160Love's Executioner and Other Tales of Psychoth...0.082481to-read favorites currently-reading fiction bo...10024.000000
8161Magical Thinking: True Stories0.082478to-read favorites currently-reading fiction bo...10031.000000
8162Calling Doctor Amelia Bedelia0.082457to-read favorites currently-reading fiction bo...10014.000000
8163The Search (Eve Duncan, #3)0.082396to-read favorites currently-reading fiction bo...10026.000000
8164The 4-Hour Body: An Uncommon Guide to Rapid Fa...0.082384to-read favorites currently-reading fiction bo...10028.000000
8165Hand, Hand, Fingers, Thumb0.082375to-read favorites currently-reading fiction bo...10019.000000
8166Onward: How Starbucks Fought for Its Life with...0.082361to-read favorites currently-reading books-i-ow...10028.000000
8167Split Second (Sean King & Michelle Maxwell, #1)0.082357to-read favorites currently-reading fiction bo...10027.000000
8168The Weight of Glory0.082354to-read favorites currently-reading fiction bo...10033.000000
8169The Five Love Languages: How to Express Heartf...0.082352to-read favorites currently-reading books-i-ow...10029.000000
8170Seduction and Snacks (Chocolate Lovers, #1)0.082345to-read favorites currently-reading fiction bo...10025.000000
8171It's a Magical World: A Calvin and Hobbes Coll...0.082286to-read fantasy favorites currently-reading yo...10030.000000
8172Alone (Detective D.D. Warren, #1)0.082260to-read favorites currently-reading fiction bo...10029.000000
8173Smile0.082249to-read favorites currently-reading young-adul...10021.000000
8174The Liars' Club0.082233to-read favorites currently-reading young-adul...10031.000000
8175The Mermaids Singing (Tony Hill & Carol Jordan...0.082231to-read favorites currently-reading fiction bo...10031.000000
8176The 7 Habits of Highly Effective People: Power...0.082216to-read favorites currently-reading books-i-ow...10033.000000
8177She Said Yes: The Unlikely Martyrdom of Cassie...0.082205to-read favorites currently-reading young-adul...10026.000000
8178The Greatest Generation0.082200to-read favorites currently-reading fiction bo...10028.000000
8179Avatar Volume 1: The Last Airbender (Avatar #1)0.082178to-read fantasy favorites currently-reading yo...10016.000000
8180A is for Alibi (Kinsey Millhone, #1)0.082152to-read favorites currently-reading fiction bo...10028.000000
8181Hotel du Lac0.082137to-read favorites currently-reading fiction bo...10032.000000
8182Gone, Baby, Gone (Kenzie & Gennaro, #4)0.082116to-read favorites currently-reading fiction bo...10033.000000
8183Strega Nona0.082116to-read fantasy favorites currently-reading fi...10018.000000
8184Alert (Michael Bennett, #8)0.082107to-read favorites currently-reading fiction bo...10024.000000
8185The Wrong Side of Goodbye (Harry Bosch, #21; H...0.082084to-read favorites currently-reading fiction bo...10023.000000
8186The House of Thunder0.082082to-read fantasy favorites currently-reading fi...10031.000000
8187Moonlight Becomes You0.082073to-read favorites currently-reading fiction bo...10030.000000
8188In the Night Kitchen0.082020to-read fantasy favorites currently-reading fi...10017.000000
8189Back Spin (Myron Bolitar #4)0.082005to-read favorites currently-reading fiction bo...10025.000000
819061 Hours (Jack Reacher, #14)0.082005to-read favorites currently-reading fiction bo...10033.000000
8191Llama Llama Mad at Mama0.082000to-read fantasy favorites currently-reading fi...10016.000000
8192Hawkeye, Volume 1: My Life as a Weapon0.081995to-read fantasy favorites currently-reading yo...10030.000000
8193Found in You (Fixed, #2)0.081976to-read favorites currently-reading fiction bo...10026.000000
8194Playing for Keeps (Neighbor from Hell, #1)0.081958to-read favorites currently-reading fiction bo...10024.000000
8195Gone for Good0.081952to-read favorites currently-reading fiction bo...10033.000000
8196Stone Cold (Camel Club, #3)0.081951to-read favorites currently-reading fiction bo...10030.000000
8197The Partly Cloudy Patriot0.081951to-read favorites currently-reading fiction bo...10025.000000
8198The Neighbor (Detective D.D. Warren, #3)0.081921to-read favorites currently-reading fiction bo...10029.000000
8199Half the Sky: Turning Oppression into Opportun...0.081920to-read favorites currently-reading books-i-ow...10022.000000
8200Night Owl (Night Owl, #1)0.081911to-read favorites currently-reading fiction bo...10023.000000
8201Three Times Lucky (Tupelo Landing, #1)0.081883to-read favorites currently-reading young-adul...10019.000000
8202The Perfect Husband (Quincy & Rainie, #1)0.081838to-read favorites currently-reading fiction bo...10029.000000
8203A Cry In The Night0.081822to-read favorites currently-reading fiction bo...10032.000000
8204The Innocent Man: Murder and Injustice in a Sm...0.081808to-read favorites currently-reading fiction bo...10028.000000
8205The Tenth Justice0.081796to-read favorites currently-reading fiction bo...10030.000000
8206The Analects0.081795to-read favorites currently-reading fiction bo...10022.000000
8207MWF Seeking BFF: My Yearlong Search For A New ...0.081789to-read favorites currently-reading fiction bo...10021.000000
8208Neighbor Dearest0.081780to-read favorites currently-reading fiction ow...10020.000000
8209Berserk, Vol. 1 (Berserk, #1)0.081774to-read fantasy favorites currently-reading fi...10026.000000
8210Scarpetta (Kay Scarpetta, #16)0.081768to-read favorites currently-reading fiction bo...10031.000000
8211Bury My Heart at Wounded Knee: An Indian Histo...0.081766to-read favorites currently-reading fiction bo...10033.000000
8212Tyrant (King, #2)0.081738to-read favorites currently-reading fiction bo...10021.000000
8213The Google Story: Inside the Hottest Business,...0.081727to-read favorites currently-reading books-i-ow...10023.000000
8214The First Commandment (Scot Harvath, #6)0.081695to-read favorites currently-reading fiction bo...10028.000000
8215Void Moon0.081693to-read favorites currently-reading fiction bo...10029.000000
8216The Bronze Bow0.081678to-read favorites currently-reading young-adul...10027.000000
8217The Moral Landscape: How Science Can Determine...0.081677to-read favorites currently-reading books-i-ow...10025.000000
8218The Secret River0.081644to-read favorites currently-reading fiction bo...10030.000000
8219Mindset: The New Psychology of Success0.081637to-read favorites currently-reading books-i-ow...10024.000000
8220The Thing Around Your Neck0.081574to-read favorites currently-reading fiction bo...10025.000000
8221Jesus Freaks: Stories of Those Who Stood for J...0.081557to-read favorites currently-reading young-adul...10027.000000
8222Lumberjanes, Vol. 1: Beware the Kitten Holy0.081556to-read fantasy favorites currently-reading yo...10021.000000
8223Ricochet0.081556to-read favorites currently-reading fiction bo...10029.000000
8224Hideaway0.081524to-read fantasy favorites currently-reading fi...10030.000000
8225The Rainmaker0.081509to-read favorites currently-reading fiction bo...10032.000000
8226Two for the Dough (Stephanie Plum, #2)0.081499to-read favorites currently-reading fiction bo...10030.000000
8227The Devil's Punchbowl0.081497to-read favorites currently-reading fiction ow...10030.000000
8228I'm OK - You're OK0.081487to-read favorites currently-reading books-i-ow...10020.000000
8229Deliver Us from Evil (A. Shaw, #2)0.081485to-read favorites currently-reading fiction bo...10033.000000
8230Flaggermusmannen (Harry Hole, #1)0.081478to-read favorites currently-reading fiction bo...10032.000000
8231Plum Lovin' (Stephanie Plum, #12.5)0.081477to-read fantasy favorites currently-reading fi...10029.000000
8232The Girl with the Lower Back Tattoo0.081434to-read favorites currently-reading books-i-ow...10022.000000
8233Jamberry0.081431to-read fantasy favorites currently-reading fi...10016.000000
8234Without You, There Is No Us: My Time with the ...0.081431to-read favorites currently-reading books-i-ow...10021.000000
8235The Checklist Manifesto: How to Get Things Right0.081398to-read favorites currently-reading books-i-ow...10021.000000
8236Girl in a Band0.081387to-read favorites currently-reading books-i-ow...10022.000000
8237How to Tell If Your Cat Is Plotting to Kill You0.081364to-read favorites currently-reading fiction bo...10026.000000
8238Absolute Fear (New Orleans, #4)0.081348to-read favorites currently-reading fiction bo...10029.000000
8239Eileen0.081345to-read favorites currently-reading fiction bo...10026.000000
8240Jewel0.081320to-read favorites currently-reading fiction bo...10027.000000
824117760.081310to-read favorites currently-reading fiction bo...10031.000000
8242The Apprentice (Rizzoli & Isles, #2)0.081287to-read favorites currently-reading fiction bo...10030.000000
8243The Very Busy Spider0.081276to-read fantasy favorites currently-reading fi...10016.000000
8244I Am America (And So Can You!)0.081247to-read favorites fiction books-i-own owned ow...10026.000000
8245Growing Up Amish0.081239to-read favorites currently-reading books-i-ow...10022.000000
8246Pursuit of Honor (Mitch Rapp, #12)0.081219to-read favorites currently-reading fiction bo...10031.000000
8247Fixed on You (Fixed, #1)0.081208to-read favorites currently-reading fiction bo...10026.000000
8248The Final Detail (Myron Bolitar #6)0.081202to-read favorites currently-reading fiction bo...10028.000000
8249The Tipping Point: How Little Things Can Make ...0.081198to-read favorites currently-reading fiction bo...10029.000000
8250Devil in a Blue Dress (Easy Rawlins, #1)0.081189to-read favorites currently-reading fiction bo...10030.000000
8251La tregua0.081173to-read favorites currently-reading fiction bo...10029.000000
8252In Flight (Up in the Air, #1)0.081171to-read favorites currently-reading fiction bo...10028.000000
8253Discourse on Method and Meditations on First P...0.081158to-read favorites currently-reading books-i-ow...10024.000000
8254The School of Essential Ingredients0.081157to-read favorites fiction books-i-own owned se...10031.000000
8255Cross Bones (Temperance Brennan, #8)0.081140to-read favorites currently-reading fiction bo...10032.000000
8256Little Princes: One Man's Promise to Bring Hom...0.081139to-read favorites currently-reading fiction bo...10028.000000
8257Indelible (Grant County, #4)0.081122to-read favorites currently-reading fiction bo...10032.000000
8258Belly Laughs: The Naked Truth About Pregnancy ...0.081116to-read favorites currently-reading books-i-ow...10021.000000
8259Motor Mouth (Alex Barnaby #2)0.081088to-read favorites currently-reading fiction bo...10029.000000
8260Narrative of the Life of Frederick Douglass0.081070to-read favorites currently-reading young-adul...10033.000000
8261Blue Nights0.081043to-read favorites currently-reading fiction bo...10027.000000
8262Justice: What's the Right Thing to Do?0.081031to-read favorites currently-reading books-i-ow...10024.000000
8263Women, Food and God: An Unexpected Path to Alm...0.080965to-read currently-reading books-i-own owned ow...10023.000000
8264Akira, Vol. 10.080902to-read fantasy favorites currently-reading yo...10027.000000
8265My Lobotomy0.080894to-read favorites currently-reading books-i-ow...10024.000000
8266Inside, Outside, Upside Down (Berenstain Bears...0.080882to-read favorites currently-reading fiction bo...10016.000000
8267Catherine the Great: Portrait of a Woman0.080858to-read favorites currently-reading fiction bo...10027.000000
8268Asterix the Gaul (Asterix, #1)0.080853to-read fantasy favorites currently-reading yo...10026.000000
8269Crisis on Infinite Earths0.080853to-read fantasy favorites currently-reading yo...10027.000000
8270The Billionaire Wins the Game (Billionaire Bac...0.080848to-read favorites currently-reading fiction bo...10024.000000
8271Trouble in Mudbug (Ghost-in-Law, #1)0.080832to-read fantasy favorites currently-reading fi...10024.000000
8272A Fish Out of Water0.080790to-read favorites currently-reading fiction bo...10016.000000
8273Girls' Night In0.080761to-read favorites currently-reading fiction bo...10020.000000
8274Games People Play0.080735to-read favorites currently-reading books-i-ow...10028.000000
8275If You Ask Me (And of Course You Won't)0.080729to-read favorites currently-reading fiction bo...10020.000000
8276Silken Prey (Lucas Davenport, #23)0.080728to-read favorites currently-reading fiction bo...10029.000000
8277L.A. Confidential (L.A. Quartet, #3)0.080703to-read favorites currently-reading fiction bo...10029.000000
8278Bones Are Forever (Temperance Brennan, #15)0.080687to-read favorites currently-reading fiction bo...10027.000000
8279The Tale of Three Trees0.080685to-read fantasy favorites currently-reading yo...10018.000000
8280Shiloh (Shiloh, #1)0.080679to-read favorites currently-reading young-adul...10024.000000
8281Total Control0.080678to-read favorites currently-reading fiction bo...10032.000000
8282Are You There, Vodka? It's Me, Chelsea0.080667to-read favorites currently-reading fiction bo...10028.000000
8283The Case for Faith: A Journalist Investigates ...0.080584to-read favorites currently-reading young-adul...10029.000000
8284Smoke Screen0.080576to-read favorites currently-reading fiction bo...10028.000000
8285Rudolph the Red-Nosed Reindeer0.080543to-read fantasy favorites currently-reading yo...10018.000000
8286Olivia0.080543to-read fantasy favorites currently-reading fi...10014.000000
8287The Feminine Mystique0.080539to-read favorites currently-reading books-i-ow...10029.000000
8288Merle's Door: Lessons from a Freethinking Dog0.080535to-read favorites currently-reading fiction bo...10030.000000
8289Let's Explore Diabetes with Owls0.080524to-read favorites fiction books-i-own owned ow...10024.000000
8290Dear Theo0.080501to-read favorites currently-reading fiction bo...10026.000000
8291The Sculptor0.080474to-read fantasy favorites currently-reading yo...10023.000000
8292Journals0.080465to-read favorites currently-reading books-i-ow...10022.000000
8293Maximum City: Bombay Lost and Found0.080402to-read favorites currently-reading fiction bo...10028.000000
8294Civil War: A Marvel Comics Event0.080366to-read fantasy favorites currently-reading fi...10030.000000
8295Travesuras de la niña mala0.080358to-read favorites currently-reading fiction bo...10031.000000
8296Einstein: His Life and Universe0.080355to-read favorites currently-reading books-i-ow...10031.000000
8297The Dressmaker of Khair Khana: Five Sisters, O...0.080301to-read favorites currently-reading fiction bo...10026.000000
8298The Four Loves0.080295to-read favorites currently-reading books-i-ow...10025.000000
8299Proof of Heaven: A Neurosurgeon's Journey into...0.080283to-read favorites currently-reading fiction bo...10027.000000
8300Bright Lights, Big Ass: A Self-Indulgent, Surl...0.080276to-read favorites currently-reading fiction bo...10028.000000
8301All-Star Superman, Vol. 10.080248to-read fantasy favorites currently-reading fi...10026.000000
8302Deeper Than the Dead (Oak Knoll, #1)0.080242to-read favorites currently-reading fiction bo...10028.000000
8303Kabul Beauty School: An American Woman Goes Be...0.080241to-read favorites currently-reading fiction bo...10023.000000
8304Lit0.080237to-read favorites currently-reading fiction bo...10027.000000
8305FRUiTS0.080231to-read favorites currently-reading books-i-ow...10012.000000
8306The Success Principles: How to Get from Where ...0.080213to-read favorites currently-reading books-i-ow...10024.000000
8307Sarah, Plain and Tall (Sarah, Plain and Tall, #1)0.080208to-read favorites currently-reading young-adul...10022.000000
8308Command Authority (Jack Ryan Universe, #16)0.080189to-read favorites currently-reading fiction bo...10030.000000
8309Gifted Hands: The Ben Carson Story0.080183to-read favorites currently-reading young-adul...10027.000000
8310Homicidal Psycho Jungle Cat: A Calvin and Hobb...0.080136to-read fantasy favorites currently-reading yo...10029.000000
8311Evicted: Poverty and Profit in the American City0.080133to-read favorites currently-reading books-i-ow...10019.000000
8312To Rise Again at a Decent Hour0.080090to-read favorites fiction books-i-own owned ow...10030.000000
8313Vinegar Hill0.080087to-read favorites currently-reading fiction bo...10025.000000
8314Blue Dahlia (In the Garden, #1)0.080074to-read fantasy favorites currently-reading fi...10033.000000
8315Brain Rules: 12 Principles for Surviving and T...0.080028to-read favorites currently-reading books-i-ow...10025.000000
8316My Beloved World0.080027to-read favorites currently-reading books-i-ow...10022.000000
8317Bossypants0.080023to-read favorites currently-reading fiction bo...10025.000000
8318The Umbrella Academy, Vol. 1: The Apocalypse S...0.079996to-read fantasy favorites currently-reading yo...10028.000000
8319Pilgrim at Tinker Creek0.079978to-read favorites currently-reading fiction bo...10031.000000
8320The Rise and Fall of the Third Reich: A Histor...0.079974to-read favorites currently-reading books-i-ow...10030.000000
8321Hitch-22: A Memoir0.079949to-read favorites currently-reading fiction bo...10027.000000
8322X-Men: The Dark Phoenix Saga0.079925to-read fantasy favorites currently-reading yo...10030.000000
8323Remember Me0.079910to-read favorites currently-reading fiction bo...10026.000000
8324The Millionaire Next Door: The Surprising Secr...0.079892to-read favorites currently-reading books-i-ow...10026.000000
8325The Face Of Deception (Eve Duncan, #1)0.079886to-read favorites currently-reading fiction bo...10030.000000
832630 Days of Night, Vol. 10.079870to-read fantasy favorites currently-reading fi...10024.000000
8327Daily Rituals: How Artists Work0.079856to-read favorites currently-reading books-i-ow...10023.000000
8328Your Best Life Now: 7 Steps to Living at Your ...0.079850to-read favorites currently-reading books-i-ow...10026.000000
8329Body Movers (Body Movers, #1)0.079843to-read favorites currently-reading fiction bo...10023.000000
8330No god but God: The Origins, Evolution and Fut...0.079815to-read favorites currently-reading fiction bo...10028.000000
8331The Book with No Pictures0.079776to-read favorites currently-reading fiction bo...10018.000000
8332Death du Jour (Temperance Brennan, #2)0.079770to-read favorites currently-reading fiction bo...10032.000000
8333It Ain't Me, Babe (Hades Hangmen, #1)0.079770to-read favorites currently-reading fiction bo...10020.000000
8334Princess: A True Story of Life Behind the Veil...0.079749to-read favorites currently-reading fiction bo...10028.000000
8335Friends and Lovers0.079736to-read favorites currently-reading fiction bo...10017.000000
8336Triptych (Will Trent, #1)0.079730to-read favorites currently-reading fiction bo...10031.000000
8337Love Warrior0.079726to-read favorites currently-reading fiction bo...10021.000000
8338Sex Criminals, Vol. 1: One Weird Trick0.079726to-read fantasy favorites currently-reading fi...10026.000000
8339Wrong (Wrong, #1)0.079692to-read favorites currently-reading young-adul...10023.000000
8340NYPD Red 2 (NYPD Red, #2)0.079675to-read favorites currently-reading fiction bo...10030.000000
8341The Little House0.079664to-read fantasy favorites currently-reading fi...10016.000000
8342The Rest Is Noise: Listening to the Twentieth ...0.079651to-read favorites currently-reading books-i-ow...10024.000000
8343The Secret Servant (Gabriel Allon, #7)0.079650to-read favorites currently-reading fiction bo...10030.000000
8344Truce (Neighbor from Hell, #4)0.079647to-read favorites currently-reading fiction bo...10025.000000
8345Runaway0.079644to-read favorites currently-reading fiction bo...10035.000000
8346A Long Way Home0.079643to-read favorites currently-reading fiction bo...10026.000000
8347The Worst Hard Time: The Untold Story of Those...0.079607to-read favorites currently-reading fiction bo...10027.000000
8348The Element: How Finding Your Passion Changes ...0.079599to-read favorites currently-reading books-i-ow...10025.000000
8349Still Foolin' 'Em: Where I've Been, Where I'm ...0.079573to-read favorites fiction books-i-own owned de...10022.000000
8350Flash Boys: A Wall Street Revolt0.079562to-read favorites currently-reading fiction bo...10026.000000
8351Once and Always (Sequels, #1)0.079552to-read favorites currently-reading fiction bo...10028.000000
8352Wrong Bed, Right Guy (Come Undone, #1)0.079540to-read favorites currently-reading fiction bo...10026.000000
8353If You Give a Pig a Party0.079537to-read fantasy favorites currently-reading fi...10016.000000
8354Deal Breaker (Myron Bolitar #1)0.079534to-read favorites currently-reading fiction bo...10029.000000
8355The Bully Pulpit: Theodore Roosevelt, William ...0.079521to-read favorites currently-reading books-i-ow...10024.000000
8356Talent is Overrated: What Really Separates Wor...0.079514to-read favorites currently-reading books-i-ow...10019.000000
8357Brown Bear, Brown Bear, What Do You See?0.079513to-read fantasy favorites currently-reading fi...10015.000000
8358Beautiful Boy: A Father's Journey Through His ...0.079503to-read favorites currently-reading young-adul...10026.000000
8359Scott Pilgrim, Volume 3: Scott Pilgrim & The I...0.079493to-read fantasy favorites currently-reading yo...10030.000000
8360Quiet: The Power of Introverts in a World That...0.079467to-read currently-reading books-i-own owned fa...10021.000000
8361Hope to Die (Alex Cross, #22)0.079466to-read favorites currently-reading fiction bo...10028.000000
8362Manhunt: The 12-Day Chase for Lincoln's Killer0.079441to-read favorites currently-reading fiction bo...10028.000000
8363Born to Run0.079410to-read favorites currently-reading books-i-ow...10024.000000
8364Port Mortuary (Kay Scarpetta, #18)0.079409to-read favorites currently-reading fiction bo...10030.000000
8365Tribute0.079401to-read favorites currently-reading fiction bo...10031.000000
8366The Five Love Languages of Children0.079392to-read favorites currently-reading books-i-ow...10025.000000
8367Batman: Year One0.079376to-read fantasy favorites currently-reading yo...10031.000000
8368Maus I: A Survivor's Tale: My Father Bleeds Hi...0.079360to-read favorites currently-reading young-adul...10027.000000
8369Anti-Stepbrother0.079325to-read favorites currently-reading young-adul...10020.000000
8370Горе от ума0.079312to-read favorites currently-reading fiction bo...10015.000000
8371True Compass: A Memoir0.079296to-read favorites currently-reading books-i-ow...10021.000000
8372The Absent One (Department Q, #2)0.079268to-read favorites currently-reading fiction bo...10026.000000
8373SantaLand Diaries0.079264to-read favorites currently-reading fiction bo...10024.000000
8374Many Lives, Many Masters: The True Story of a ...0.079260to-read favorites currently-reading fiction bo...10026.000000
8375Separation of Power (Mitch Rapp, #5)0.079260to-read favorites currently-reading fiction bo...10032.000000
8376Tractatus Logico-Philosophicus0.079247to-read favorites currently-reading books-i-ow...10023.000000
8377The Undercover Economist0.079220to-read favorites currently-reading fiction bo...10028.000000
8378Metro Girl (Alex Barnaby, #1)0.079198to-read favorites currently-reading fiction bo...10029.000000
8379A Sand County Almanac and Sketches Here and There0.079194to-read favorites currently-reading fiction bo...10024.000000
8380Vanish (Rizzoli & Isles, #5)0.079183to-read favorites currently-reading fiction bo...10031.000000
8381All Souls: A Family Story from Southie0.079160to-read favorites currently-reading books-i-ow...10024.000000
8382The Stories of Eva Luna0.079132to-read fantasy favorites currently-reading fi...10028.000000
8383The Nine: Inside the Secret World of the Supre...0.079124to-read favorites currently-reading fiction bo...10022.000000
8384Through My Eyes0.079120to-read favorites currently-reading young-adul...10024.000000
8385The Other Wes Moore: One Name, Two Fates0.079119to-read favorites currently-reading young-adul...10022.000000
8386Dexter Is Delicious (Dexter, #5)0.079113to-read favorites currently-reading fiction bo...10027.000000
8387The Argonauts0.079102to-read favorites currently-reading fiction bo...10021.000000
8388Daun Yang Jatuh Tak Pernah Membenci Angin0.079054to-read favorites currently-reading young-adul...10015.000000
8389Proof0.079040to-read favorites currently-reading fiction bo...10023.000000
8390Until You (Westmoreland, #3)0.079009to-read favorites currently-reading fiction bo...10032.000000
8391Dexter By Design (Dexter, #4)0.078961to-read favorites currently-reading fiction bo...10028.000000
8392The Obsession0.078941to-read favorites currently-reading fiction bo...10027.000000
8393The Runaway Jury0.078930to-read favorites currently-reading fiction bo...10034.000000
8394Protect and Defend (Mitch Rapp, #10)0.078927to-read favorites currently-reading fiction bo...10031.000000
83957: An Experimental Mutiny Against Excess0.078908to-read favorites currently-reading books-i-ow...10020.000000
8396Stumbling on Happiness0.078901to-read favorites currently-reading books-i-ow...10022.000000
8397Consequences (Consequences, #1)0.078884to-read favorites currently-reading fiction bo...10025.000000
8398Truth (Consequences, #2)0.078861to-read favorites currently-reading fiction bo...10026.000000
8399Hillbilly Elegy: A Memoir of a Family and Cult...0.078831to-read favorites currently-reading fiction bo...10019.000000
8400Storm of the Century: An Original Screenplay0.078828to-read fantasy favorites currently-reading fi...10030.000000
8401The Big Nowhere (L.A. Quartet, #2)0.078825to-read favorites currently-reading fiction bo...10027.000000
8402C is for Corpse (Kinsey Millhone, #3)0.078821to-read favorites currently-reading fiction bo...10030.000000
8403Disappearing Acts0.078818to-read favorites currently-reading fiction bo...10022.000000
8404The Death of Superman0.078795to-read fantasy favorites currently-reading yo...10026.000000
8405Q is for Quarry (Kinsey Millhone, #17)0.078789to-read favorites currently-reading fiction bo...10030.000000
8406What Looks Like Crazy on an Ordinary Day (Idle...0.078784to-read favorites currently-reading fiction bo...10027.000000
8407Deep (Stage Dive, #4)0.078733to-read favorites currently-reading fiction bo...10023.000000
8408The Hidden Child (Patrik Hedström, #5)0.078733to-read favorites currently-reading fiction bo...10029.000000
8409Independence Day0.078725to-read favorites currently-reading fiction bo...10038.000000
8410The Next Accident (Quincy & Rainie, #3)0.078716to-read favorites currently-reading fiction bo...10030.000000
8411Chronicles, Vol. 10.078699to-read favorites currently-reading fiction bo...10033.000000
8412The Krishna Key0.078699to-read fantasy favorites currently-reading fi...10026.000000
8413The Winner0.078677to-read favorites currently-reading fiction bo...10031.000000
8414You Belong To Me0.078676to-read favorites currently-reading fiction bo...10028.000000
8415The Sweet Potato Queens' Book of Love0.078673to-read favorites currently-reading fiction bo...10026.000000
8416Death at La Fenice (Commissario Brunetti, #1)0.078653to-read favorites currently-reading fiction bo...10025.000000
8417The North Water0.078653to-read favorites currently-reading fiction bo...10026.000000
8418F is for Fugitive (Kinsey Millhone, #6)0.078630to-read favorites currently-reading fiction bo...10029.000000
8419Extreme Measures (Mitch Rapp, #11)0.078627to-read favorites currently-reading fiction bo...10031.000000
8420for colored girls who have considered suicide/...0.078626to-read favorites currently-reading fiction bo...10026.000000
8421Anne Frank : The Biography0.078618to-read favorites currently-reading young-adul...10022.000000
8422Long Lost (Myron Bolitar #9)0.078565to-read favorites currently-reading fiction bo...10031.000000
8423Accidentally on Purpose (Accidentally on Purpo...0.078563to-read favorites currently-reading fiction bo...10024.000000
8424Trace (Kay Scarpetta, #13)0.078541to-read favorites currently-reading fiction bo...10029.000000
8425The Unlikely Spy0.078463to-read favorites currently-reading fiction bo...10024.000000
8426The Lions of Lucerne (Scot Harvath, #1)0.078442to-read fantasy favorites currently-reading fi...10030.000000
8427Leo0.078435to-read favorites currently-reading young-adul...10027.000000
8428Poetics0.078407to-read favorites currently-reading fiction bo...10024.000000
8429The Prize Winner of Defiance, Ohio: How My Mot...0.078403to-read favorites currently-reading fiction bo...10021.000000
843014th Deadly Sin (Women’s Murder Club, #14)0.078388to-read favorites currently-reading fiction bo...10028.000000
8431The Obstacle Is the Way: The Timeless Art of T...0.078373to-read favorites currently-reading books-i-ow...10019.000000
8432Drop Shot (Myron Bolitar #2)0.078342to-read favorites currently-reading fiction bo...10031.000000
8433I Feel Bad about My Neck: And Other Thoughts o...0.078339to-read favorites currently-reading fiction bo...10024.000000
8434Suspect (Scott James & Maggie, #1)0.078331to-read favorites currently-reading fiction bo...10026.000000
8435The Tender Bar0.078314to-read favorites currently-reading young-adul...10030.000000
8436Amelia Bedelia and the Surprise Shower0.078304to-read favorites currently-reading young-adul...10016.000000
8437Victims (Alex Delaware, #27)0.078294to-read favorites currently-reading fiction bo...10028.000000
8438Presumed Innocent0.078280to-read favorites currently-reading fiction bo...10035.000000
8439The Proper Care and Feeding of Husbands0.078260to-read favorites currently-reading books-i-ow...10019.000000
8440Red Mist (Kay Scarpetta, #19)0.078218to-read favorites currently-reading fiction bo...10028.000000
8441A Year in Provence0.078206to-read favorites currently-reading fiction bo...10034.000000
8442The Partner0.078200to-read favorites currently-reading fiction bo...10031.000000
8443A Bargain for Frances0.078151to-read favorites currently-reading fiction bo...10018.000000
8444The Twelfth Card (Lincoln Rhyme, #6)0.078129to-read favorites currently-reading fiction bo...10026.000000
8445The Wordy Shipmates0.078120to-read favorites currently-reading fiction bo...10024.000000
8446Stuck-Up Suit0.078092to-read favorites currently-reading fiction bo...10021.000000
8447Bossman0.078057to-read favorites currently-reading fiction bo...10021.000000
8448Scott Pilgrim, Volume 1: Scott Pilgrim's Preci...0.078055to-read fantasy favorites currently-reading yo...10032.000000
8449Swamp Thing, Vol. 1: Saga of the Swamp Thing0.078044to-read fantasy favorites currently-reading fi...10027.000000
8450Three to Get Deadly (Stephanie Plum, #3)0.078032to-read favorites currently-reading fiction bo...10029.000000
8451Backstage Pass (Sinners on Tour, #1)0.078021to-read favorites currently-reading fiction bo...10027.000000
8452The Invisible Gorilla: And Other Ways Our Intu...0.078014to-read favorites currently-reading books-i-ow...10019.000000
8453G is for Gumshoe (Kinsey Millhone, #7)0.078013to-read favorites currently-reading fiction bo...10030.000000
8454The Known World0.077931to-read favorites currently-reading fiction bo...10033.000000
8455Judy Moody (Judy Moody, # 1)0.077922to-read favorites currently-reading fiction bo...10023.000000
8456Without Remorse (Jack Ryan Universe, #1)0.077912to-read favorites currently-reading fiction bo...10032.000000
8457The Broken Wings0.077875to-read fantasy currently-reading books-i-own ...10026.000000
8458The Dry (Aaron Falk, #1)0.077854to-read favorites currently-reading fiction bo...10022.000000
8459The Guns of August0.077803to-read favorites currently-reading fiction bo...10028.000000
8460The Third Victim (Quincy & Rainie, #2)0.077773to-read favorites currently-reading fiction bo...10031.000000
8461Predictably Irrational: The Hidden Forces That...0.077712to-read favorites currently-reading books-i-ow...10024.000000
8462Identity Crisis0.077667to-read fantasy favorites currently-reading yo...10027.000000
8463Fighting for Flight (Fighting, #1)0.077604to-read favorites currently-reading young-adul...10025.000000
8464The Man With a Load of Mischief (Richard Jury,...0.077581to-read favorites currently-reading fiction bo...10027.000000
8465I Was Told There'd Be Cake0.077572to-read favorites currently-reading fiction bo...10028.000000
8466Roller Girl0.077568to-read favorites currently-reading young-adul...1009.000000
8467I Heard That Song Before0.077539to-read favorites currently-reading fiction bo...10024.000000
8468The Friend Zone (Game On, #2)0.077524to-read favorites currently-reading young-adul...10021.000000
8469Doubt0.077487to-read favorites currently-reading fiction bo...10026.000000
8470Heartsick (Archie Sheridan & Gretchen Lowell, #1)0.077474to-read favorites currently-reading fiction bo...10031.000000
8471The Reef0.077463to-read favorites currently-reading fiction bo...10037.000000
8472Through the Woods0.077429to-read fantasy favorites currently-reading yo...10020.000000
8473The Pacific0.077413to-read favorites currently-reading fiction bo...10022.000000
8474The Power of Your Subconscious Mind0.077405to-read favorites currently-reading books-i-ow...10028.000000
8475The Killing Hour (Quincy & Rainie, #4)0.077405to-read favorites currently-reading fiction bo...10029.000000
8476U Is for Undertow (Kinsey Millhone, #21)0.077403to-read favorites currently-reading fiction bo...10029.000000
8477The Seven Spiritual Laws of Success: A Practic...0.077387to-read favorites currently-reading books-i-ow...10026.000000
8478Help Thanks Wow: The Three Essential Prayers0.077377to-read favorites currently-reading books-i-ow...10021.000000
8479The Black Swan: The Impact of the Highly Impro...0.077340to-read favorites currently-reading fiction bo...10027.000000
8480My Story: \"A Child Called It\", \"The Lost Boy\",...0.077310to-read favorites currently-reading young-adul...10023.000000
8481Persepolis, Volume 10.077297to-read favorites currently-reading young-adul...10023.000000
8482Astonishing X-Men, Volume 1: Gifted0.077290to-read fantasy favorites currently-reading yo...10026.000000
8483Mystery (Alex Delaware, #26)0.077285to-read favorites currently-reading fiction bo...10026.000000
8484Dog on It (A Chet and Bernie Mystery #1)0.077284to-read favorites currently-reading fiction bo...10027.000000
8485The Matarese Circle (Matarese #1)0.077272to-read favorites currently-reading fiction bo...10034.000000
8486Miracles0.077252to-read favorites currently-reading fiction bo...10030.000000
8487Letter to My Daughter0.077252to-read favorites currently-reading fiction bo...10031.000000
8488The Christmas List0.077232to-read favorites currently-reading fiction bo...10027.000000
8489Marvels0.077232to-read fantasy favorites currently-reading fi...10027.000000
8490Wait for It0.077199to-read favorites currently-reading fiction bo...10021.000000
8491Wild Fire (John Corey, #4)0.077184to-read favorites currently-reading fiction bo...10028.000000
8492'Tis (Frank McCourt, #2)0.077177to-read favorites currently-reading fiction bo...10034.000000
8493Logicomix: An epic search for truth0.077127to-read favorites currently-reading fiction bo...10022.000000
8494Up to Me (The Bad Boys, #2)0.077109favorites currently-reading fiction books-i-ow...10027.000000
8495Sizzling Sixteen (Stephanie Plum, #16)0.077104to-read favorites currently-reading fiction bo...10031.000000
8496The Negotiator0.077082to-read favorites currently-reading fiction bo...10029.000000
8497Maid for the Billionaire (Legacy Collection, #1)0.077064to-read favorites currently-reading fiction bo...10024.000000
8498Avatar: The Last Airbender (The Promise, #2)0.077038to-read fantasy favorites currently-reading yo...10027.000000
8499The New Drawing on the Right Side of the Brain0.077033to-read currently-reading favourites my-books ...10017.000000
8500Common Sense, The Rights of Man and Other Esse...0.076995to-read favorites currently-reading books-i-ow...10021.000000
8501Tweak: Growing Up On Methamphetamines0.076993to-read favorites currently-reading young-adul...10030.000000
8502Rising Tides (Chesapeake Bay Saga, #2)0.076989to-read favorites currently-reading fiction bo...10032.000000
8503The Abolition of Man0.076982to-read favorites currently-reading fiction bo...10030.000000
8504Creepshow0.076974to-read fantasy favorites currently-reading fi...10022.000000
8505Chocolate Chip Cookie Murder (Hannah Swensen, #1)0.076973to-read favorites currently-reading fiction bo...10026.000000
8506The Far Side Gallery0.076952to-read fantasy favorites currently-reading fi...10024.000000
8507The English Assassin (Gabriel Allon, #2)0.076942to-read favorites currently-reading fiction bo...10029.000000
8508The Nazi Officer's Wife: How One Jewish Woman ...0.076886to-read favorites currently-reading fiction bo...10026.000000
8509The Color of Water: A Black Man's Tribute to H...0.076874to-read favorites currently-reading fiction bo...10026.000000
8510Zero Day (John Puller, #1)0.076865to-read favorites currently-reading fiction bo...10030.000000
8511The Simple Truth0.076851to-read favorites currently-reading fiction bo...10029.000000
8512The Girl Before0.076851to-read favorites currently-reading fiction bo...10026.000000
8513The Yacoubian Building0.076847to-read favorites currently-reading fiction bo...10025.000000
8514Miracle in the Andes0.076843to-read favorites currently-reading books-i-ow...10024.000000
8515The Poet (Jack McEvoy, #1; Harry Bosch Univers...0.076783to-read favorites currently-reading fiction bo...10032.000000
8516The Three Sisters0.076782to-read favorites currently-reading fiction bo...10031.000000
8517La Carte et le territoire0.076729to-read favorites currently-reading fiction bo...10024.000000
8518Vagabonding: An Uncommon Guide to the Art of L...0.076694to-read favorites currently-reading books-i-ow...10026.000000
8519The Icarus Agenda0.076693to-read favorites currently-reading fiction bo...10029.000000
8520Eiger Dreams: Ventures Among Men and Mountains0.076678to-read favorites currently-reading books-i-ow...10020.000000
8521The Mitten0.076625to-read fantasy favorites currently-reading fi...10014.000000
8522Is Your Mama a Llama?0.076592to-read fantasy favorites currently-reading fi...10014.000000
8523Why Be Happy When You Could Be Normal?0.076591to-read favorites currently-reading fiction bo...10028.000000
8524Citizen: An American Lyric0.076580to-read favorites currently-reading fiction bo...10019.000000
8525Bad Blood (Virgil Flowers, #4)0.076553to-read favorites currently-reading fiction bo...10026.000000
8526Bella Tuscany0.076552to-read favorites currently-reading fiction bo...10026.000000
8527Big Nate Strikes Again (Big Nate Novels, #2)0.076548to-read favorites currently-reading young-adul...10018.000000
8528Divine Justice (Camel Club, #4)0.076543to-read favorites currently-reading fiction bo...10030.000000
8529Reasonable Doubt: Volume 2 (Reasonable Doubt, #2)0.076512to-read favorites currently-reading fiction bo...10021.000000
8530We Wish to Inform You That Tomorrow We Will Be...0.076499to-read favorites currently-reading fiction bo...10026.000000
8531Monster in His Eyes (Monster in His Eyes, #1)0.076495to-read favorites currently-reading fiction bo...10023.000000
8532Book of the Dead (Kay Scarpetta, #15)0.076493to-read favorites currently-reading fiction bo...10032.000000
8533Left to Tell: Discovering God Amidst the Rwand...0.076484to-read favorites currently-reading books-i-ow...10020.000000
8534Falling Leaves: The Memoir of an Unwanted Chin...0.076443to-read favorites currently-reading young-adul...10029.000000
8535Barnyard Dance0.076403to-read fantasy favorites currently-reading fi...10018.000000
8536Until Nico (Until, #4)0.076400to-read favorites currently-reading fiction bo...10025.000000
8537The Rembrandt Affair (Gabriel Allon, #10)0.076380to-read favorites currently-reading fiction bo...10027.000000
8538A Stolen Life0.076315to-read favorites currently-reading books-i-ow...10027.000000
8539Five Little Monkeys Jumping on the Bed0.076303to-read favorites currently-reading fiction bo...10013.000000
8540Like a Fire Burning (The Work and the Glory, #2)0.076214to-read favorites currently-reading young-adul...10029.000000
8541B is for Burglar (Kinsey Millhone, #2)0.076210to-read favorites currently-reading fiction bo...10030.000000
8542Stepbrother Dearest0.076201to-read favorites currently-reading young-adul...10022.000000
8543Kulti0.076193to-read favorites currently-reading fiction fa...10021.000000
8544Destiny of the Republic: A Tale of Madness, Me...0.076125to-read favorites currently-reading books-i-ow...10020.000000
8545The Third Option (Mitch Rapp, #4)0.076115to-read favorites currently-reading fiction bo...10030.000000
8546Foxe's Book of Martyrs0.076110to-read favorites currently-reading books-i-ow...10023.000000
8547The Happiness Hypothesis: Finding Modern Truth...0.076085to-read favorites currently-reading books-i-ow...10022.000000
8548The Fire Next Time0.076052to-read favorites currently-reading fiction bo...10025.000000
8549206 Bones (Temperance Brennan, #12)0.076037to-read favorites currently-reading fiction bo...10030.000000
8550The Now Habit: A Strategic Program for Overcom...0.076037to-read favorites currently-reading books-i-ow...10025.000000
8551The Last Patriot (Scot Harvath, #7)0.076026to-read favorites currently-reading fiction bo...10027.000000
8552Where Good Ideas Come From: The Natural Histor...0.076018to-read favorites currently-reading books-i-ow...10018.000000
8553Dear Mr. Henshaw (Leigh Botts, #1)0.076007to-read favorites currently-reading young-adul...10020.000000
8554All Around the Town0.075971to-read favorites currently-reading fiction bo...10027.000000
8555Truth Will Prevail (The Work and the Glory, #3)0.075961to-read favorites currently-reading fiction bo...10024.000000
8556You'll Grow Out of It0.075948to-read favorites currently-reading books-i-ow...10018.000000
8557Loving What Is: Four Questions That Can Change...0.075907to-read favorites currently-reading books-i-ow...10019.000000
8558Kill Me If You Can0.075877to-read favorites currently-reading fiction bo...10030.000000
8559Don't Let the Pigeon Drive the Bus!0.075864to-read fantasy favorites currently-reading fi...10014.000000
8560Existentialism Is a Humanism0.075855to-read favorites currently-reading books-i-ow...10022.000000
8561Hostile Witness (Witness Series, #1)0.075848to-read currently-reading fiction books-i-own ...10019.000000
8562D-Day, June 6, 1944: The Battle for the Norman...0.075833to-read favorites currently-reading fiction bo...10028.000000
8563Run Baby Run0.075824to-read favorites currently-reading young-adul...10020.000000
8564Killing Lincoln: The Shocking Assassination th...0.075812to-read favorites currently-reading fiction bo...10027.000000
8565Black Lies0.075802to-read favorites currently-reading fiction bo...10022.000000
8566In Harm's Way: The Sinking of the U.S.S. India...0.075801to-read favorites currently-reading books-i-ow...10026.000000
8567Seducing Cinderella (Fighting for Love, #1)0.075789to-read favorites currently-reading fiction bo...10021.000000
8568Red Lily (In the Garden, #3)0.075787to-read fantasy favorites currently-reading fi...10032.000000
8569David Gets In Trouble0.075776to-read favorites currently-reading fiction bo...10018.000000
8570Autobiography of a Yogi0.075733to-read favorites currently-reading books-i-ow...10027.000000
8571We Need New Names0.075682to-read favorites currently-reading fiction bo...10028.000000
8572Four to Score (Stephanie Plum, #4)0.075648to-read favorites currently-reading fiction bo...10029.000000
8573Saving Faith0.075640to-read favorites currently-reading fiction bo...10031.000000
85742 States: The Story of My Marriage0.075631to-read favorites currently-reading young-adul...10028.000000
8575The Key to Rebecca0.075618to-read favorites currently-reading fiction bo...10027.000000
8576The Calvin and Hobbes Lazy Sunday Book0.075591to-read fantasy favorites currently-reading yo...10028.000000
8577Knight & Stay (Knight, #2)0.075579to-read favorites currently-reading fiction bo...10025.000000
8578The Preacher (Patrik Hedström, #2)0.075549to-read favorites currently-reading fiction bo...10028.000000
8579Girl Walks into a Bar . . .: Comedy Calamities...0.075531to-read favorites currently-reading books-i-ow...10019.000000
8580Visions of Sugar Plums (Stephanie Plum, #8.5)0.075474to-read fantasy favorites currently-reading fi...10026.000000
8581The Surgeon (Rizzoli & Isles, #1)0.075453to-read favorites currently-reading fiction bo...10032.000000
8582Bad Rep (Bad Rep, #1)0.075442to-read favorites currently-reading young-adul...10023.000000
8583The Science of Getting Rich0.075427to-read favorites currently-reading books-i-ow...10019.000000
8584Round Ireland with a Fridge0.075340to-read favorites currently-reading fiction bo...10026.000000
8585Rock Me (Ross Siblings, #2)0.075321to-read favorites currently-reading young-adul...10026.000000
8586Desert Flower0.075316to-read favorites currently-reading fiction bo...10030.000000
8587The Summons0.075284to-read favorites currently-reading fiction bo...10032.000000
8588Beyond Belief: My Secret Life Inside Scientolo...0.075273to-read favorites currently-reading books-i-ow...10023.000000
8589Connected (Connections, #1)0.075241to-read favorites currently-reading fiction bo...10026.000000
8590American Assassin (Mitch Rapp, #1)0.075235to-read favorites currently-reading fiction bo...10032.000000
8591Scaredy Squirrel (Scaredy Squirrel)0.075235to-read fantasy favorites currently-reading fi...10016.000000
8592Unleashed (Ross Siblings, #1)0.075190to-read favorites currently-reading fiction bo...10024.000000
8593Indemnity Only (V.I. Warshawski, #1)0.075165to-read favorites currently-reading fiction bo...10025.000000
8594Some Assembly Required: A Journal of My Son's ...0.075118to-read favorites currently-reading fiction bo...10020.000000
8595Certain Prey (Lucas Davenport, #10)0.075102to-read favorites currently-reading fiction bo...10031.000000
8596The Wisdom of Crowds0.075101to-read favorites currently-reading books-i-ow...10022.000000
8597Winter in Tokyo0.075069to-read favorites currently-reading young-adul...10022.000000
8598Mr. Perfect0.075054to-read favorites currently-reading fiction bo...10030.000000
8599The Broken Window (Lincoln Rhyme, #8)0.075015to-read favorites currently-reading fiction bo...10032.000000
8600On the Genealogy of Morals/Ecce Homo0.074976to-read favorites currently-reading books-i-ow...10022.000000
8601Guilty Wives0.074970to-read favorites currently-reading fiction bo...10031.000000
8602There's Treasure Everywhere: A Calvin and Hobb...0.074955to-read fantasy favorites currently-reading yo...10029.000000
8603La casa de Bernarda Alba0.074933to-read favorites currently-reading fiction bo...10025.000000
8604Blankets0.074928to-read favorites currently-reading young-adul...10025.000000
8605A Year Down Yonder (A Long Way from Chicago, #2)0.074910to-read favorites currently-reading young-adul...10023.000000
8606A Drink Before the War (Kenzie & Gennaro, #1)0.074906to-read favorites currently-reading fiction bo...10026.000000
8607A Faint Cold Fear (Grant County, #3)0.074882to-read favorites currently-reading fiction bo...10033.000000
8608The Seven Principles for Making Marriage Work:...0.074849to-read favorites currently-reading books-i-ow...10028.000000
8609The Life of Elizabeth I0.074842to-read favorites currently-reading fiction bo...10025.000000
8610Memories, Dreams, Reflections0.074826to-read favorites currently-reading books-i-ow...10020.000000
8611رباعيات خياÙ0.074810to-read favorites currently-reading fiction bo...10021.000000
8612How to Stop Worrying and Start Living0.074799to-read favorites currently-reading books-i-ow...10026.000000
8613First Family (Sean King & Michelle Maxwell, #4)0.074777to-read favorites currently-reading fiction bo...10033.000000
8614The Bone People0.074772to-read fantasy favorites currently-reading fi...10029.000000
8615Honeymoon (Honeymoon, #1)0.074759to-read favorites currently-reading fiction bo...10030.000000
8616The Princess Diarist0.074756to-read favorites books-i-own owned favourites...10023.000000
8617The Unwanted Wife (Unwanted, #1)0.074745to-read favorites currently-reading fiction bo...10024.000000
8618Chew, Vol. 1: Taster's Choice0.074738to-read fantasy favorites currently-reading fi...10022.000000
8619Private Games (Private #3)0.074718to-read favorites currently-reading fiction bo...10033.000000
8620Carry On, Mr. Bowditch0.074691to-read favorites currently-reading young-adul...10022.000000
8621Surrender Your Love (Surrender Your Love, #1)0.074671to-read favorites currently-reading fiction bo...10025.000000
8622Adulthood Is a Myth (Sarah's Scribbles, #1)0.074654to-read favorites currently-reading young-adul...10024.000000
8623Open Season (Joe Pickett, #1)0.074629to-read favorites currently-reading fiction bo...10029.000000
8624The Famished Road0.074626to-read fantasy favorites currently-reading fi...10033.000000
8625Chasing Fire0.074564to-read favorites currently-reading fiction bo...10033.000000
8626Open0.074560to-read favorites currently-reading books-i-ow...10026.000000
8627The Narrow Road to the Deep North0.074532to-read favorites currently-reading fiction bo...10034.000000
8628Janet Evanovich Three and Four Two-Book Set (S...0.074474to-read favorites currently-reading fiction bo...10018.000000
8629K is for Killer (Kinsey Millhone, #11)0.074459to-read favorites currently-reading fiction bo...10030.000000
8630The Scarpetta Factor (Kay Scarpetta, #17)0.074457to-read favorites currently-reading fiction bo...10029.000000
8631Rough Country (Virgil Flowers, #3)0.074424to-read favorites currently-reading fiction bo...10027.000000
8632Raw (RAW Family, #1)0.074413to-read favorites currently-reading fiction ow...10023.000000
8633The Vision0.074378to-read fantasy favorites currently-reading fi...10028.000000
8634The Problem of Pain0.074376to-read favorites currently-reading books-i-ow...10029.000000
8635Sang Pemimpi (Tetralogi Laskar Pelangi, #2)0.074349to-read favorites currently-reading young-adul...10022.000000
8636Cradle and All0.074312to-read fantasy favorites currently-reading fi...10030.000000
8637Diary ng Panget0.074308to-read favorites currently-reading young-adul...10021.000000
8638Punk 570.074279to-read favorites currently-reading young-adul...10021.000000
8639Consent to Kill (Mitch Rapp, #8)0.074277to-read favorites currently-reading fiction bo...10032.000000
8640Icebound0.074217to-read fantasy favorites currently-reading fi...10030.000000
8641Dirty (Dive Bar, #1)0.074173to-read favorites currently-reading fiction bo...10021.000000
8642What to Expect When You're Expecting0.074123to-read favorites currently-reading books-i-ow...10023.000000
8643Devil's Game (Reapers MC, #3)0.074117to-read favorites currently-reading fiction bo...10022.000000
8644The Very Quiet Cricket0.074108to-read favorites currently-reading fiction bo...10014.000000
8645Stones Into Schools: Promoting Peace With Book...0.074075to-read favorites fiction books-i-own owned ow...10023.000000
8646Sheep in a Jeep0.074040to-read fantasy favorites currently-reading fi...10014.000000
8647The Dogs of Riga (Kurt Wallander, #2)0.074011to-read favorites currently-reading fiction bo...10026.000000
8648The Last Precinct (Kay Scarpetta, #11)0.074009to-read favorites currently-reading fiction bo...10031.000000
8649Wasted: A Memoir of Anorexia and Bulimia0.073980to-read favorites currently-reading young-adul...10027.000000
8650Avatar: The Last Airbender (The Promise, #1)0.073964to-read fantasy favorites currently-reading yo...10028.000000
8651Fearless Fourteen (Stephanie Plum, #14)0.073959to-read favorites currently-reading fiction bo...10027.000000
8652Why I Am Not a Christian and Other Essays on R...0.073955to-read favorites currently-reading books-i-ow...10026.000000
8653Three Cups of Tea: One Man's Mission to Promot...0.073923to-read favorites currently-reading fiction bo...10026.000000
8654Bad Kitty0.073916to-read fantasy favorites currently-reading fi...10014.000000
8655The Lion's Game (John Corey, #2)0.073913to-read favorites currently-reading fiction bo...10029.000000
8656Flaskepost fra P (Afdeling Q, #3)0.073885to-read favorites currently-reading fiction bo...10026.000000
8657The Killing Game (Eve Duncan, #2)0.073813to-read favorites currently-reading fiction bo...10027.000000
8658A Piece of Cake0.073794to-read favorites currently-reading fiction bo...10026.000000
8659The Game Changer (The Perfect Game, #2)0.073777to-read favorites currently-reading young-adul...10024.000000
8660美少女戦士セーラームーン新装版 ...0.073771to-read fantasy favorites currently-reading yo...10030.000000
8661Undaunted Courage: The Pioneering First Missio...0.073768to-read favorites currently-reading fiction bo...10026.000000
8662Drama0.073728to-read favorites currently-reading young-adul...10016.000000
8663Ghost World0.073727to-read favorites currently-reading young-adul...10025.000000
8664Habibi0.073691to-read fantasy favorites currently-reading fi...10026.000000
8665Prisoner of My Desire0.073685to-read favorites currently-reading fiction bo...10026.000000
8666Reasonable Doubt: Volume 1 (Reasonable Doubt, #1)0.073682to-read favorites currently-reading fiction ow...10020.000000
8667The Big Short: Inside the Doomsday Machine0.073675to-read favorites currently-reading fiction bo...10026.000000
8668Bad Things (Tristan & Danika, #1)0.073658to-read favorites currently-reading books-i-ow...10025.000000
8669Promise Me (Myron Bolitar #8)0.073607to-read favorites currently-reading fiction bo...10030.000000
8670Panda Bear, Panda Bear, What Do You See?0.073587to-read favorites currently-reading fiction bo...10015.000000
8671Are You Afraid of the Dark?0.073578to-read favorites currently-reading young-adul...10033.000000
8672Chasing Darkness (Elvis Cole, #12)0.073542to-read favorites currently-reading fiction bo...10030.000000
8673Ride Steady (Chaos, #3)0.073522to-read favorites currently-reading fiction bo...10025.000000
8674Deception (Alex Delaware, #25)0.073509to-read favorites currently-reading fiction bo...10024.000000
8675Fargo Rock City: A Heavy Metal Odyssey in Rura...0.073497to-read favorites currently-reading fiction bo...10019.000000
8676Confederates in the Attic: Dispatches from the...0.073496to-read favorites currently-reading fiction bo...10028.000000
8677Moo, Baa, La La La!0.073481to-read favorites currently-reading fiction bo...10017.000000
8678Owl Babies0.073480to-read favorites currently-reading fiction bo...10013.000000
8679Sounder0.073473to-read favorites currently-reading young-adul...10018.000000
8680Choosing to SEE0.073458to-read favorites currently-reading books-i-ow...10023.000000
8681Maid for Love (Gansett Island Series, #1)0.073441to-read favorites currently-reading fiction bo...10023.000000
8682H is for Homicide (Kinsey Millhone, #8)0.073436to-read favorites currently-reading fiction bo...10030.000000
8683Mercy (Buchanan-Renard, #2)0.073425to-read favorites currently-reading fiction bo...10030.000000
8684How Do Dinosaurs Say Good Night?0.073420to-read fantasy favorites currently-reading fi...10015.000000
8685Undeniable (Undeniable, #1)0.073407to-read favorites currently-reading fiction bo...10021.000000
8686Stories I Only Tell My Friends0.073383to-read favorites currently-reading books-i-ow...10024.000000
8687I Love You Through and Through0.073338to-read favorites currently-reading fiction bo...10015.000000
8688The Husband0.073324to-read favorites currently-reading fiction bo...10032.000000
8689The Letters of Vincent van Gogh0.073318to-read favorites currently-reading fiction bo...10026.000000
8690Be Here Now0.073272to-read favorites currently-reading books-i-ow...10023.000000
8691Think and Grow Rich: The Landmark Bestseller -...0.073261to-read favorites currently-reading books-i-ow...10024.000000
8692Willing Captive0.073233to-read favorites currently-reading fiction bo...10024.000000
8693The Elements of Style0.073230to-read favorites currently-reading books-i-ow...10025.000000
8694Red Rabbit (Jack Ryan Universe, #3)0.073214to-read favorites currently-reading fiction bo...10031.000000
8695The Sellout0.073184to-read favorites currently-reading fiction bo...10028.000000
8696Sunset Express (Elvis Cole, #6)0.073175to-read favorites currently-reading fiction bo...10024.000000
8697Half Blood Blues0.073169to-read favorites fiction books-i-own owned fa...10030.000000
8698Conquer Your Love (Surrender Your Love, #2)0.073069to-read favorites currently-reading fiction ow...10023.000000
8699Nicholas and Alexandra0.073068to-read favorites currently-reading fiction bo...10027.000000
8700Rainbow Six (Jack Ryan Universe, #10)0.073052to-read favorites currently-reading fiction bo...10029.000000
8701Mortal Prey (Lucas Davenport, #13)0.073046to-read favorites currently-reading fiction bo...10030.000000
8702All Over But the Shoutin'0.073041to-read favorites currently-reading fiction bo...10027.000000
8703The Pursuit of God0.073024to-read favorites currently-reading books-i-ow...10030.000000
8704Debt Inheritance (Indebted, #1)0.073022to-read favorites currently-reading fiction bo...10021.000000
8705Blindsighted (Grant County, #1)0.072986to-read favorites currently-reading fiction bo...10032.000000
8706Bud, Not Buddy0.072982to-read favorites currently-reading young-adul...10020.000000
8707Adrift: Seventy-Six Days Lost at Sea0.072958to-read currently-reading books-i-own owned ad...10022.000000
8708Naked0.072926to-read favorites currently-reading fiction bo...10032.000000
8709Moscow Rules (Gabriel Allon, #8)0.072908to-read favorites currently-reading fiction bo...10026.000000
8710Club Shadowlands (Masters of the Shadowlands, #1)0.072877to-read favorites currently-reading fiction bo...10023.000000
8711All But My Life: A Memoir0.072855to-read favorites currently-reading young-adul...10023.000000
8712The Crossing (Harry Bosch, #20; Mickey Haller,...0.072844to-read favorites currently-reading fiction bo...10025.000000
8713The Burning Wire (Lincoln Rhyme, #9)0.072811to-read favorites currently-reading fiction bo...10028.000000
8714American Vampire, Vol. 10.072785to-read fantasy favorites currently-reading fi...10020.000000
8715Blood on Snow (Blood on Snow, #1)0.072780to-read favorites currently-reading fiction bo...10029.000000
8716The Dance Of Anger: A Woman's Guide to Changin...0.072773to-read favorites currently-reading books-i-ow...10022.000000
8717Funny in Farsi: A Memoir of Growing Up Iranian...0.072744to-read favorites currently-reading young-adul...10026.000000
8718Dicey's Song (Tillerman Cycle, #2)0.072686to-read favorites currently-reading young-adul...10022.000000
8719History of the Peloponnesian War0.072679to-read favorites currently-reading fiction bo...10027.000000
8720Blueberries for Sal0.072670to-read favorites currently-reading fiction bo...10016.000000
8721The Warmth of Other Suns: The Epic Story of Am...0.072640to-read favorites currently-reading fiction bo...10024.000000
87221491: New Revelations of the Americas Before C...0.072639to-read favorites currently-reading books-i-ow...10027.000000
8723Attack on Titan, Vol. 1 (Attack on Titan, #1)0.072616to-read fantasy favorites currently-reading yo...10029.000000
8724Fallen (Will Trent, #5)0.072610to-read favorites currently-reading fiction bo...10026.000000
8725Wicca: A Guide for the Solitary Practitioner0.072601to-read favorites currently-reading books-i-ow...10025.000000
8726Waking Up Married (Waking Up, #1)0.072583to-read favorites currently-reading fiction bo...10020.000000
8727No Logo0.072578to-read favorites currently-reading fiction bo...10026.000000
8728Leadership and Self-Deception: Getting Out of ...0.072554to-read favorites currently-reading fiction bo...10027.000000
8729Where I Belong (Alabama Summer, #1)0.072534to-read favorites currently-reading fiction ya...10019.000000
8730Clementine (Clementine, #1)0.072508to-read favorites currently-reading young-adul...10015.000000
8731On the Night You Were Born0.072503to-read favorites currently-reading fiction bo...10020.000000
8732The Concrete Blonde (Harry Bosch, #3; Harry Bo...0.072499to-read favorites currently-reading fiction bo...10027.000000
8733Thomas Jefferson: The Art of Power0.072484to-read favorites currently-reading books-i-ow...10025.000000
8734Helmet for My Pillow0.072475to-read currently-reading books-i-own owned ow...10022.000000
8735The Whipping Boy0.072472to-read fantasy favorites currently-reading yo...10020.000000
8736The Richest Man in Babylon0.072467to-read favorites currently-reading fiction bo...10027.000000
8737A Grief Observed0.072456to-read favorites currently-reading fiction ow...10031.000000
8738Nine Parts of Desire: The Hidden World of Isla...0.072447to-read favorites currently-reading fiction bo...10025.000000
8739Touching the Void: The True Story of One Man's...0.072426to-read favorites currently-reading fiction bo...10026.000000
8740J is for Judgment (Kinsey Millhone, #10)0.072357to-read favorites currently-reading fiction bo...10030.000000
8741On Photography0.072340to-read favorites currently-reading books-i-ow...10024.000000
8742The Wives of Henry VIII0.072326to-read favorites currently-reading fiction bo...10025.000000
8743Break No Bones (Temperance Brennan, #9)0.072309to-read favorites currently-reading fiction bo...10031.000000
8744Being and Nothingness0.072299to-read favorites currently-reading fiction bo...10025.000000
8745Eleanor of Aquitaine: A Life0.072297to-read favorites currently-reading fiction bo...10024.000000
8746The Stories of John Cheever0.072294to-read favorites currently-reading fiction bo...10027.000000
8747Night Fall (John Corey, #3)0.072285to-read favorites currently-reading fiction bo...10028.000000
8748The Pigeon Wants a Puppy!0.072283to-read fantasy favorites currently-reading fi...10015.000000
8749The Camel Club (Camel Club, #1)0.072262to-read favorites currently-reading fiction bo...10031.000000
8750The Redeemer (Harry Hole, #6)0.072258to-read favorites currently-reading fiction bo...10030.000000
8751Creativity, Inc.: Overcoming the Unseen Forces...0.072254to-read favorites currently-reading books-i-ow...10024.000000
8752Journal 64 (Afdeling Q, #4)0.072250to-read favorites currently-reading fiction bo...10024.000000
8753Metaphysics0.072244to-read favorites currently-reading books-i-ow...10021.000000
8754The Cold Moon (Lincoln Rhyme, #7)0.072235to-read favorites currently-reading fiction bo...10031.000000
8755Dominic (Slater Brothers, #1)0.072188to-read favorites currently-reading young-adul...10021.000000
8756Montana Sky0.072159to-read favorites currently-reading fiction bo...10032.000000
8757NYPD Red (NYPD Red, #1)0.072119to-read favorites currently-reading fiction bo...10029.000000
8758Men Are from Mars, Women Are from Venus0.072102to-read favorites currently-reading fiction bo...10031.000000
8759Private Berlin (Private #5)0.072098to-read favorites currently-reading fiction bo...10030.000000
8760Music of the Heart (Runaway Train, #1)0.072092to-read favorites currently-reading young-adul...10023.000000
8761Kingdom Come0.072047to-read fantasy favorites currently-reading fi...10027.000000
8762Willpower: Rediscovering the Greatest Human St...0.072039to-read favorites currently-reading books-i-ow...10024.000000
8763There Was an Old Lady Who Swallowed a Fly0.072032to-read fantasy favorites currently-reading fi...10014.000000
8764Codependent No More: How to Stop Controlling O...0.072020to-read favorites currently-reading books-i-ow...10028.000000
8765Strengths Finder 2.00.071998to-read favorites currently-reading books-i-ow...10024.000000
8766On Death and Dying0.071998to-read favorites currently-reading books-i-ow...10021.000000
8767Collapse: How Societies Choose to Fail or Succeed0.071988to-read favorites currently-reading books-i-ow...10023.000000
8768Kill Shot (Mitch Rapp, #2)0.071988to-read favorites currently-reading fiction bo...10026.000000
8769Appointment in Samarra0.071983to-read favorites currently-reading fiction bo...10026.000000
8770Holding the Dream (Dream Trilogy #2)0.071952to-read fantasy favorites currently-reading fi...10035.000000
8771The Search0.071937to-read favorites currently-reading fiction bo...10029.000000
8772The Last Detective (Elvis Cole, #9)0.071933to-read favorites currently-reading fiction bo...10024.000000
8773The Happiness Advantage: The Seven Principles ...0.071881to-read favorites currently-reading books-i-ow...10025.000000
8774Madeline and the Bad Hat0.071852to-read favorites currently-reading fiction bo...10017.000000
8775The Confessions of Nat Turner0.071821to-read favorites currently-reading fiction bo...10028.000000
8776Orientalism0.071804to-read favorites currently-reading books-i-ow...10021.000000
8777Team of Rivals: The Political Genius of Abraha...0.071761to-read favorites currently-reading books-i-ow...10027.000000
8778Deadly Decisions (Temperance Brennan, #3)0.071745to-read favorites currently-reading fiction bo...10031.000000
8779Sweetheart (Archie Sheridan & Gretchen Lowell,...0.071737to-read favorites currently-reading fiction bo...10026.000000
8780Mastery0.071712to-read favorites currently-reading books-i-ow...10022.000000
8781True Love Story0.071710to-read favorites currently-reading young-adul...10022.000000
8782Rock Bottom (Tristan & Danika, #2)0.071701currently-reading books-i-own owned series fav...10022.000000
8783Wemberly Worried0.071696to-read fantasy favorites currently-reading fi...1008.000000
8784The Definitive Book of Body Language0.071692to-read favorites currently-reading books-i-ow...10023.000000
8785Polar Bear, Polar Bear, What Do You Hear?0.071652to-read favorites currently-reading fiction bo...10014.000000
8786The Idiot Girls' Action-Adventure Club: True T...0.071631to-read favorites currently-reading fiction bo...10028.000000
8787Crucial Conversations: Tools for Talking When ...0.071573to-read favorites currently-reading books-i-ow...10029.000000
8788How Google Works0.071565to-read favorites currently-reading books-i-ow...10025.000000
8789Me: Stories of My Life0.071558to-read favorites currently-reading books-i-ow...10029.000000
8790Heat Lightning (Virgil Flowers, #2)0.071532to-read favorites currently-reading fiction bo...10026.000000
8791The Cradle Will Fall0.071505to-read favorites currently-reading fiction bo...10027.000000
8792Knight & Play (Knight, #1)0.071477to-read favorites currently-reading fiction bo...10026.000000
8793A Distant Mirror: The Calamitous 14th Century0.071448to-read favorites currently-reading fiction bo...10031.000000
8794Wanted0.071447to-read fantasy favorites currently-reading fi...10023.000000
8795Heavier Than Heaven: A Biography of Kurt Cobain0.071432to-read favorites currently-reading books-i-ow...10031.000000
8796Damaged: The Heartbreaking True Story of a For...0.071421to-read favorites currently-reading fiction bo...10024.000000
8797Daddy's Little Girl0.071421to-read favorites currently-reading fiction bo...10025.000000
8798See Jane Score (Chinooks Hockey Team, #2)0.071409to-read favorites currently-reading fiction bo...10026.000000
8799Switch: How to Change Things When Change Is Hard0.071390to-read favorites currently-reading books-i-ow...10022.000000
8800Cocky Bastard0.071387to-read favorites currently-reading fiction bo...10023.000000
8801Reaper's Property (Reapers MC, #1)0.071348to-read favorites currently-reading fiction bo...10024.000000
8802Two Treatises of Government0.071276to-read favorites currently-reading books-i-ow...10018.000000
8803Nine Dragons (Harry Bosch, #15; Mickey Haller,...0.071264to-read favorites currently-reading fiction bo...10028.000000
8804Buried Prey (Lucas Davenport, #21)0.071245to-read favorites currently-reading fiction bo...10028.000000
8805How Soccer Explains the World0.071234to-read favorites currently-reading books-i-ow...10017.000000
8806High Noon0.071230to-read favorites currently-reading fiction bo...10033.000000
8807E is for Evidence (Kinsey Millhone, #5)0.071213to-read favorites currently-reading fiction bo...10028.000000
8808Come Back, Amelia Bedelia0.071185to-read currently-reading fiction books-i-own ...10013.000000
8809The Client0.071177to-read favorites currently-reading fiction bo...10033.000000
8810The Looming Tower: Al-Qaeda and the Road to 9/110.071174to-read favorites currently-reading books-i-ow...10024.000000
8811Preacher, Volume 4: Ancient History0.071171to-read fantasy favorites currently-reading fi...10023.000000
8812RoomHate0.071165to-read favorites currently-reading fiction bo...10020.000000
8813Déjà Dead (Temperance Brennan, #1)0.071141to-read favorites currently-reading fiction bo...10032.000000
8814Long Walk to Freedom0.071140to-read favorites currently-reading books-i-ow...10031.000000
8815Stupid White Men0.071126to-read favorites currently-reading fiction bo...10022.000000
8816D is for Deadbeat (Kinsey Millhone, #4)0.071120to-read favorites currently-reading fiction bo...10028.000000
8817Wicked Ties (Wicked Lovers, #1)0.071117to-read favorites currently-reading fiction bo...10026.000000
8818Nemesis (Harry Hole, #4)0.071105to-read favorites currently-reading fiction bo...10031.000000
8819Confessions0.071082to-read currently-reading fiction books-i-own ...10025.000000
8820The Sentry (Elvis Cole, #14; Joe Pike, #3)0.071075to-read favorites currently-reading fiction bo...10022.000000
8821The Pigeon Finds a Hot Dog!0.071072to-read fantasy favorites currently-reading fi...10016.000000
8822Stone Butch Blues0.071050to-read favorites currently-reading fiction bo...10022.000000
8823Rich Dad, Poor Dad0.071045to-read favorites currently-reading fiction bo...10031.000000
8824Forgotten God: Reversing Our Tragic Neglect of...0.071028to-read favorites currently-reading books-i-ow...10030.000000
8825Bonhoeffer: Pastor, Martyr, Prophet, Spy0.071023to-read favorites currently-reading books-i-ow...10026.000000
8826El Deafo0.071021to-read favorites currently-reading young-adul...10011.000000
8827Skinny Bitch0.071016to-read favorites currently-reading books-i-ow...10029.000000
8828Batman: Whatever Happened to the Caped Crusader?0.070981to-read fantasy favorites currently-reading yo...10025.000000
8829Benjamin Franklin: An American Life0.070975to-read favorites currently-reading fiction bo...10026.000000
8830The Lost Boy (Dave Pelzer #2)0.070941to-read favorites currently-reading young-adul...10028.000000
8831Captive in the Dark (The Dark Duet, #1)0.070902to-read favorites currently-reading fiction bo...10022.000000
8832Fancy Nancy0.070899to-read favorites currently-reading fiction bo...10013.000000
8833Up from Slavery0.070874to-read favorites currently-reading fiction bo...10028.000000
8834Absolute Power0.070852to-read favorites currently-reading fiction bo...10032.000000
8835The Black Echo (Harry Bosch, #1; Harry Bosch U...0.070844to-read favorites currently-reading fiction bo...10027.000000
8836Crush It!: Why Now Is the Time to Cash In on Y...0.070831to-read favorites currently-reading books-i-ow...10023.000000
8837Where Are the Children?0.070789to-read favorites currently-reading fiction bo...10028.000000
8838Rock Hard (Sinners on Tour, #2)0.070780to-read favorites currently-reading fiction bo...10027.000000
8839The Rape of Nanking0.070775to-read favorites currently-reading books-i-ow...10023.000000
8840Point of Impact (Bob Lee Swagger, #1)0.070772to-read favorites currently-reading fiction bo...10033.000000
8841Lunch in Paris: A Love Story, with Recipes0.070771to-read favorites currently-reading fiction bo...10021.000000
8842The Road Less Traveled: A New Psychology of Lo...0.070768to-read favorites currently-reading books-i-ow...10027.000000
8843Simple Abundance: A Daybook of Comfort and Joy0.070705to-read favorites currently-reading books-i-ow...10021.000000
8844The Know-It-All: One Man's Humble Quest to Bec...0.070695to-read favorites currently-reading fiction bo...10026.000000
8845Northern Lights0.070645to-read fantasy favorites currently-reading fi...10035.000000
8846Night Chills0.070639to-read favorites currently-reading fiction bo...10029.000000
8847The War of Art: Break Through the Blocks & Win...0.070624to-read favorites currently-reading fiction bo...10028.000000
8848Marching Powder: A True Story of Friendship, C...0.070564to-read favorites currently-reading fiction bo...10019.000000
8849Batman: Hush0.070560to-read fantasy favorites currently-reading yo...10031.000000
8850The Ice Princess (Patrik Hedström, #1)0.070554to-read favorites currently-reading fiction bo...10031.000000
8851The Revenge of the Baby-Sat0.070521to-read fantasy favorites currently-reading yo...10030.000000
8852Silent Prey (Lucas Davenport #4)0.070487to-read favorites currently-reading fiction bo...10031.000000
8853Anya's Ghost0.070479to-read fantasy favorites currently-reading yo...10018.000000
885412th of Never (Women's Murder Club, #12)0.070473to-read favorites currently-reading fiction bo...10029.000000
8855Marie Antoinette: The Journey0.070453to-read favorites currently-reading fiction bo...10029.000000
8856Groundwork of the Metaphysics of Morals0.070449to-read currently-reading owned-books default ...10019.000000
8857Don't Blink0.070439to-read favorites currently-reading fiction bo...10026.000000
8858The Vagina Monologues0.070416to-read favorites currently-reading fiction bo...10027.000000
8859The First Rule (Elvis Cole, #13; Joe Pike, #2)0.070408to-read favorites currently-reading fiction bo...10024.000000
8860Bear Snores On0.070306to-read fantasy favorites currently-reading fi...10013.000000
8861Teacher Man (Frank McCourt, #3)0.070295to-read favorites currently-reading fiction bo...10030.000000
8862Lucky Man0.070284to-read favorites currently-reading books-i-ow...10026.000000
8863P is for Peril (Kinsey Millhone, #16)0.070250to-read favorites currently-reading fiction bo...10029.000000
8864Tinkers0.070249to-read favorites currently-reading fiction bo...10030.000000
8865Loves Music, Loves to Dance0.070231to-read favorites currently-reading fiction bo...10030.000000
8866Unlucky 13 (Women’s Murder Club, #13)0.070206to-read favorites currently-reading fiction bo...10029.000000
8867Make Way for Ducklings0.070176to-read favorites currently-reading fiction bo...10015.000000
8868Love Left Behind0.070173to-read favorites currently-reading young-adul...10023.000000
8869The Boy Who Came Back from Heaven: A Remarkabl...0.070169to-read fiction books-i-own owned owned-books ...10015.000000
8870Zero to One: Notes on Startups, or How to Buil...0.070141to-read favorites currently-reading books-i-ow...10023.000000
8871Ice Cold (Rizzoli & Isles, #8)0.070132to-read favorites currently-reading books-i-ow...10027.000000
8872Sweeney Todd: The Demon Barber of Fleet Street0.070119to-read favorites currently-reading fiction bo...10018.000000
8873And the Band Played On: Politics, People, and ...0.070119to-read favorites currently-reading books-i-ow...10025.000000
8874The Bone Collector (Lincoln Rhyme, #1)0.070109to-read favorites currently-reading fiction bo...10032.000000
8875Random Family: Love, Drugs, Trouble, and Comin...0.070103to-read favorites currently-reading fiction bo...10023.000000
8876Wings of Fire: An Autobiography0.070096to-read currently-reading books-i-own owned fa...10023.000000
887715th Affair (Women's Murder Club #15)0.070095to-read favorites currently-reading fiction bo...10020.000000
8878The Apostle (Scot Harvath, #8)0.070087to-read favorites currently-reading fiction bo...10028.000000
8879The Philosophy of Andy Warhol (From A to B and...0.070020to-read favorites currently-reading fiction bo...10022.000000
8880The Six Wives of Henry VIII0.069972to-read favorites currently-reading fiction bo...10029.000000
8881Shrill: Notes from a Loud Woman0.069911to-read favorites currently-reading books-i-ow...10017.000000
8882The Perfect Storm: A True Story of Men Against...0.069886to-read favorites currently-reading fiction bo...10026.000000
8883المرحوÙ0.069868to-read fantasy favorites currently-reading fi...10023.000000
8884I'll Be Seeing You0.069814to-read favorites currently-reading fiction bo...10027.000000
8885The Story of My Experiments With Truth0.069751to-read favorites currently-reading books-i-ow...10029.000000
8886The Bear and the Dragon (Jack Ryan Universe, #11)0.069675to-read favorites currently-reading fiction bo...10030.000000
8887Life Application Study Bible: NIV0.069634to-read favorites currently-reading books-i-ow...10023.000000
8888Monday Mourning (Temperance Brennan, #7)0.069631to-read currently-reading fiction books-i-own ...10029.000000
8889Eleven on Top (Stephanie Plum, #11)0.069593to-read favorites currently-reading fiction bo...10028.000000
8890The Black Ice (Harry Bosch, #2; Harry Bosch Un...0.069567to-read favorites currently-reading fiction bo...10027.000000
8891The Places in Between0.069525to-read favorites currently-reading fiction bo...10026.000000
8892Take the Cannoli0.069518to-read favorites currently-reading fiction bo...10021.000000
8893Dry0.069511to-read favorites currently-reading fiction bo...10031.000000
8894Amusing Ourselves to Death: Public Discourse i...0.069498to-read favorites currently-reading books-i-ow...10022.000000
8895Rich Dad's Guide to Investing: What the Rich I...0.069474to-read favorites currently-reading books-i-ow...10025.000000
8896Finding the Dream (Dream Trilogy #3)0.069473to-read fantasy favorites currently-reading fi...10033.000000
8897Clear and Present Danger (Jack Ryan Universe, #6)0.069463to-read favorites currently-reading fiction bo...10029.000000
8898Black List (Scot Harvath, #11)0.069422to-read favorites currently-reading fiction bo...10029.000000
8899Possible Side Effects0.069418to-read favorites currently-reading fiction bo...10027.000000
8900Fatal Voyage (Temperance Brennan, #4)0.069418to-read favorites currently-reading fiction bo...10030.000000
8901Flow: The Psychology of Optimal Experience0.069418to-read favorites currently-reading books-i-ow...10024.000000
8902أقوم قيلا0.069401to-read favorites currently-reading books-i-ow...10022.000000
8903How Will You Measure Your Life?0.069376to-read favorites currently-reading books-i-ow...10022.000000
8904Not Without My Daughter0.069375to-read favorites currently-reading fiction ow...10023.000000
8905الفيل الأزرق0.069368to-read fantasy favorites currently-reading fi...10023.000000
8906Persepolis: The Story of a Childhood (Persepol...0.069337to-read favorites currently-reading young-adul...10021.000000
8907After the Night0.069327to-read favorites currently-reading fiction bo...10027.000000
8908The Going-To-Bed Book0.069294to-read favorites currently-reading fiction bo...10019.000000
8909Steel Magnolias (DPS Acting Edition)0.069288to-read favorites currently-reading fiction bo...10014.000000
8910The Face0.069283to-read fantasy favorites currently-reading fi...10033.000000
8911Who Will Cry When You Die? Life Lessons from t...0.069265to-read favorites currently-reading fiction bo...10023.000000
8912The Complete Persepolis0.069259to-read favorites currently-reading young-adul...10026.000000
8913The Honest Truth About Dishonesty: How We Lie ...0.069254to-read favorites currently-reading books-i-ow...10018.000000
8914Headhunters0.069251to-read favorites currently-reading fiction bo...10029.000000
8915A Return to Love: Reflections on the Principle...0.069193to-read favorites currently-reading books-i-ow...10023.000000
8916Astonishing X-Men, Volume 2: Dangerous0.069182to-read fantasy favorites currently-reading yo...10026.000000
8917M is for Malice (Kinsey Millhone, #13)0.069151to-read favorites currently-reading fiction bo...10031.000000
8918Secret Prey (Lucas Davenport, #9)0.069136to-read favorites currently-reading fiction bo...10029.000000
8919The Aquitaine Progression0.069105to-read favorites currently-reading fiction bo...10025.000000
8920Rubicon: The Last Years of the Roman Republic0.069103to-read favorites currently-reading fiction bo...10030.000000
8921The 4-Hour Workweek0.069042to-read favorites currently-reading books-i-ow...10027.000000
8922The Redbreast (Harry Hole, #3)0.069032to-read favorites currently-reading fiction bo...10029.000000
8923Superman: Whatever Happened to the Man of Tomo...0.069003to-read fantasy favorites currently-reading fi...10020.000000
8924Zen Mind, Beginner's Mind: Informal Talks on Z...0.068974to-read favorites currently-reading books-i-ow...10029.000000
8925Tales of a Female Nomad: Living at Large in th...0.068943to-read favorites currently-reading fiction bo...10021.000000
8926Fear and Trembling0.068927to-read favorites currently-reading fiction bo...10023.000000
8927Owen0.068871to-read fantasy favorites currently-reading fi...10015.000000
8928Ways of Seeing0.068869to-read favorites currently-reading books-i-ow...10023.000000
8929Grave Secrets (Temperance Brennan, #5)0.068793to-read favorites currently-reading fiction bo...10030.000000
8930Maximum Ride, Vol. 1 (Maximum Ride: The Manga,...0.068777to-read fantasy currently-reading young-adult ...10027.000000
8931Batman, Volume 1: The Court of Owls0.068750to-read fantasy favorites currently-reading yo...10025.000000
89321st to Die (Women's Murder Club, #1)0.068735to-read favorites currently-reading fiction bo...10032.000000
8933Private London (Private #4)0.068726to-read favorites currently-reading fiction bo...10028.000000
8934The Paradox of Choice: Why More Is Less0.068718to-read favorites currently-reading books-i-ow...10020.000000
8935The Lucifer Effect: Understanding How Good Peo...0.068676to-read favorites currently-reading books-i-ow...10021.000000
8936Dark of the Moon (Virgil Flowers, #1)0.068664to-read favorites currently-reading fiction bo...10026.000000
8937Mountains Beyond Mountains: The Quest of Dr. P...0.068648to-read favorites currently-reading fiction bo...10023.000000
8938Eye of the Storm (Sean Dillon, #1)0.068606to-read favorites currently-reading fiction bo...10028.000000
8939Hot Ticket (Sinners on Tour, #3)0.068598to-read favorites currently-reading fiction bo...10026.000000
8940Captivating: Unveiling the Mystery of a Woman'...0.068568to-read favorites currently-reading books-i-ow...10028.000000
8941الحرافيش0.068545to-read favorites currently-reading fiction bo...10027.000000
8942Sylvester and the Magic Pebble0.068478to-read fantasy favorites currently-reading fi...10017.000000
8943Sudden Prey (Lucas Davenport, #8)0.068436to-read favorites currently-reading fiction bo...10031.000000
8944River, Cross My Heart0.068370to-read favorites currently-reading fiction bo...10024.000000
8945Innocent (Kindle County Legal Thriller, #8)0.068344to-read favorites currently-reading fiction bo...10025.000000
8946The Secret Art of Dr. Seuss0.068337to-read fantasy favorites currently-reading yo...10016.000000
8947Auschwitz: A Doctor's Eyewitness Account0.068305to-read favorites currently-reading books-i-ow...10021.000000
8948The Power of Positive Thinking0.068286to-read favorites currently-reading books-i-ow...10025.000000
8949An Army at Dawn: The War in North Africa, 1942...0.068285to-read favorites currently-reading fiction bo...10026.000000
8950The Watchman (Elvis Cole, #11; Joe Pike, #1)0.068278to-read favorites currently-reading fiction bo...10027.000000
8951Black Hills0.068255to-read favorites currently-reading fiction bo...10033.000000
8952Laskar Pelangi (Tetralogi Laskar Pelangi, #1)0.068251to-read favorites currently-reading young-adul...10024.000000
8953What to Expect the First Year (What to Expect)0.068197to-read favorites currently-reading books-i-ow...10024.000000
8954Mouse Paint0.068189to-read favorites currently-reading fiction bo...10011.000000
8955Hot Six (Stephanie Plum, #6)0.068181to-read favorites currently-reading fiction bo...10028.000000
8956From Beirut to Jerusalem0.068160to-read favorites currently-reading fiction bo...10024.000000
8957The Defector (Gabriel Allon, #9)0.068156to-read favorites currently-reading fiction bo...10027.000000
8958The Scarecrow (Jack McEvoy, #2)0.068145to-read favorites currently-reading fiction bo...10027.000000
8959Radical: Taking Back Your Faith from the Ameri...0.068137to-read favorites currently-reading books-i-ow...10026.000000
8960True Blue0.068127to-read favorites currently-reading fiction bo...10028.000000
8961The Speed of Trust: The One Thing that Changes...0.068126to-read favorites currently-reading books-i-ow...10025.000000
8962First They Killed My Father: A Daughter of Cam...0.068116to-read favorites currently-reading young-adul...10029.000000
8963High Five (Stephanie Plum, #5)0.068115to-read favorites currently-reading fiction bo...10026.000000
8964Grounded (Up in the Air, #3)0.068096to-read favorites currently-reading fiction bo...10025.000000
8965The Greater Journey: Americans in Paris0.068088to-read favorites currently-reading fiction bo...10025.000000
8966NurtureShock: New Thinking About Children0.068060to-read favorites currently-reading books-i-ow...10023.000000
8967The Power of Full Engagement: Managing Energy,...0.068042to-read favorites currently-reading books-i-ow...10019.000000
8968Don't Let the Pigeon Stay Up Late!0.067904to-read fantasy favorites currently-reading fi...10015.000000
8969Scott Pilgrim, Volume 4: Scott Pilgrim Gets It...0.067901to-read fantasy favorites currently-reading yo...10029.000000
8970Black Like Me0.067889to-read favorites currently-reading young-adul...10028.000000
8971Crazy Love: Overwhelmed by a Relentless God0.067884to-read favorites currently-reading books-i-ow...10030.000000
8972The Art of Happiness0.067855to-read favorites currently-reading books-i-ow...10030.000000
8973T is for Trespass (Kinsey Millhone, #20)0.067823to-read favorites currently-reading fiction bo...10028.000000
8974The Neon Rain (Dave Robicheaux, #1)0.067786to-read favorites currently-reading fiction bo...10026.000000
8975The Blessing Way (Leaphorn & Chee, #1)0.067722to-read favorites currently-reading fiction bo...10026.000000
8976Superman: Earth One, Volume 10.067692to-read fantasy favorites currently-reading yo...10027.000000
8977The Upanishads: Translations from the Sanskrit0.067690to-read currently-reading fiction books-i-own ...10019.000000
8978Chosen Prey (Lucas Davenport, #12)0.067666to-read favorites currently-reading fiction bo...10031.000000
8979Simple Genius (Sean King & Michelle Maxwell, #3)0.067665to-read favorites currently-reading fiction bo...10030.000000
8980Click, Clack, Moo: Cows That Type0.067564to-read favorites currently-reading fiction bo...10012.000000
8981Chesapeake Blue (Chesapeake Bay Saga, #4)0.067502to-read favorites currently-reading fiction bo...10032.000000
8982Shattered0.067495to-read fantasy favorites currently-reading fi...10024.000000
8983Screw It, Let's Do It: Lessons In Life0.067474to-read favorites currently-reading books-i-ow...10025.000000
8984Medium Raw: A Bloody Valentine to the World of...0.067462to-read favorites currently-reading fiction bo...10023.000000
8985The Napping House0.067449to-read fantasy favorites currently-reading fi...10013.000000
8986Gorillas in the Mist0.067418to-read favorites currently-reading books-i-ow...10019.000000
8987Prince of Fire (Gabriel Allon, #5)0.067390to-read favorites currently-reading fiction bo...10026.000000
8988Dibs in Search of Self0.067387to-read favorites currently-reading young-adul...10017.000000
8989Last Words0.067347to-read favorites currently-reading fiction bo...10025.000000
8990Ghost Soldiers: The Epic Account of World War ...0.067317to-read favorites currently-reading fiction bo...10025.000000
8991A Walk Across America0.067287to-read favorites currently-reading young-adul...10020.000000
8992The Irresistible Revolution: Living as an Ordi...0.067264to-read favorites currently-reading fiction bo...10027.000000
8993A Whole New Mind: Why Right-Brainers Will Rule...0.067250to-read favorites currently-reading books-i-ow...10022.000000
8994Simply Irresistible (Chinooks Hockey Team, #1)0.067244to-read favorites currently-reading fiction bo...10028.000000
8995Cross My Heart (Alex Cross, #21)0.067223to-read favorites currently-reading fiction bo...10028.000000
8996Running with Scissors0.067198to-read favorites currently-reading young-adul...10033.000000
8997Rework0.067179to-read favorites currently-reading books-i-ow...10026.000000
8998Velocity0.067167to-read favorites currently-reading fiction bo...10032.000000
8999Leave Me Breathless (Ross Siblings, #3)0.067159to-read favorites currently-reading fiction bo...10025.000000
9000Getting to Yes: Negotiating an Agreement Witho...0.067140to-read favorites currently-reading books-i-ow...10025.000000
9001A History of the World in 6 Glasses0.067136to-read favorites currently-reading books-i-ow...10024.000000
9002Track of the Cat (Anna Pigeon, #1)0.067130to-read favorites currently-reading fiction bo...10027.000000
9003Love Wins: A Book About Heaven, Hell, and the ...0.067088to-read favorites currently-reading books-i-ow...10026.000000
9004Savage Inequalities: Children in America's Sch...0.067062to-read favorites currently-reading books-i-ow...10017.000000
9005The Te of Piglet0.067055to-read favorites currently-reading young-adul...10027.000000
9006Money, and the Law of Attraction: Learning to ...0.067049to-read favorites currently-reading books-i-ow...10017.000000
9007Chicka Chicka Boom Boom0.067044to-read favorites currently-reading fiction bo...10014.000000
9008Police (Harry Hole, #10)0.066989to-read favorites currently-reading fiction bo...10029.000000
9009With the Old Breed: At Peleliu and Okinawa0.066964to-read favorites currently-reading books-i-ow...10024.000000
9010The Carrot Seed0.066959to-read favorites currently-reading fiction ow...10013.000000
9011Chelsea Chelsea Bang Bang0.066947to-read favorites currently-reading fiction bo...10024.000000
9012Evil at Heart (Archie Sheridan & Gretchen Lowe...0.066884to-read favorites currently-reading fiction bo...10027.000000
9013Tales of the South Pacific0.066733to-read favorites currently-reading fiction bo...10028.000000
9014This One Summer0.066691to-read favorites currently-reading young-adul...10017.000000
9015The Path Between the Seas: The Creation of the...0.066633to-read favorites currently-reading fiction bo...10023.000000
9016Standing for Something: 10 Neglected Virtues T...0.066627to-read favorites currently-reading young-adul...10024.000000
9017The Spirit Catches You and You Fall Down: A Hm...0.066617to-read favorites currently-reading fiction bo...10021.000000
9018Finger Lickin' Fifteen (Stephanie Plum, #15)0.066613to-read favorites currently-reading fiction bo...10027.000000
9019Pride of Baghdad0.066609to-read fantasy favorites currently-reading yo...10024.000000
9020Love and Respect: The Love She Most Desires; T...0.066590to-read favorites currently-reading books-i-ow...10028.000000
9021Reaper's Legacy (Reapers MC, #2)0.066560to-read favorites currently-reading fiction bo...10021.000000
9022Carolina Moon0.066560to-read favorites currently-reading fiction bo...10032.000000
9023Surprised by Joy: The Shape of My Early Life0.066540to-read favorites currently-reading books-i-ow...10028.000000
9024DC: The New Frontier, Volume 10.066526to-read fantasy favorites currently-reading fi...10024.000000
9025Shock Wave (Virgil Flowers, #5)0.066509to-read favorites currently-reading fiction bo...10023.000000
9026Blow Fly (Kay Scarpetta, #12)0.066506to-read favorites currently-reading fiction bo...10029.000000
9027O is for Outlaw (Kinsey Millhone, #15)0.066503to-read favorites currently-reading fiction bo...10030.000000
9028The Man from Beijing0.066499to-read favorites currently-reading fiction bo...10024.000000
9029Manufacturing Consent: The Political Economy o...0.066477to-read favorites currently-reading books-i-ow...10023.000000
9030Awaken the Giant Within: How to Take Immediate...0.066474to-read favorites currently-reading books-i-ow...10021.000000
9031Social Intelligence: The New Science of Human ...0.066472to-read favorites currently-reading books-i-ow...10024.000000
9032Mennonite in a Little Black Dress: A Memoir of...0.066471to-read favorites currently-reading fiction bo...10027.000000
9033Blaze0.066463to-read fantasy favorites currently-reading fi...10034.000000
9034The Game: Penetrating the Secret Society of Pi...0.066458to-read favorites currently-reading fiction bo...10028.000000
9035Women Who Love Too Much: When You Keep Wishing...0.066441to-read favorites currently-reading books-i-ow...10020.000000
9036American on Purpose: The Improbable Adventures...0.066407to-read favorites currently-reading books-i-ow...10021.000000
9037Patriot Games (Jack Ryan Universe, #2)0.066396to-read favorites currently-reading fiction bo...10030.000000
9038The Reversal (Harry Bosch, #16; Mickey Haller,...0.066379to-read favorites currently-reading fiction bo...10025.000000
9039Seven Up (Stephanie Plum, #7)0.066323to-read favorites currently-reading fiction bo...10029.000000
90401493: Uncovering the New World Columbus Created0.066318to-read favorites currently-reading fiction bo...10022.000000
9041Creed (Unfinished Hero, #2)0.066298to-read favorites currently-reading fiction bo...10025.000000
9042Forever My Girl (The Beaumont Series, #1)0.066275to-read favorites currently-reading young-adul...10022.000000
9043From Hell0.066253to-read fantasy favorites currently-reading fi...10030.000000
9044Inner Harbor (Chesapeake Bay Saga, #3)0.066243to-read favorites currently-reading fiction bo...10033.000000
9045March: Book One (March, #1)0.066225to-read favorites currently-reading young-adul...10017.000000
9046Open Season0.066199to-read favorites currently-reading fiction bo...10028.000000
9047While My Pretty One Sleeps0.066176to-read favorites currently-reading fiction bo...10023.000000
9048The Power of Intention: Learning to Co-create ...0.066158to-read favorites currently-reading books-i-ow...10025.000000
9049Dress Your Family in Corduroy and Denim0.066126to-read favorites currently-reading fiction bo...10030.000000
9050Strength in What Remains: A Journey of Remembr...0.066080to-read favorites currently-reading fiction bo...10021.000000
9051Trunk Music (Harry Bosch, #5; Harry Bosch Univ...0.066068to-read favorites currently-reading fiction bo...10026.000000
9052The Secret Race: Inside the Hidden World of th...0.066039to-read favorites currently-reading books-i-ow...10019.000000
9053Joni: An Unforgettable Story0.066030to-read favorites currently-reading young-adul...10019.000000
9054Reviving Ophelia: Saving the Selves of Adolesc...0.066023to-read favorites currently-reading young-adul...10018.000000
9055Incidents in the Life of a Slave Girl0.066001to-read favorites currently-reading fiction bo...10021.000000
9056Economics in One Lesson: The Shortest & Surest...0.065974to-read favorites currently-reading books-i-ow...10026.000000
9057The Autobiography of Benjamin Franklin0.065962to-read favorites fiction books-i-own owned ow...10028.000000
9058Founding Brothers: The Revolutionary Generation0.065956to-read favorites currently-reading books-i-ow...10025.000000
9059Hell's Corner (Camel Club, #5)0.065953to-read favorites currently-reading fiction bo...10030.000000
9060Getting Stoned with Savages: A Trip Through th...0.065927to-read favorites currently-reading fiction bo...10021.000000
9061The Tibetan Book of Living and Dying0.065904to-read favorites currently-reading books-i-ow...10022.000000
9062Execution: The Discipline of Getting Things Done0.065877to-read favorites currently-reading books-i-ow...10024.000000
9063A Girl Named Zippy0.065875to-read favorites currently-reading fiction bo...10022.000000
9064Lost Light (Harry Bosch, #9; Harry Bosch Unive...0.065871to-read favorites currently-reading fiction bo...10030.000000
9065Secrets of the Millionaire Mind: Mastering the...0.065818to-read favorites currently-reading books-i-ow...10025.000000
9066When Bad Things Happen to Good People0.065792to-read favorites currently-reading books-i-ow...10022.000000
9067David Goes To School0.065769to-read favorites currently-reading fiction bo...10015.000000
9068Scott Pilgrim, Volume 2: Scott Pilgrim vs. The...0.065754to-read fantasy favorites currently-reading yo...10032.000000
9069Naked Economics: Undressing the Dismal Science0.065695to-read favorites currently-reading books-i-ow...10022.000000
9070The Heavenly Man: The Remarkable True Story of...0.065674to-read favorites currently-reading books-i-ow...10022.000000
9071My Life0.065656to-read favorites currently-reading fiction bo...10026.000000
9072Rules of Prey (Lucas Davenport, #1)0.065606to-read favorites currently-reading fiction bo...10031.000000
9073عزازيل0.065604to-read fantasy favorites currently-reading fi...10025.000000
9074Twelve Sharp (Stephanie Plum, #12)0.065596to-read favorites currently-reading fiction bo...10029.000000
9075Battle Hymn of the Tiger Mother0.065569to-read favorites currently-reading fiction bo...10022.000000
9076The Hole in Our Gospel: What does God expect o...0.065560to-read favorites currently-reading books-i-ow...10022.000000
9077The Black Box (Harry Bosch, #18; Harry Bosch U...0.065549to-read favorites currently-reading fiction bo...10027.000000
9078Takedown (Scot Harvath, #5)0.065547to-read favorites currently-reading fiction bo...10024.000000
9079Sail0.065495to-read favorites currently-reading fiction bo...10031.000000
9080Le bleu est une couleur chaude0.065447to-read favorites currently-reading young-adul...10020.000000
9081Waiter Rant: Thanks for the Tip-Confessions of...0.065433to-read favorites currently-reading fiction bo...10026.000000
9082A Perfect Evil (Maggie O'Dell, #1)0.065402to-read favorites currently-reading fiction bo...10027.000000
9083Bringing Up Bébé: One American Mother Discov...0.065395to-read favorites currently-reading owned owne...10014.000000
9084Praying God's Word: Breaking Free From Spiritu...0.065377to-read favorites currently-reading books-i-ow...10020.000000
9085Beautifully Damaged (Beautifully Damaged, #1)0.065334to-read currently-reading young-adult fiction ...10020.000000
9086N is for Noose (Kinsey Millhone, #14)0.065309to-read favorites currently-reading fiction bo...10030.000000
9087The Audacity of Hope: Thoughts on Reclaiming t...0.065293to-read favorites currently-reading books-i-ow...10024.000000
9088Batman: The Killing Joke0.065289to-read fantasy favorites currently-reading fi...10032.000000
9089Batman, Volume 3: Death of the Family0.065273to-read fantasy favorites currently-reading yo...10025.000000
9090Autumn in Paris0.065268to-read favorites currently-reading young-adul...10022.000000
9091The Last Coyote (Harry Bosch, #4; Harry Bosch ...0.065247to-read favorites currently-reading fiction bo...10026.000000
9092How to Talk to Anyone: 92 Little Tricks for Bi...0.065179to-read favorites currently-reading books-i-ow...10021.000000
9093King Leopold's Ghost0.065173to-read favorites currently-reading fiction bo...10025.000000
9094Cockroaches (Harry Hole, #2)0.065172to-read favorites currently-reading fiction bo...10029.000000
9095Mufaro's Beautiful Daughters: An African Tale0.065171to-read fantasy favorites currently-reading yo...10012.000000
9096The Places That Scare You: A Guide to Fearless...0.065169to-read favorites currently-reading books-i-ow...10021.000000
909790 Minutes in Heaven: A True Story of Death an...0.065151to-read favorites currently-reading fiction bo...10024.000000
9098Operating Instructions: A Journal of My Son's ...0.065138to-read favorites currently-reading fiction bo...10021.000000
9099Pretend You Don't See Her0.065091to-read favorites currently-reading fiction bo...10026.000000
9100Dead End in Norvelt0.065020to-read favorites currently-reading young-adul...10017.000000
9101Batman: The Long Halloween0.064996to-read fantasy favorites currently-reading fi...10031.000000
9102If Chins Could Kill: Confessions of a B-Movie ...0.064971to-read favorites currently-reading fiction bo...10027.000000
9103Darkness Visible: A Memoir of Madness0.064942favorites fiction owned favourites owned-books...10022.000000
9104The Sum of All Fears (Jack Ryan Universe, #7)0.064936to-read favorites currently-reading fiction bo...10030.000000
9105Jimmy Corrigan, the Smartest Kid on Earth0.064933to-read favorites currently-reading fiction bo...10026.000000
9106Contagious: Why Things Catch On0.064930to-read favorites currently-reading books-i-ow...10022.000000
9107The Faithful Spy (John Wells, #1)0.064887to-read favorites currently-reading fiction bo...10029.000000
9108No Ordinary Time: Franklin and Eleanor Rooseve...0.064856to-read favorites currently-reading books-i-ow...10026.000000
9109Avatar: The Last Airbender (The Search, #1)0.064837to-read fantasy favorites currently-reading yo...10028.000000
9110L.A. Requiem (Elvis Cole, #8)0.064815to-read favorites currently-reading fiction bo...10027.000000
9111Paris to the Moon0.064804to-read favorites currently-reading fiction bo...10029.000000
9112Don't Waste Your Life0.064803to-read favorites currently-reading young-adul...10030.000000
9113Bones to Ashes (Temperance Brennan, #10)0.064799to-read favorites currently-reading fiction bo...10029.000000
9114Soul Eater, Vol. 02 (Soul Eater, #2)0.064792to-read fantasy favorites currently-reading yo...10025.000000
9115Holy Cow: An Indian Adventure0.064770to-read favorites currently-reading fiction bo...10026.000000
9116The Endurance: Shackleton's Legendary Antarcti...0.064739to-read favorites currently-reading young-adul...10022.000000
9117The Long Hard Road Out of Hell0.064715to-read favorites currently-reading books-i-ow...10029.000000
9118The $100 Startup: Reinvent the Way You Make a ...0.064657to-read favorites currently-reading books-i-ow...10022.000000
9119The First World War0.064647to-read favorites currently-reading books-i-ow...10023.000000
9120The Snowy Day0.064640to-read favorites currently-reading fiction bo...10014.000000
9121How to Make Love Like a Porn Star: A Cautionar...0.064638to-read favorites currently-reading fiction bo...10026.000000
9122The Miracle of Mindfulness: An Introduction to...0.064595to-read favorites currently-reading books-i-ow...10026.000000
9123Black Cherry Blues (Dave Robicheaux, #3)0.064590to-read favorites currently-reading fiction bo...10021.000000
9124Ten Apples Up On Top!0.064554to-read favorites currently-reading fiction bo...10015.000000
9125The Billionaire's Obsession ~ Simon (The Billi...0.064528to-read favorites currently-reading fiction bo...10023.000000
9126The Imitation of Christ0.064513to-read favorites currently-reading books-i-ow...10024.000000
9127Cruel & Unusual (Kay Scarpetta, #4)0.064490to-read favorites currently-reading fiction bo...10031.000000
9128Broken Prey (Lucas Davenport, #16)0.064474to-read favorites currently-reading fiction bo...10028.000000
9129Ultimate Spider-Man, Volume 1: Power and Respo...0.064465to-read fantasy favorites currently-reading yo...10027.000000
9130Shine Not Burn (Shine Not Burn, #1)0.064443to-read favorites currently-reading fiction bo...10023.000000
9131The Twelve Caesars0.064423to-read favorites currently-reading fiction bo...10026.000000
9132A Brief History of Seven Killings0.064369to-read favorites currently-reading fiction bo...10033.000000
9133Traveling Mercies: Some Thoughts on Faith0.064358to-read favorites currently-reading fiction bo...10025.000000
9134Why We Get Fat: And What to Do About It0.064349to-read favorites currently-reading books-i-ow...10023.000000
9135L is for Lawless (Kinsey Millhone, #12)0.064348to-read favorites currently-reading fiction bo...10029.000000
9136Phantom (Harry Hole, #9)0.064334to-read favorites currently-reading fiction bo...10027.000000
9137Chill Factor0.064331to-read favorites currently-reading fiction bo...10029.000000
9138The Center Cannot Hold: My Journey Through Mad...0.064299to-read favorites currently-reading books-i-ow...10021.000000
9139For Women Only: What You Need to Know about th...0.064252to-read favorites currently-reading books-i-ow...10022.000000
9140The Cross and the Switchblade0.064233to-read favorites currently-reading books-i-ow...10023.000000
9141Look Me in the Eye: My Life with Asperger's0.064228to-read favorites currently-reading books-i-ow...10023.000000
9142The Scarlatti Inheritance0.064226to-read favorites currently-reading fiction bo...10031.000000
9143Drinking: A Love Story0.064218to-read favorites currently-reading books-i-ow...10021.000000
9144The Chamber0.064207to-read favorites currently-reading fiction bo...10027.000000
9145Threat Vector (Jack Ryan Universe, #15)0.064206to-read favorites currently-reading fiction bo...10030.000000
9146The Case for a Creator: A Journalist Investiga...0.064202to-read favorites currently-reading fiction bo...10023.000000
9147The Longest Day0.064149to-read favorites currently-reading fiction bo...10028.000000
9148Daytripper0.064118to-read fantasy favorites currently-reading fi...10024.000000
9149Sway: The Irresistible Pull of Irrational Beha...0.064085to-read favorites currently-reading books-i-ow...10018.000000
9150The Stone Monkey (Lincoln Rhyme, #4)0.064062to-read favorites currently-reading fiction bo...10034.000000
9151Wolverine: Origin0.064057to-read fantasy favorites currently-reading yo...10022.000000
9152Stolen Innocence: My Story of Growing Up in a ...0.064055to-read favorites currently-reading books-i-ow...10022.000000
9153The Villa0.064029to-read favorites currently-reading fiction bo...10033.000000
9154Preacher, Volume 5: Dixie Fried0.064011to-read fantasy favorites currently-reading fi...10022.000000
9155The Troubled Man (Kurt Wallander, #10)0.064001to-read favorites currently-reading fiction bo...10026.000000
9156Wishful Drinking0.063987to-read favorites currently-reading fiction bo...10021.000000
9157The Heart of a Woman0.063956to-read favorites currently-reading fiction bo...10025.000000
9158Predator (Kay Scarpetta, #14)0.063952to-read favorites currently-reading fiction bo...10030.000000
9159Pedagogy of the Oppressed0.063929to-read favorites currently-reading books-i-ow...10021.000000
9160Eat to Live: The Revolutionary Formula for Fas...0.063886to-read favorites currently-reading books-i-ow...10027.000000
9161The Odd Couple0.063874to-read favorites currently-reading fiction bo...10022.000000
9162Bound by Honor (Born in Blood Mafia Chronicles...0.063858to-read favorites currently-reading young-adul...10021.000000
9163Jesus Land0.063834to-read favorites currently-reading young-adul...10024.000000
9164The Hard Thing About Hard Things: Building a B...0.063833to-read favorites currently-reading books-i-ow...10023.000000
9165Dark Star Safari: Overland from Cairo to Cape ...0.063825to-read favorites currently-reading fiction bo...10023.000000
9166Hard Eight (Stephanie Plum, #8)0.063788to-read favorites currently-reading fiction bo...10027.000000
9167Fish: A Proven Way to Boost Morale and Improve...0.063787to-read favorites currently-reading fiction bo...10022.000000
9168The Mastery of Love: A Practical Guide to the ...0.063752to-read favorites currently-reading books-i-ow...10024.000000
9169Frida Kahlo: 1907-1954 Pain and Passion0.063703to-read favorites currently-reading fiction bo...10012.000000
9170The Brass Verdict (Harry Bosch, #14; Mickey Ha...0.063699to-read favorites currently-reading fiction bo...10027.000000
9171My Horizontal Life: A Collection of One-Night ...0.063697to-read favorites currently-reading fiction bo...10023.000000
9172A Stranger Is Watching0.063682to-read favorites currently-reading fiction bo...10023.000000
9173Double Time (Sinners on Tour, #5)0.063674to-read favorites currently-reading fiction bo...10022.000000
9174The Gift of Therapy: An Open Letter to a New G...0.063667to-read favorites currently-reading books-i-ow...10017.000000
9175Life Together: The Classic Exploration of Chri...0.063664to-read favorites currently-reading books-i-ow...10023.000000
9176Tintin in the Land of the Soviets (Tintin #1)0.063642to-read favorites young-adult fiction books-i-...10024.000000
9177The Botany of Desire: A Plant's-Eye View of th...0.063621to-read favorites currently-reading fiction bo...10022.000000
9178Spying in High Heels (High Heels, #1)0.063609to-read favorites currently-reading fiction bo...10021.000000
9179The Matlock Paper0.063602to-read favorites currently-reading fiction bo...10028.000000
9180Hateship, Friendship, Courtship, Loveship, Mar...0.063586to-read favorites currently-reading fiction bo...10030.000000
9181The Postcard Killers0.063582to-read favorites currently-reading fiction bo...10030.000000
9182Panserhjerte (Harry Hole, #8)0.063563to-read favorites currently-reading fiction bo...10031.000000
9183The Ragamuffin Gospel: Good News for the Bedra...0.063556to-read favorites currently-reading books-i-ow...10029.000000
9184The Long Tail: Why the Future of Business is S...0.063539to-read favorites currently-reading books-i-ow...10022.000000
9185The First 90 Days, Updated and Expanded: Criti...0.063535to-read favorites currently-reading books-i-ow...10024.000000
9186Living Buddha, Living Christ0.063520to-read favorites currently-reading books-i-ow...10025.000000
9187A Man Named Dave (Dave Pelzer #3)0.063480to-read favorites currently-reading young-adul...10028.000000
9188Wethering the Storm (The Storm, #2)0.063355to-read favorites currently-reading books-i-ow...10021.000000
9189Axel (Corps Security, #1)0.063353to-read favorites currently-reading fiction bo...10023.000000
9190Born a Crime: Stories From a South African Chi...0.063344to-read favorites currently-reading books-i-ow...10018.000000
9191Sex at Dawn: The Prehistoric Origins of Modern...0.063278to-read favorites currently-reading books-i-ow...10024.000000
9192Hornet's Nest (Andy Brazil, #1)0.063254to-read favorites currently-reading fiction bo...10028.000000
9193Parts (Parts, #1)0.063246to-read favorites currently-reading fiction bo...10011.000000
9194Shadow Prey (Lucas Davenport, #2)0.063236to-read favorites currently-reading fiction bo...10031.000000
9195Unnatural Exposure (Kay Scarpetta, #8)0.063233to-read favorites currently-reading fiction bo...10030.000000
9196EntreLeadership: 20 Years of Practical Busines...0.063225to-read favorites currently-reading books-i-ow...10023.000000
9197Elizabeth: The Struggle for the Throne0.063199to-read favorites currently-reading fiction bo...10022.000000
9198The Bedwetter: Stories of Courage, Redemption,...0.063169to-read favorites currently-reading books-i-ow...10022.000000
9199It's Not About the Bike: My Journey Back to Life0.063144to-read favorites currently-reading fiction bo...10027.000000
9200The 20th Century Art Book0.063143to-read favorites currently-reading fiction bo...10015.000000
9201The Road to Serfdom0.063124to-read favorites currently-reading books-i-ow...10023.000000
92025 Very Good Reasons to Punch a Dolphin in the ...0.063103to-read favorites currently-reading fiction bo...10026.000000
9203Step on a Crack (Michael Bennett, #1)0.063089to-read favorites currently-reading fiction bo...10033.000000
9204Midnight Bayou0.063086to-read fantasy favorites currently-reading fi...10032.000000
9205Confessions of an Economic Hit Man0.063058to-read favorites currently-reading fiction bo...10025.000000
9206Sidetracked (Kurt Wallander, #5)0.062986to-read favorites currently-reading fiction bo...10027.000000
9207Mornings on Horseback0.062968to-read favorites currently-reading books-i-ow...10022.000000
9208Scar Tissue0.062945to-read favorites currently-reading books-i-ow...10035.000000
9209City of Bones (Harry Bosch, #8; Harry Bosch Un...0.062934to-read favorites currently-reading fiction bo...10028.000000
9210Giraffes Can't Dance0.062918to-read fantasy favorites currently-reading fi...10013.000000
9211Our Band Could Be Your Life: Scenes from the A...0.062887to-read favorites currently-reading books-i-ow...10018.000000
9212Stolen Prey (Lucas Davenport, #22)0.062828to-read favorites currently-reading fiction bo...10028.000000
9213Emotional Intelligence 2.00.062805to-read favorites currently-reading books-i-ow...10021.000000
9214Maktub0.062742to-read favorites currently-reading fiction ow...10016.000000
9215The Case for Christ0.062742to-read favorites currently-reading books-i-ow...10027.000000
9216The Vanished Man (Lincoln Rhyme, #5)0.062718to-read favorites currently-reading fiction bo...10033.000000
9217The Baller: A Down and Dirty Football Novel0.062646to-read favorites currently-reading fiction bo...10020.000000
9218Tears of Tess (Monsters in the Dark, #1)0.062640to-read favorites currently-reading fiction bo...10019.000000
9219Grace (Eventually): Thoughts on Faith0.062627to-read favorites currently-reading fiction bo...10023.000000
9220Gone (Michael Bennett, #6)0.062605to-read favorites currently-reading fiction bo...10029.000000
9221Unbearable Lightness: A Story of Loss and Gain0.062582to-read favorites currently-reading fiction bo...10024.000000
9222Batman: The Dark Knight Strikes Again (The Dar...0.062487to-read fantasy favorites currently-reading fi...10023.000000
9223The Post-American World0.062476to-read favorites currently-reading books-i-ow...10024.000000
9224My Stroke of Insight: A Brain Scientist's Pers...0.062465to-read favorites currently-reading books-i-ow...10020.000000
9225Plan B: Further Thoughts on Faith0.062433to-read favorites currently-reading fiction bo...10025.000000
9226Hour Game (Sean King & Michelle Maxwell, #2)0.062432to-read favorites currently-reading fiction bo...10032.000000
9227Colonel Roosevelt0.062371to-read favorites currently-reading books-i-ow...10023.000000
9228The Drop (Harry Bosch, #17; Harry Bosch Univer...0.062279to-read favorites currently-reading fiction bo...10028.000000
9229On Becoming Baby Wise: Giving Your Infant the ...0.062279to-read favorites currently-reading books-i-ow...10024.000000
9230The Drama of the Gifted Child: The Search for ...0.062266to-read favorites currently-reading books-i-ow...10023.000000
9231Mind Prey (Lucas Davenport, #7)0.062238to-read favorites currently-reading fiction bo...10030.000000
9232French Women Don't Get Fat: The Secret of Eati...0.062211to-read favorites currently-reading books-i-ow...10025.000000
9233Persepolis 2: The Story of a Return (Persepoli...0.062185to-read favorites currently-reading young-adul...10021.000000
9234Salt: A World History0.062131to-read favorites currently-reading books-i-ow...10025.000000
9235Color: A Natural History of the Palette0.062118to-read favorites currently-reading fiction bo...10025.000000
9236The Cardinal of the Kremlin (Jack Ryan Univers...0.062117to-read favorites currently-reading fiction bo...10026.000000
9237Tramp for the Lord0.062078to-read favorites currently-reading books-i-ow...10019.000000
9238No, David!0.062053to-read favorites currently-reading fiction bo...10012.000000
9239Gonzo: The Life of Hunter S. Thompson0.062048to-read favorites currently-reading fiction bo...10016.000000
9240John Adams0.062022to-read favorites currently-reading books-i-ow...10025.000000
9241Ten Big Ones (Stephanie Plum, #10)0.062012to-read favorites currently-reading fiction bo...10027.000000
9242The Wretched of the Earth0.062003to-read favorites currently-reading fiction bo...10022.000000
9243Sanctuary0.062003to-read favorites currently-reading fiction bo...10030.000000
9244Not a Fan: Becoming a Completely Committed Fol...0.061943to-read favorites currently-reading books-i-ow...10027.000000
9245com نسيان0.061904to-read favorites currently-reading fiction bo...10020.000000
9246The Year of Living Biblically: One Man's Humbl...0.061891to-read favorites currently-reading fiction bo...10024.000000
9247A Bridge Too Far0.061890to-read favorites currently-reading fiction bo...10023.000000
9248The Narrows (Harry Bosch, #10; Harry Bosch Uni...0.061870to-read favorites currently-reading fiction bo...10029.000000
9249The Finkler Question0.061864to-read favorites currently-reading fiction bo...10033.000000
9250How to Talk So Kids Will Listen & Listen So Ki...0.061852to-read favorites currently-reading books-i-ow...10027.000000
9251What's So Amazing About Grace?0.061846to-read favorites currently-reading books-i-ow...10027.000000
9252The New Jim Crow: Mass Incarceration in the Ag...0.061786to-read favorites currently-reading books-i-ow...10020.000000
9253Epilogue (The Dark Duet, #3)0.061759to-read favorites currently-reading fiction bo...10024.000000
9254Stay Hungry Stay Foolish0.061751to-read favorites currently-reading fiction bo...10017.000000
9255Blowback (Scot Harvath, #4)0.061716to-read favorites currently-reading fiction bo...10027.000000
9256Wait for Me (Against All Odds, #1)0.061693to-read favorites currently-reading fiction bo...10021.000000
9257Emotional Intelligence: Why It Can Matter More...0.061687to-read favorites currently-reading books-i-ow...10028.000000
9258Duck On A Bike0.061654to-read fantasy favorites currently-reading fi...10014.000000
9259The Cost of Discipleship0.061629to-read favorites currently-reading books-i-ow...10028.000000
9260The Seven Storey Mountain0.061596to-read favorites currently-reading fiction bo...10024.000000
9261Grain Brain: The Surprising Truth about Wheat,...0.061561to-read favorites currently-reading books-i-ow...10025.000000
9262Chasing the Dime0.061559to-read favorites currently-reading fiction bo...10026.000000
9263The Far Side Gallery 30.061550to-read fantasy favorites currently-reading yo...10025.000000
9264Hellblazer: Original Sins0.061507to-read fantasy favorites currently-reading fi...10020.000000
9265Angels Flight (Harry Bosch, #6; Harry Bosch Un...0.061445to-read favorites currently-reading fiction bo...10026.000000
9266The Sex Lives of Cannibals: Adrift in the Equa...0.061397to-read favorites currently-reading fiction bo...10025.000000
9267The Portable Atheist: Essential Readings for t...0.061383to-read favorites currently-reading books-i-ow...10027.000000
9268A Theory of Justice0.061355to-read favorites currently-reading books-i-ow...10016.000000
9269Time for Bed0.061309to-read favorites currently-reading fiction bo...10012.000000
9270The Power of a Praying Wife0.061269to-read favorites currently-reading books-i-ow...10024.000000
9271The Dip: A Little Book That Teaches You When t...0.061224to-read favorites currently-reading books-i-ow...10023.000000
9272Sin City: Una Dura Despedida, #1 de 30.061214to-read favorites currently-reading fiction bo...9411.702128
9273Drive: The Surprising Truth About What Motivat...0.061207to-read favorites currently-reading books-i-ow...10023.000000
9274A Single Shard0.061194to-read favorites currently-reading young-adul...10020.000000
9275One Step Behind (Kurt Wallander, #7)0.061191to-read favorites currently-reading fiction bo...10027.000000
9276Hark! A Vagrant0.061130to-read favorites currently-reading young-adul...10020.000000
9277From Head to Toe0.061102to-read favorites currently-reading fiction bo...10017.000000
9278The Five Dysfunctions of a Team: A Leadership ...0.061048to-read favorites currently-reading fiction bo...10024.000000
9279The Fall of Berlin 19450.060990to-read favorites currently-reading books-i-ow...10022.000000
9280Mayflower: A Story of Courage, Community, and War0.060985to-read favorites currently-reading fiction bo...10026.000000
9281Hide and Seek0.060983to-read favorites currently-reading fiction bo...10030.000000
9282The Coffin Dancer (Lincoln Rhyme, #2)0.060975to-read favorites currently-reading fiction bo...10032.000000
9283The Overlook (Harry Bosch, #13; Harry Bosch Un...0.060973to-read favorites currently-reading fiction bo...10028.000000
9284Clapton: The Autobiography0.060972to-read favorites currently-reading books-i-ow...10027.000000
9285When Rabbit Howls0.060968to-read favorites currently-reading fiction bo...10020.000000
9286Eyes of Prey (Lucas Davenport, #3)0.060953to-read favorites currently-reading fiction bo...10030.000000
9287Seduced in the Dark (The Dark Duet, #2)0.060948to-read favorites currently-reading fiction bo...10021.000000
9288Where Is God When It Hurts?0.060940to-read favorites currently-reading books-i-ow...10022.000000
9289My Friend Dahmer0.060933to-read favorites currently-reading young-adul...10016.000000
9290See You at the Top0.060901to-read favorites currently-reading books-i-ow...10020.000000
9291The 8th Habit: From Effectiveness to Greatness0.060874to-read favorites currently-reading books-i-ow...10025.000000
9292Body of Evidence (Kay Scarpetta, #2)0.060846to-read favorites currently-reading fiction bo...10031.000000
9293Batman, Volume 2: The City of Owls0.060788to-read fantasy favorites currently-reading yo...10022.000000
9294Full Black (Scot Harvath, #10)0.060766to-read favorites currently-reading fiction bo...10024.000000
9295Point of Origin (Kay Scarpetta, #9)0.060759to-read favorites currently-reading fiction bo...10029.000000
9296The Pursuit of Holiness0.060735to-read favorites currently-reading books-i-ow...10027.000000
929711th Hour (Women's Murder Club, #11)0.060727to-read favorites currently-reading fiction bo...10028.000000
9298The Devil's Star (Harry Hole, #5)0.060722to-read favorites currently-reading fiction bo...10029.000000
9299The Body Farm (Kay Scarpetta, #5)0.060714to-read favorites currently-reading fiction bo...10032.000000
9300The Fifth Woman (Kurt Wallander, #6)0.060712to-read favorites currently-reading fiction bo...10027.000000
9301Kaffir Boy: An Autobiography0.060659to-read favorites currently-reading young-adul...10022.000000
9302The Sacred Romance Drawing Closer To The Heart...0.060626to-read favorites currently-reading books-i-ow...10023.000000
9303The Dot0.060596to-read favorites currently-reading fiction bo...10012.000000
9304Burn (Michael Bennett, #7)0.060548to-read favorites currently-reading fiction bo...10025.000000
9305All That Remains (Kay Scarpetta, #3)0.060520to-read favorites currently-reading fiction bo...10033.000000
9306Night Prey (Lucas Davenport, #6)0.060504to-read favorites currently-reading fiction bo...10030.000000
9307Almost French: Love and a New Life in Paris0.060501to-read favorites currently-reading fiction bo...10022.000000
9308Ask and It Is Given: Learning to Manifest Your...0.060495to-read favorites currently-reading books-i-ow...10022.000000
9309Act of Treason (Mitch Rapp, #9)0.060480to-read favorites currently-reading fiction bo...10028.000000
9310Stalingrad: The Fateful Siege, 1942–19430.060478to-read favorites currently-reading fiction bo...10023.000000
9311Memorial Day (Mitch Rapp, #7)0.060467to-read favorites currently-reading fiction bo...10026.000000
9312History of Beauty0.060467to-read favorites currently-reading fiction bo...10019.000000
9313The Tycoon's Revenge (Baby for the Billionaire...0.060410to-read favorites currently-reading fiction bo...10022.000000
9314The First American: The Life and Times of Benj...0.060377to-read favorites currently-reading books-i-ow...10024.000000
9315Nudge: Improving Decisions About Health, Wealt...0.060371to-read favorites currently-reading books-i-ow...10020.000000
9316The Ipcress File (Secret File, #1)0.060353to-read favorites currently-reading fiction bo...10027.000000
9317Rumpelstiltskin0.060344to-read fantasy favorites currently-reading fi...10014.000000
9318The Beatles Anthology0.060336to-read favorites currently-reading fiction bo...10024.000000
9319First Things First0.060295to-read favorites currently-reading books-i-ow...10025.000000
9320باب الخروج: رسالة علي المÙ...0.060290to-read favorites currently-reading fiction bo...10024.000000
9321The Jesus I Never Knew0.060266to-read favorites currently-reading young-adul...10024.000000
9322Corrupt (Devil's Night, #1)0.060258to-read favorites currently-reading young-adul...10019.000000
9323The Snowman (Harry Hole, #7)0.060197to-read favorites currently-reading fiction bo...10027.000000
9324Breaking the Spell: Religion as a Natural Phen...0.060192to-read favorites currently-reading books-i-ow...10020.000000
9325Preacher, Volume 7: Salvation0.060161to-read fantasy favorites currently-reading fi...10023.000000
9326The Quickie0.060158to-read favorites currently-reading fiction bo...10029.000000
9327Last Man Standing0.060147to-read favorites currently-reading fiction bo...10031.000000
9328Batman: Earth One, Volume 10.060140to-read fantasy favorites currently-reading yo...10026.000000
9329Hidden Riches0.060135to-read favorites currently-reading fiction bo...10032.000000
9330Geisha, a Life0.060128to-read favorites currently-reading fiction bo...10029.000000
9331Bare Bones (Temperance Brennan, #6)0.060098to-read favorites currently-reading fiction bo...10029.000000
9332Searching for God Knows What0.060083to-read favorites currently-reading books-i-ow...10020.000000
9333The Sixth Man (Sean King & Michelle Maxwell, #5)0.060043to-read favorites currently-reading fiction bo...10030.000000
9334Foreign Influence (Scot Harvath, #9)0.059974to-read favorites currently-reading fiction bo...10025.000000
9335A Darkness More Than Night (Harry Bosch, #7; T...0.059928to-read favorites currently-reading fiction bo...10029.000000
9336Secrets of the Vine: Breaking Through to Abund...0.059903to-read favorites currently-reading books-i-ow...10017.000000
9337Fooled by Randomness: The Hidden Role of Chanc...0.059888to-read favorites currently-reading books-i-ow...10023.000000
9338The Knowledge of the Holy0.059805to-read favorites currently-reading books-i-ow...10030.000000
9339American Lion: Andrew Jackson in the White House0.059783to-read favorites currently-reading books-i-ow...10023.000000
9340Justice, Volume 10.059783to-read fantasy favorites currently-reading fi...10018.000000
9341Attack on Titan: No Regrets, Volume 010.059780to-read fantasy favorites currently-reading yo...10029.000000
9342The One Minute Manager0.059777to-read favorites currently-reading fiction bo...10025.000000
9343The Burden of Proof0.059663to-read favorites currently-reading fiction bo...10030.000000
9344How the Irish Saved Civilization0.059653to-read favorites currently-reading fiction bo...10028.000000
9345Let Me Call You Sweetheart0.059644to-read favorites currently-reading fiction bo...10027.000000
9346NYPD Red 3 (NYPD Red, #3)0.059644to-read favorites currently-reading fiction bo...10025.000000
9347Animal, Vegetable, Miracle: A Year of Food Life0.059629to-read favorites currently-reading fiction bo...10025.000000
9348Happy Accidents: A Memoir0.059604to-read favorites currently-reading books-i-ow...10022.000000
9349Preacher, Volume 3: Proud Americans0.059540to-read fantasy favorites fiction books-i-own ...10020.000000
9350Founders at Work: Stories of Startups' Early Days0.059536to-read favorites currently-reading books-i-ow...10020.000000
9351Scott Pilgrim, Volume 5: Scott Pilgrim Vs. the...0.059525to-read fantasy favorites currently-reading yo...10027.000000
9352Breaking Free: Discover the Victory of Total S...0.059383to-read favorites currently-reading books-i-ow...10019.000000
9353Officer Buckle & Gloria0.059374to-read fantasy favorites currently-reading fi...10011.000000
9354Dead or Alive (Jack Ryan Universe, #13)0.059370to-read favorites currently-reading fiction bo...10032.000000
9355Relish: My Life in the Kitchen0.059314to-read favorites currently-reading young-adul...10016.000000
9356Cross Justice (Alex Cross, #23)0.059270to-read favorites currently-reading fiction bo...10028.000000
9357Letter to a Christian Nation0.059238to-read favorites currently-reading books-i-ow...10022.000000
9358A Wolf at the Table0.059234to-read favorites currently-reading fiction bo...10026.000000
9359Catering to Nobody (A Goldy Bear Culinary Myst...0.059195to-read favorites currently-reading fiction bo...10022.000000
9360Thank You, Mr. Falker0.059160to-read favorites currently-reading fiction bo...1009.000000
9361Winter Prey (Lucas Davenport, #5)0.059118to-read favorites currently-reading fiction bo...10029.000000
9362Preacher, Volume 9: Alamo0.059103to-read fantasy favorites currently-reading fi...10023.000000
9363Cleopatra: A Life0.059042to-read favorites currently-reading fiction bo...10025.000000
9364D.Gray-man, Volume 010.059028to-read fantasy favorites currently-reading yo...10024.000000
9365Succulent Wild Woman0.058994to-read favorites currently-reading fiction bo...10021.000000
9366Diagnostic and Statistical Manual of Mental Di...0.058994to-read favorites currently-reading fiction bo...10017.000000
9367Start with Why: How Great Leaders Inspire Ever...0.058975to-read favorites currently-reading books-i-ow...10022.000000
9368Writing Down the Bones: Freeing the Writer Within0.058917to-read favorites currently-reading books-i-ow...10030.000000
9369On Writing Well: The Classic Guide to Writing ...0.058821to-read favorites currently-reading books-i-ow...10025.000000
9370The Gemini Contenders0.058792to-read favorites currently-reading fiction bo...10029.000000
9371Preacher, Volume 8: All Hell's a-Coming0.058788to-read fantasy favorites currently-reading fi...10022.000000
9372Fullmetal Alchemist, Vol. 1 (Fullmetal Alchemi...0.058779to-read fantasy favorites currently-reading yo...10032.000000
9373The Prodigal God: Recovering the Heart of the ...0.058770to-read favorites currently-reading books-i-ow...10024.000000
9374Scott Pilgrim, Volume 6: Scott Pilgrim's Fines...0.058763to-read fantasy favorites currently-reading yo...10030.000000
9375Official Book Club Selection: A Memoir Accordi...0.058636to-read favorites currently-reading fiction bo...10025.000000
9376Dreams from My Father: A Story of Race and Inh...0.058594to-read favorites currently-reading books-i-ow...10027.000000
9377Moon Over Manifest0.058587to-read favorites currently-reading young-adul...10021.000000
9378The Return of the Prodigal Son: A Story of Hom...0.058570to-read favorites currently-reading books-i-ow...10025.000000
9379Swimmy0.058553to-read fantasy favorites currently-reading fi...10015.000000
9380Perahu Kertas0.058485to-read favorites currently-reading young-adul...10019.000000
9381Paddy Clarke Ha Ha Ha0.058446to-read favorites currently-reading young-adul...10033.000000
9382Black Butler, Vol. 2 (Black Butler, #2)0.058434to-read fantasy favorites currently-reading yo...10029.000000
9383Locked On (Jack Ryan Universe, #14)0.058430to-read favorites currently-reading fiction bo...10030.000000
9384Of Course I Love You...! Till I Find Someone B...0.058424to-read currently-reading fiction books-i-own ...10013.000000
9385The Seat of the Soul0.058424to-read favorites currently-reading fiction bo...10021.000000
9386The Souls of Black Folk0.058402to-read favorites currently-reading fiction bo...10026.000000
9387Feeling Good: The New Mood Therapy0.058401to-read favorites currently-reading books-i-ow...10024.000000
9388Cod: A Biography of the Fish that Changed the ...0.058396to-read favorites currently-reading books-i-ow...10022.000000
9389Until Lilly (Until, #3)0.058382to-read favorites currently-reading fiction bo...10022.000000
9390Sickened: The Memoir of a Munchausen by Proxy ...0.058367to-read favorites currently-reading young-adul...10020.000000
9391ESV Study Bible0.058304to-read favorites currently-reading books-i-ow...10022.000000
9392Ashes to Ashes (Kovac and Liska, #1)0.058303to-read favorites currently-reading fiction bo...10031.000000
9393Preacher, Volume 6: War in the Sun0.058302to-read fantasy favorites currently-reading fi...10021.000000
9394Freight Train0.058284to-read favorites currently-reading fiction bo...10015.000000
9395Decision Points0.058271to-read favorites currently-reading books-i-ow...10023.000000
9396Boomerang: Travels in the New Third World0.058271to-read favorites currently-reading fiction bo...10023.000000
9397Blue Like Jazz: Nonreligious Thoughts on Chris...0.058245to-read favorites currently-reading fiction bo...10031.000000
9398Ox-Cart Man (Picture Puffin)0.058245to-read favorites currently-reading fiction bo...10012.000000
9399How Should We Then Live? The Rise and Decline ...0.058194to-read favorites currently-reading books-i-ow...10021.000000
9400This Time Together: Laughter and Reflection0.058169to-read favorites currently-reading books-i-ow...10021.000000
9401Go Away, Big Green Monster!0.058139to-read fantasy favorites currently-reading fi...10014.000000
9402Washington: A Life0.058137to-read favorites currently-reading books-i-ow...10023.000000
9403Making Ideas Happen: Overcoming the Obstacles ...0.058131to-read favorites currently-reading books-i-ow...10019.000000
94041/4 جراÙ0.058093to-read favorites currently-reading fiction bo...10024.000000
9405From Potter's Field (Kay Scarpetta, #6)0.058050to-read favorites currently-reading fiction bo...10028.000000
9406When Things Fall Apart: Heart Advice for Diffi...0.058040to-read favorites currently-reading books-i-ow...10022.000000
9407The Autobiography of Malcolm X0.057993to-read favorites currently-reading fiction bo...10025.000000
9408Always Looking Up: The Adventures of an Incura...0.057988to-read favorites currently-reading books-i-ow...10026.000000
9409A. Lincoln0.057981to-read favorites currently-reading books-i-ow...10022.000000
9410Barrel Fever: Stories and Essays0.057958to-read favorites currently-reading fiction bo...10026.000000
9411The Automatic Millionaire: A Powerful One-Step...0.057934to-read favorites currently-reading books-i-ow...10021.000000
9412The Beauty Myth0.057910to-read favorites currently-reading books-i-ow...10023.000000
9413On Becoming a Person: A Therapist's View of Ps...0.057825to-read favorites currently-reading books-i-ow...10016.000000
9414Practicing the Power of Now: Essential Teachin...0.057789to-read favorites currently-reading books-i-ow...10020.000000
9415To the Nines (Stephanie Plum, #9)0.057788to-read favorites currently-reading fiction bo...10027.000000
9416Tsubasa: RESERVoir CHRoNiCLE, Vol. 010.057745to-read fantasy favorites currently-reading yo...10025.000000
9417Executive Orders (Jack Ryan Universe, #9)0.057706to-read favorites currently-reading fiction bo...10028.000000
9418More Than a Carpenter0.057685to-read favorites currently-reading fiction bo...10027.000000
9419The Closers (Harry Bosch, #11; Harry Bosch Uni...0.057672to-read favorites currently-reading fiction bo...10029.000000
9420Influence: The Psychology of Persuasion0.057670to-read favorites currently-reading books-i-ow...10019.000000
9421The 8th Confession (Women's Murder Club, #8)0.057659to-read favorites currently-reading fiction bo...10030.000000
9422Blue exorcist, Tome 20.057640to-read fantasy favorites currently-reading yo...10026.000000
9423Means of Ascent (The Years of Lyndon Johnson, #2)0.057598to-read favorites currently-reading books-i-ow...10023.000000
9424Truman0.057589to-read favorites currently-reading books-i-ow...10024.000000
9425Breaking Night: A Memoir of Forgiveness, Survi...0.057584to-read favorites currently-reading young-adul...10021.000000
9426Made to Stick: Why Some Ideas Survive and Othe...0.057547to-read favorites currently-reading books-i-ow...10021.000000
9427This is Not My Hat0.057541to-read fantasy favorites currently-reading fi...10011.000000
9428Wheat Belly: Lose the Wheat, Lose the Weight, ...0.057515to-read favorites currently-reading books-i-ow...10025.000000
9429Che Guevara: A Revolutionary Life0.057484to-read favorites currently-reading books-i-ow...10025.000000
9430Unlimited Power : The New Science Of Personal ...0.057441to-read favorites currently-reading books-i-ow...10020.000000
9431The Empty Chair (Lincoln Rhyme, #3)0.057415to-read favorites currently-reading fiction bo...10032.000000
9432Swimsuit0.057317to-read favorites currently-reading fiction bo...10028.000000
9433Batman: The Black Mirror0.057298to-read fantasy favorites currently-reading fi...10024.000000
9434Jesus the Christ0.057292to-read favorites currently-reading books-i-ow...10027.000000
9435The Sweet Life in Paris: Delicious Adventures ...0.057242to-read favorites currently-reading fiction bo...10025.000000
9436Batman: Arkham Asylum - A Serious House on Ser...0.057219to-read fantasy favorites currently-reading fi...10025.000000
9437Postmortem (Kay Scarpetta, #1)0.057129to-read favorites currently-reading fiction bo...10031.000000
9438The Way of Zen0.057029to-read favorites currently-reading books-i-ow...10026.000000
9439Financial Peace Revisited0.057019to-read favorites currently-reading books-i-ow...10024.000000
9440The Medium is the Massage0.056951to-read favorites currently-reading books-i-ow...10016.000000
9441The Omnivore's Dilemma: A Natural History of F...0.056946to-read favorites currently-reading young-adul...10026.000000
9442Hellsing, Vol. 01 (Hellsing, #1)0.056873to-read fantasy favorites currently-reading yo...10023.000000
94432nd Chance (Women's Murder Club, #2)0.056764to-read favorites currently-reading fiction bo...10031.000000
9444Embroideries0.056751to-read favorites currently-reading fiction bo...10017.000000
9445State of the Union (Scot Harvath, #3)0.056712to-read favorites currently-reading fiction bo...10026.000000
9446Unbeautifully (Undeniable, #2)0.056661to-read favorites currently-reading books-i-ow...10019.000000
9447The Creative Habit: Learn It and Use It for Life0.056644to-read favorites currently-reading books-i-ow...10023.000000
9448قمر على سمرقند0.056612to-read favorites currently-reading fiction bo...10022.000000
9449Facing Your Giants: A David and Goliath Story ...0.056584to-read favorites currently-reading fiction bo...10023.000000
9450On Ugliness0.056560to-read favorites currently-reading fiction bo...10021.000000
9451Ayat-Ayat Cinta0.056559to-read favorites currently-reading young-adul...10016.000000
9452Frida: A Biography of Frida Kahlo0.056492to-read favorites currently-reading books-i-ow...10022.000000
9453Dragon Ball, Vol. 1: The Monkey King (Dragon B...0.056486to-read fantasy favorites currently-reading yo...10025.000000
9454Rock the Heart (Black Falcon, #1)0.056473to-read favorites currently-reading young-adul...10025.000000
9455Lincoln0.056434to-read favorites currently-reading books-i-ow...10023.000000
9456Anatomy for the Artist0.056401to-read favorites currently-reading books-i-ow...2008.000000
9457Anatomy for the Artist0.037423to-read favorites currently-reading books-i-ow...2008.000000
9458Citizen Soldiers: The U. S. Army from the Norm...0.056358to-read favorites currently-reading books-i-ow...10019.000000
9459Peace Is Every Step: The Path of Mindfulness i...0.056348to-read favorites currently-reading owned favo...10024.000000
9460Psycho-Cybernetics, A New Way to Get More Livi...0.056330to-read favorites currently-reading books-i-ow...10020.000000
9461Linchpin: Are You Indispensable?0.056297to-read favorites currently-reading books-i-ow...10022.000000
9462Batman: Knightfall, Vol. 1: Broken Bat0.056283to-read fantasy favorites currently-reading fi...10021.000000
9463The Shock Doctrine: The Rise of Disaster Capit...0.056265to-read favorites currently-reading books-i-ow...10021.000000
9464Private #1 Suspect (Private, #2)0.056220to-read favorites currently-reading fiction bo...10027.000000
9465A Sick Day for Amos McGee0.056194to-read fantasy favorites currently-reading fi...1009.000000
9466Black Notice (Kay Scarpetta, #10)0.056174to-read favorites currently-reading fiction bo...10029.000000
9467Philosophical Investigations0.056166to-read favorites currently-reading books-i-ow...10020.000000
9468Pete the Cat: I Love My White Shoes0.056103to-read fantasy favorites currently-reading fi...10011.000000
9469Sin City, Vol. 1: The Hard Goodbye (Sin City, #1)0.056097to-read fantasy favorites currently-reading fi...10027.000000
9470Batman and Son0.056039to-read fantasy favorites currently-reading yo...10025.000000
9471Tokyo Ghoul, tome 1 (Tokyo Ghoul, #1)0.056001to-read fantasy favorites currently-reading yo...10027.000000
9472أنت لي0.055944to-read favorites currently-reading fiction bo...10022.000000
9473Liar's Poker0.055917to-read favorites currently-reading fiction bo...10026.000000
9474ساق البامبو0.055909to-read favorites currently-reading fiction bo...10027.000000
9475The Lives of the Artists0.055888to-read favorites currently-reading books-i-ow...10019.000000
9476Free: The Future of a Radical Price0.055875to-read favorites currently-reading books-i-ow...10020.000000
9477April 1865: The Month That Saved America0.055856to-read favorites currently-reading books-i-ow...10021.000000
9478Jar City (Inspector Erlendur, #3)0.055823to-read favorites currently-reading fiction bo...10026.000000
9479Discipline and Punish: The Birth of the Prison0.055812to-read favorites currently-reading books-i-ow...10020.000000
9480A History of God: The 4,000-Year Quest of Juda...0.055789to-read favorites currently-reading fiction bo...10026.000000
9481Black Butler, Vol. 1 (Black Butler, #1)0.055756to-read fantasy favorites currently-reading yo...10029.000000
9482The Society of the Spectacle0.055750to-read favorites currently-reading books-i-ow...10018.000000
9483The Love Dare0.055701to-read favorites currently-reading fiction bo...10030.000000
9484The Personal MBA: Master the Art of Business0.055682to-read favorites currently-reading books-i-ow...10025.000000
9485Cause of Death (Kay Scarpetta, #7)0.055665to-read favorites currently-reading fiction bo...10029.000000
9486Boy Meets Girl: Say Hello to Courtship0.055628to-read favorites currently-reading young-adul...10025.000000
9487Knuffle Bunny: A Cautionary Tale (Knuffle Bunn...0.055624to-read favorites currently-reading fiction bo...10015.000000
9488Birthright0.055439to-read favorites currently-reading fiction bo...10030.000000
9489The Heroin Diaries: A Year In The Life Of A Sh...0.055425to-read favorites currently-reading fiction bo...10025.000000
9490I Kissed Dating Goodbye0.055417to-read currently-reading young-adult books-i-...10021.000000
9491Kambing Jantan: Sebuah Catatan Harian Pelajar ...0.055381to-read favorites currently-reading young-adul...10013.000000
9492The Mighty Storm (The Storm, #1)0.055378to-read currently-reading fiction owned favour...10020.000000
9493Invisible Prey (Lucas Davenport, #17)0.055316to-read favorites currently-reading fiction bo...10028.000000
9494Negeri 5 Menara (Negeri 5 Menara, #1)0.055302to-read favorites currently-reading fiction bo...10019.000000
9495Blue Smoke0.055176to-read favorites currently-reading fiction bo...10029.000000
9496Batman & Robin: Batman Reborn0.055139to-read fantasy favorites currently-reading fi...10021.000000
9497What's the Matter with Kansas? How Conservativ...0.055106to-read favorites currently-reading books-i-ow...10014.000000
9498I Will Teach You To Be Rich0.055069to-read favorites currently-reading books-i-ow...10022.000000
9499Velvet Elvis: Repainting the Christian Faith0.055027to-read favorites currently-reading fiction bo...10025.000000
9500The Rise of Theodore Roosevelt0.055016to-read favorites currently-reading books-i-ow...10025.000000
9501Peace Child: An Unforgettable Story of Primiti...0.054956to-read favorites currently-reading fiction bo...10016.000000
9502Press Here0.054926to-read favorites currently-reading fiction bo...10014.000000
9503I Am Nujood, Age 10 and Divorced0.054870to-read favorites currently-reading young-adul...10022.000000
950410th Anniversary (Women's Murder Club, #10)0.054859to-read favorites currently-reading fiction bo...10028.000000
9505Through Gates of Splendor0.054782to-read favorites currently-reading fiction bo...10020.000000
9506Batman: No Man's Land, Vol. 10.054748to-read fantasy favorites currently-reading fi...10012.000000
9507Sex God: Exploring the Endless Connections bet...0.054609to-read favorites currently-reading fiction bo...10022.000000
9508The Snowball: Warren Buffett and the Business ...0.054599to-read favorites currently-reading books-i-ow...10025.000000
9509Unattainable (Undeniable, #3)0.054599to-read favorites currently-reading books-i-ow...10017.000000
9510The End of Faith: Religion, Terror, and the Fu...0.054588to-read favorites currently-reading fiction bo...10023.000000
9511Dude, Where's My Country?0.054485to-read favorites currently-reading books-i-ow...10022.000000
9512Lifeguard0.054480to-read favorites currently-reading fiction bo...10031.000000
9513India After Gandhi: The History of the World's...0.054436to-read favorites currently-reading fiction bo...10025.000000
9514Extra Yarn (E. B. White Read-Aloud Award. Pict...0.054434to-read fantasy favorites currently-reading fi...10014.000000
9515You Can Heal Your Life0.054414to-read favorites currently-reading books-i-ow...10029.000000
9516When the Bough Breaks (Alex Delaware, #1)0.054371to-read favorites currently-reading fiction bo...10026.000000
9517Noises Off0.054347to-read favorites currently-reading fiction bo...10022.000000
9518Theodore Rex0.054296to-read favorites currently-reading books-i-ow...10022.000000
9519Edensor (Tetralogi Laskar Pelangi, #3)0.054290to-read favorites currently-reading young-adul...10018.000000
9520Good to Great: Why Some Companies Make the Lea...0.054269to-read currently-reading owned default my-boo...10027.000000
9521صانع الظلاÙ0.054222to-read fantasy favorites currently-reading fi...10023.000000
9522The Story of Art0.054171to-read favorites currently-reading books-i-ow...10024.000000
9523Unorthodox: The Scandalous Rejection of My Has...0.054082to-read favorites currently-reading books-i-ow...10016.000000
9524Madeline's Rescue0.054074to-read favorites currently-reading fiction bo...10019.000000
9525Why Mosquitoes Buzz in People's Ears0.054065to-read fantasy favorites currently-reading fi...10012.000000
9526The Lean Startup: How Today's Entrepreneurs Us...0.054029to-read favorites currently-reading books-i-ow...10024.000000
9527The Path to Power (The Years of Lyndon Johnson...0.054019to-read favorites currently-reading books-i-ow...10025.000000
9528Going Rogue: An American Life0.054007to-read favorites currently-reading books-i-ow...10023.000000
9529Diary of a Wimpy Kid: #1-40.054002to-read favorites currently-reading young-adul...10015.000000
9530The Lost Painting0.053983to-read favorites currently-reading fiction bo...10025.000000
953119190.053976to-read favorites currently-reading fiction bo...10024.000000
9532sTORI Telling0.053975to-read favorites currently-reading fiction bo...10020.000000
9533Debt of Honor (Jack Ryan Universe, #8)0.053968to-read favorites currently-reading fiction bo...10027.000000
9534The Man Who Smiled (Kurt Wallander, #4)0.053951to-read favorites currently-reading fiction bo...10025.000000
9535Firewall (Wallander, #8)0.053928to-read favorites currently-reading fiction bo...10025.000000
9536أولاد حارتنا0.053858to-read currently-reading favourites favorite-...10010.000000
9537Stitches0.053835to-read favorites currently-reading young-adul...10019.000000
9538Knowing God0.053828to-read favorites currently-reading books-i-ow...10028.000000
9539Vicious (Sinners of Saint, #1)0.053815to-read favorites currently-reading young-adul...10018.000000
9540Iron Man: Extremis0.053720to-read fantasy favorites currently-reading fi...10021.000000
9541Stand Tall, Molly Lou Melon0.053701to-read favorites currently-reading fiction bo...10011.000000
9542Kira-Kira0.053663to-read favorites currently-reading young-adul...10021.000000
9543Judge & Jury0.053657to-read favorites currently-reading fiction bo...10028.000000
9544Winning0.053638to-read favorites currently-reading books-i-ow...10024.000000
9545Sin City, Vol. 3: The Big Fat Kill (Sin City, #3)0.053615to-read fantasy favorites currently-reading fi...10029.000000
9546هيبتا0.053531to-read favorites currently-reading fiction bo...10024.000000
9547Candy Girl: A Year in the Life of an Unlikely ...0.053470to-read favorites currently-reading fiction bo...10022.000000
9548Wonderful Tonight0.053454to-read favorites currently-reading books-i-ow...10022.000000
9549Merry Christmas, Alex Cross (Alex Cross, #19)0.053448to-read currently-reading fiction books-i-own ...10028.000000
9550Black Butler, Vol. 3 (Black Butler, #3)0.053444to-read fantasy favorites currently-reading yo...10027.000000
9551Why Nations Fail: The Origins of Power, Prospe...0.053403to-read favorites currently-reading books-i-ow...10022.000000
9552Don't Make Me Think: A Common Sense Approach t...0.053398to-read favorites currently-reading books-i-ow...10016.000000
9553An Unquiet Mind: A Memoir of Moods and Madness0.053393to-read favorites currently-reading books-i-ow...10024.000000
9554Born Standing Up: A Comic's Life0.053324to-read favorites currently-reading fiction bo...10022.000000
9555Does the Noise in My Head Bother You?0.053321to-read favorites currently-reading books-i-ow...10023.000000
9556Batman: Dark Victory0.053273to-read fantasy favorites currently-reading fi...10027.000000
9557To Sell Is Human: The Surprising Truth About M...0.053217to-read favorites currently-reading books-i-ow...10020.000000
9558The Pioneer Woman Cooks: Recipes from an Accid...0.053208to-read favorites currently-reading books-i-ow...10022.000000
9559Ranma ½, Vol. 1 (Ranma ½ (US 2nd), #1)0.053151to-read fantasy favorites currently-reading yo...10024.000000
9560Delivering Happiness: A Path to Profits, Passi...0.053062to-read favorites currently-reading books-i-ow...10020.000000
9561Sin City, Vol. 2: A Dame to Kill For (Sin City...0.053011to-read fantasy favorites currently-reading fi...10025.000000
9562The White Lioness (Kurt Wallander, #3)0.052983to-read favorites currently-reading fiction bo...10024.000000
9563Fairy Tail, Vol. 1 (Fairy Tail, #1)0.052929to-read fantasy favorites currently-reading yo...10028.000000
9564Sacred Contracts: Awakening Your Divine Potential0.052927to-read favorites currently-reading books-i-ow...10020.000000
9565شكلها باظت0.052921to-read favorites currently-reading books-i-ow...10014.000000
9566Pandora Hearts 1å·»0.052890to-read fantasy favorites currently-reading yo...10022.000000
9567Capital in the Twenty-First Century0.052875to-read favorites currently-reading books-i-ow...10023.000000
9568Better Homes and Gardens New Cook Book0.052870to-read favorites currently-reading books-i-ow...10023.000000
9569Prayers for Rain (Kenzie & Gennaro, #5)0.052852to-read favorites currently-reading fiction bo...10024.000000
9570Kitten's First Full Moon0.052793to-read fantasy favorites currently-reading fi...10012.000000
9571Batwoman: Elegy0.052771to-read fantasy favorites currently-reading fi...10020.000000
95723000.052768to-read fantasy favorites currently-reading fi...10026.000000
9573Lon Po Po: A Red-Riding Hood Story from China0.052684to-read fantasy favorites currently-reading fi...10012.000000
95744th of July (Women's Murder Club, #4)0.052651to-read favorites currently-reading fiction bo...10030.000000
9575The Teeth of the Tiger (Jack Ryan Universe, #12)0.052646to-read favorites currently-reading fiction bo...10029.000000
9576Knuffle Bunny Too: A Case of Mistaken Identity...0.052645to-read favorites currently-reading fiction bo...10012.000000
9577في قلبي أنثى عبرية0.052627to-read favorites currently-reading fiction bo...10026.000000
9578His Needs, Her Needs: Building an Affair-Proof...0.052589to-read favorites currently-reading books-i-ow...10020.000000
9579The Autobiography of Martin Luther King, Jr.0.052588to-read favorites currently-reading books-i-ow...10020.000000
9580Fun Home: A Family Tragicomic0.052581to-read favorites currently-reading young-adul...10018.000000
9581Barefoot in Paris0.052533to-read favorites currently-reading books-i-ow...10010.000000
9582Yes, Chef0.052431to-read favorites currently-reading books-i-ow...10022.000000
9583Manga Classics: Les Misérables0.052387to-read favorites currently-reading young-adul...10025.000000
9584Life0.052373to-read favorites currently-reading books-i-ow...10027.000000
9585Trump: The Art of the Deal0.052367to-read favorites currently-reading books-i-ow...10017.000000
9586Batman: A Death in the Family0.052360to-read fantasy favorites currently-reading fi...10024.000000
9587Batman: Hush, Vol. 10.052306to-read fantasy favorites currently-reading fi...10017.000000
9588Blood Work (Harry Bosch Universe, #8; Terry Mc...0.052243to-read favorites currently-reading fiction bo...10028.000000
9589I Like You: Hospitality Under the Influence0.052206to-read favorites currently-reading fiction bo...10022.000000
9590Deadman Wonderland, Volume 1 (Deadman Wonderla...0.052088to-read fantasy favorites currently-reading yo...10025.000000
9591I, Michael Bennett (Michael Bennett, #5)0.052081to-read favorites currently-reading fiction bo...10026.000000
9592The Reason for God: Belief in an Age of Skepti...0.052008to-read favorites currently-reading books-i-ow...10026.000000
9593Batman: Hush, Vol. 20.051946to-read fantasy favorites currently-reading fi...10023.000000
95943rd Degree (Women's Murder Club, #3)0.051901to-read favorites currently-reading fiction bo...10030.000000
9595The Hidden Messages in Water0.051856to-read favorites currently-reading books-i-ow...10016.000000
9596The Mambo Kings Play Songs of Love0.051842to-read favorites currently-reading fiction bo...10025.000000
9597Battle Cry of Freedom0.051826to-read favorites currently-reading fiction bo...10027.000000
9598He Chose the Nails0.051691to-read favorites currently-reading books-i-ow...10018.000000
9599Storm Prey (Lucas Davenport, #20)0.051686to-read favorites currently-reading fiction bo...10026.000000
9600Counterfeit Gods: The Empty Promises of Money,...0.051591to-read favorites currently-reading books-i-ow...10019.000000
9601Believing Christ: The Parable of the Bicycle a...0.051554to-read favorites currently-reading books-i-ow...10023.000000
9602Leading Change0.051479to-read favorites currently-reading books-i-ow...10023.000000
9603Wherever You Go, There You Are: Mindfulness Me...0.051437to-read favorites currently-reading books-i-ow...10026.000000
9604xxxHolic, Vol. 1 (xxxHOLiC, #1)0.051388to-read fantasy favorites currently-reading yo...10025.000000
9605The 80/20 Principle: The Secret to Achieving M...0.051353to-read favorites currently-reading books-i-ow...10020.000000
9606Cash0.051341to-read favorites currently-reading books-i-ow...10023.000000
9607Tender at the Bone: Growing Up at the Table0.051182to-read favorites currently-reading fiction bo...10024.000000
9608Genghis Khan and the Making of the Modern World0.051150to-read favorites currently-reading books-i-ow...10023.000000
9609All Marketers Are Liars: The Power of Telling ...0.051053to-read favorites currently-reading books-i-ow...10022.000000
9610Lies Women Believe: And the Truth that Sets Th...0.051030to-read favorites currently-reading books-i-ow...10020.000000
9611The Magic Mirror of M.C. Escher0.050990to-read favorites currently-reading books-i-ow...10013.000000
9612Master of the Senate (The Years of Lyndon John...0.050988to-read favorites currently-reading books-i-ow...10024.000000
9613Batman: The Man Who Laughs0.050978to-read fantasy favorites currently-reading fi...10022.000000
9614Echo Park (Harry Bosch, #12; Harry Bosch Unive...0.050950to-read favorites currently-reading fiction bo...10028.000000
9615Kill Alex Cross (Alex Cross #18)0.050941to-read currently-reading fiction books-i-own ...10026.000000
9616The Purpose Driven Life: What on Earth Am I He...0.050892to-read favorites currently-reading fiction bo...10026.000000
9617Tortured for Christ N/E0.050848to-read favorites currently-reading fiction bo...10027.000000
9618زغازيغ0.050784to-read favorites currently-reading fiction bo...10024.000000
9619Preacher, Volume 1: Gone to Texas0.050762to-read fantasy favorites currently-reading fi...10023.000000
9620The 22 Immutable Laws of Marketing: Violate Th...0.050759to-read favorites currently-reading books-i-ow...10014.000000
9621The 5th Horseman (Women's Murder Club, #5)0.050732to-read favorites currently-reading fiction bo...10030.000000
9622Beach Road0.050694to-read favorites currently-reading fiction bo...10028.000000
9623الأسود يليق بك0.050652to-read favorites currently-reading fiction bo...10024.000000
9624The 21 Irrefutable Laws of Leadership: Follow ...0.050495to-read favorites currently-reading books-i-ow...10023.000000
9625Creative Visualization: Use the Power of Your ...0.050477to-read favorites currently-reading books-i-ow...10021.000000
9626The China Study: The Most Comprehensive Study ...0.050399to-read currently-reading owned owned-books al...10025.000000
9627Conversations With God: An Uncommon Dialogue, ...0.050379to-read favorites currently-reading fiction bo...10020.000000
9628Bleach, Volume 030.050354to-read fantasy favorites currently-reading yo...10025.000000
9629Salt Sugar Fat: How the Food Giants Hooked Us0.050296to-read favorites currently-reading books-i-ow...10024.000000
9630The Power of a Praying Woman0.050272to-read favorites currently-reading books-i-ow...10018.000000
9631Egomaniac0.050233to-read favorites currently-reading fiction bo...10015.000000
9632Angels Fall0.050218to-read favorites currently-reading fiction bo...10028.000000
9633First, Break All the Rules: What the World's G...0.050218to-read favorites currently-reading books-i-ow...10026.000000
9634Never Eat Alone: And Other Secrets to Success,...0.050177to-read favorites currently-reading books-i-ow...10023.000000
9635Understanding Comics: The Invisible Art0.050162to-read favorites currently-reading young-adul...10022.000000
9636The Practice of the Presence of God0.050141to-read favorites currently-reading books-i-ow...10025.000000
9637Conversations With God: An Uncommon Dialogue, ...0.050077to-read favorites currently-reading fiction bo...10015.000000
9638Influencer: The Power to Change Anything0.050026to-read favorites currently-reading books-i-ow...10022.000000
9639The Ascent of Money: A Financial History of th...0.049951to-read favorites currently-reading books-i-ow...10024.000000
9640Kick-Ass (Kick-Ass, #1)0.049946to-read fantasy favorites currently-reading yo...10024.000000
9641Deceptively Delicious: Simple Secrets to Get Y...0.049887to-read favorites currently-reading books-i-ow...10016.000000
9642The Batman Chronicles, Vol. 10.049769to-read favorites currently-reading young-adul...10018.000000
9643Garlic and Sapphires: The Secret Life of a Cri...0.049727to-read favorites currently-reading books-i-ow...10021.000000
9644The Law of Attraction: The Basics of the Teach...0.049706to-read favorites currently-reading fiction bo...10017.000000
9645His Excellency: George Washington0.049658to-read favorites currently-reading books-i-ow...10020.000000
9646Chobits, Vol. 10.049649to-read fantasy favorites currently-reading yo...10025.000000
9647What Got You Here Won't Get You There: How Suc...0.049644to-read favorites currently-reading books-i-ow...10020.000000
9648Stolen Lives: Twenty Years in a Desert Jail0.049627to-read favorites currently-reading fiction bo...10022.000000
9649Having a Mary Heart in a Martha World: Finding...0.049626to-read favorites currently-reading books-i-ow...10021.000000
9650Brunelleschi's Dome: How a Renaissance Genius ...0.049549to-read favorites currently-reading fiction bo...10018.000000
9651Phenomenology of Spirit0.049512to-read favorites currently-reading books-i-ow...10018.000000
9652Can't We Talk about Something More Pleasant?0.049505to-read favorites currently-reading fiction ow...10013.000000
9653تاكسي: حواديت المشاوير0.049467to-read favorites fiction books-i-own owned fa...10024.000000
96547th Heaven (Women's Murder Club, #7)0.049460to-read favorites currently-reading fiction bo...10029.000000
9655I, Alex Cross (Alex Cross, #16)0.049448to-read favorites currently-reading fiction bo...10029.000000
9656Kamisama Kiss, Vol. 10.049438to-read fantasy favorites currently-reading yo...10022.000000
9657Developing the Leader Within You0.049421to-read favorites currently-reading books-i-ow...10023.000000
9658Along Came a Spider (Alex Cross, #1)0.049340to-read favorites currently-reading fiction bo...10030.000000
9659Cardcaptor Sakura, Vol. 1 (Cardcaptor Sakura, #1)0.049300to-read fantasy favorites currently-reading yo...10023.000000
9660Losing My Virginity: How I've Survived, Had Fu...0.049255to-read favorites currently-reading books-i-ow...10024.000000
9661Michelangelo and the Pope's Ceiling0.049237to-read favorites currently-reading fiction bo...10022.000000
9662Having Our Say: The Delany Sisters' First 100 ...0.049207to-read favorites currently-reading young-adul...10016.000000
9663Try Me (One Night with Sole Regret, #1)0.049104to-read favorites currently-reading fiction bo...10018.000000
9664Final Jeopardy (Alexandra Cooper, #1)0.049082to-read favorites currently-reading fiction bo...10024.000000
9665MeruPuri, Vol. 1 (MeruPuri, #1)0.049068to-read fantasy favorites currently-reading yo...10028.000000
9666Naruto, Vol. 11: Impassioned Efforts (Naruto, ...0.049021to-read fantasy favorites currently-reading yo...10023.000000
9667Shugo Chara!, Vol. 1: Who Do You Want to Be? (...0.049005to-read fantasy favorites currently-reading yo...10023.000000
9668Passion and Purity: Learning to Bring Your Lov...0.048871to-read favorites currently-reading young-adul...10021.000000
9669Sin City, Vol. 4: That Yellow Bastard (Sin Cit...0.048807to-read favorites currently-reading fiction bo...10027.000000
9670Bleach, Volume 150.048786to-read fantasy favorites currently-reading yo...10023.000000
9671ڤيرتيجو0.048685to-read favorites currently-reading fiction bo...10023.000000
9672Learned Optimism: How to Change Your Mind and ...0.048676to-read favorites currently-reading books-i-ow...10020.000000
9673My Utmost for His Highest0.048629to-read favorites currently-reading books-i-ow...10022.000000
9674الطنطورية0.048613to-read favorites currently-reading fiction bo...10025.000000
9675Streams in the Desert0.048610to-read favorites currently-reading owned owne...10017.000000
9676Alex Cross, Run (Alex Cross, #20)0.048528to-read favorites currently-reading fiction bo...10028.000000
9677شيكاجو0.048486to-read favorites currently-reading fiction bo...10023.000000
9678The Prayer of Jabez: Breaking Through to the ...0.048420to-read favorites currently-reading fiction bo...10019.000000
9679رجال في الشمس0.048375to-read favorites currently-reading fiction bo...10024.000000
9680The Art Book0.048335to-read favorites currently-reading books-i-ow...10019.000000
9681Vampire Knight, Vol. 90.048304to-read fantasy favorites currently-reading yo...10023.000000
9682Cradle to Cradle: Remaking the Way We Make Things0.048290to-read favorites currently-reading books-i-ow...10018.000000
9683Great by Choice: Uncertainty, Chaos, and Luck-...0.048241to-read favorites currently-reading books-i-ow...10021.000000
9684Four Blind Mice (Alex Cross, #8)0.048231to-read favorites currently-reading fiction bo...10030.000000
9685Desiring God: Meditations of a Christian Hedonist0.048200to-read favorites currently-reading books-i-ow...10027.000000
9686Ghost Wars: The Secret History of the CIA, Afg...0.048182to-read favorites currently-reading books-i-ow...10018.000000
9687شاب كشك في رحلة البحث عن ا...0.048179to-read favorites currently-reading books-i-ow...10017.000000
9688Rachael Ray 365: No Repeats: A Year of Delicio...0.048113to-read favorites currently-reading books-i-ow...10018.000000
9689Care of the Soul: A Guide for Cultivating Dept...0.048078to-read favorites currently-reading books-i-ow...10017.000000
9690Death Note, Vol. 2: Confluence (Death Note, #2)0.047918to-read fantasy favorites currently-reading yo...10025.000000
9691Julie and Julia: 365 Days, 524 Recipes, 1 Tiny...0.047901to-read favorites currently-reading fiction bo...10026.000000
9692Infidel0.047881to-read favorites currently-reading books-i-ow...10025.000000
9693Preach My Gospel: A Guide To Missionary Service0.047879to-read favorites currently-reading fiction bo...10016.000000
9694تراب الماس0.047732to-read favorites currently-reading fiction bo...10022.000000
9695American Sphinx: The Character of Thomas Jeffe...0.047713to-read favorites currently-reading books-i-ow...10022.000000
9696Shaman King, Vol. 1: A Shaman in Tokyo0.047698to-read fantasy favorites currently-reading yo...10019.000000
9697هشت کتاب0.047661to-read favorites currently-reading books-i-ow...10016.000000
9698I Am Ozzy0.047632to-read favorites currently-reading books-i-ow...10022.000000
9699The Peacegiver: How Christ Offers to Heal Our ...0.047567to-read favorites currently-reading fiction bo...10023.000000
9700Misquoting Jesus: The Story Behind Who Changed...0.047510to-read favorites currently-reading fiction bo...10023.000000
9701Naruto, Vol. 01: The Tests of the Ninja (Narut...0.047485to-read fantasy favorites currently-reading yo...10026.000000
9702A Chair for My Mother0.047470to-read favorites currently-reading fiction ow...10011.000000
9703The Lion and the Mouse0.047464to-read fantasy favorites currently-reading fi...10010.000000
9704Ina May's Guide to Childbirth0.047358to-read favorites currently-reading books-i-ow...10018.000000
9705واحة الغروب0.047170to-read favorites currently-reading fiction bo...10022.000000
9706Soul Eater, Vol. 01 (Soul Eater, #1)0.047161to-read fantasy favorites currently-reading yo...10026.000000
9707The Story of Ruby Bridges0.047116to-read favorites currently-reading young-adul...10010.000000
9708NARUTO -ナルト- 巻ノ四十三0.047116to-read fantasy favorites currently-reading yo...10021.000000
9709Mary, Mary (Alex Cross, #11)0.047073to-read favorites currently-reading fiction bo...10028.000000
9710Animal-Speak: The Spiritual & Magical Powers o...0.046955to-read favorites currently-reading books-i-ow...10017.000000
9711Cardcaptor Sakura: Master of the Clow, Vol. 1 ...0.046849to-read fantasy favorites currently-reading yo...10025.000000
9712Fushigi Yûgi: The Mysterious Play, Vol. 1: Pr...0.046786to-read fantasy favorites currently-reading yo...10024.000000
9713Alex Cross's Trial (Alex Cross, #15)0.046692to-read favorites currently-reading fiction bo...10027.000000
9714Kiss the Girls (Alex Cross, #2)0.046627to-read favorites currently-reading fiction bo...10029.000000
9715Death Note, Vol. 3: Hard Run (Death Note, #3)0.046578to-read fantasy favorites currently-reading yo...10026.000000
9716No One Here Gets Out Alive0.046577to-read favorites currently-reading fiction bo...10024.000000
9717Pyongyang: A Journey in North Korea0.046564to-read favorites currently-reading fiction bo...10015.000000
9718The Happiest Baby on the Block: The New Way to...0.046547to-read favorites currently-reading books-i-ow...10019.000000
9719A Course in Miracles0.046490to-read favorites currently-reading books-i-ow...10019.000000
9720Seven Days in the Art World0.046471to-read favorites currently-reading fiction bo...10021.000000
9721Healthy Sleep Habits, Happy Child0.046400to-read favorites currently-reading books-i-ow...10020.000000
9722Cross Fire (Alex Cross, #17)0.046375to-read favorites currently-reading fiction bo...10025.000000
9723ذاكرة الجسد0.046370to-read favorites currently-reading fiction bo...10026.000000
9724The 9th Judgment (Women's Murder Club, #9)0.046298to-read favorites currently-reading fiction bo...10028.000000
9725Alice in the Country of Hearts, Vol. 01 (Alice...0.046149to-read fantasy favorites currently-reading yo...10023.000000
9726The 6th Target (Women's Murder Club, #6)0.046105to-read favorites currently-reading fiction bo...10030.000000
9727The Goal: A Process of Ongoing Improvement0.046033to-read favorites currently-reading fiction bo...10024.000000
9728Black Cat, Volume 010.045986to-read fantasy favorites currently-reading yo...10023.000000
9729Blue Exorcist, Vol. 1 (Blue Exorcist, #1)0.045972to-read fantasy favorites currently-reading yo...10024.000000
9730Betty Crocker's Cookbook0.045943to-read favorites currently-reading books-i-ow...10019.000000
9731Purple Cow: Transform Your Business by Being R...0.045839to-read favorites currently-reading books-i-ow...10020.000000
9732ثلاثية غرناطة0.045809to-read favorites currently-reading fiction bo...10027.000000
9733If You Want to Walk on Water, You've Got to Ge...0.045692to-read favorites books-i-own owned favourites...10019.000000
9734A Random Walk Down Wall Street0.045611to-read favorites currently-reading books-i-ow...10019.000000
9735Death Note, Vol. 1: Boredom (Death Note, #1)0.045511to-read fantasy favorites currently-reading yo...10023.000000
9736The History of Sexuality, Volume 1: An Introdu...0.045465to-read favorites currently-reading books-i-ow...10017.000000
9737Owl Moon0.045357to-read favorites currently-reading fiction bo...10011.000000
9738The Nasty Bits: Collected Varietal Cuts, Usabl...0.045350to-read favorites currently-reading fiction bo...10020.000000
9739Kitchen Princess, Vol. 01 (Kitchen Princess, #1)0.045323to-read fantasy favorites currently-reading yo...10023.000000
9740How I Raised Myself from Failure to Success in...0.045295to-read favorites currently-reading books-i-ow...10015.000000
9741فوضى الحواس0.045256to-read favorites currently-reading fiction bo...10024.000000
9742The Holiness of God0.045238to-read favorites currently-reading fiction bo...10022.000000
9743Cross (Alex Cross, #12)0.045184to-read favorites currently-reading fiction bo...10032.000000
9744The Three Pigs0.045075to-read fantasy favorites currently-reading fi...10012.000000
9745الجزار0.045012to-read favorites currently-reading fiction ow...10021.000000
9746Wild at Heart: Discovering the Secret of a Man...0.045004to-read favorites currently-reading fiction bo...10026.000000
9747ظل الأفعى0.044871to-read favorites currently-reading fiction bo...10021.000000
9748Full Moon o Sagashite, Vol. 10.044856to-read fantasy favorites currently-reading yo...10024.000000
9749Cooked: A Natural History of Transformation0.044774to-read favorites books-i-own owned owned-book...10021.000000
9750Vampire Knight, Vol. 3 (Vampire Knight, #3)0.044692to-read fantasy favorites currently-reading yo...10022.000000
9751Case Closed, Vol. 10.044542to-read fantasy favorites currently-reading yo...10021.000000
9752Fruits Basket, Vol. 10.044493to-read fantasy favorites currently-reading yo...10026.000000
9753بضع ساعات في يوم ما0.044446to-read favorites currently-reading fiction bo...10019.000000
9754Hunter x Hunter, Vol. 01 (Hunter x Hunter, #1)0.044425to-read fantasy favorites currently-reading yo...10022.000000
9755Fruits Basket, Vol. 150.044416to-read fantasy favorites currently-reading yo...10025.000000
9756Anatomy of the Spirit: The Seven Stages of Pow...0.044408to-read favorites currently-reading books-i-ow...10021.000000
9757Silence of the Grave (Inspector Erlendur #4)0.044353to-read favorites currently-reading fiction bo...10024.000000
9758رأيت رام الله0.044311to-read favorites currently-reading fiction ow...10019.000000
9759In Defense of Food: An Eater's Manifesto0.044295to-read favorites currently-reading books-i-ow...10022.000000
9760The Miracle of Forgiveness0.044174to-read favorites currently-reading books-i-ow...10019.000000
9761The Joker0.044160to-read fantasy favorites currently-reading fi...10024.000000
9762Too Big to Fail: The Inside Story of How Wall ...0.044138to-read favorites currently-reading fiction bo...10024.000000
9763Tick Tock (Michael Bennett, #4)0.044135to-read favorites currently-reading fiction bo...10027.000000
9764The Diary of Frida Kahlo: An Intimate Self-Por...0.044116to-read favorites currently-reading books-i-ow...10014.000000
9765Celebration of Discipline: The Path to Spiritu...0.044092to-read favorites currently-reading books-i-ow...10027.000000
9766Naruto, Vol. 05: Exam Hell (Naruto, #5)0.044041to-read fantasy favorites currently-reading yo...10021.000000
9767The Pioneer Woman Cooks: Food from My Frontier0.043947to-read favorites currently-reading books-i-ow...10016.000000
9768Miles: The Autobiography0.043943to-read favorites currently-reading fiction bo...10019.000000
9769السنجة0.043882to-read favorites currently-reading fiction bo...10022.000000
9770Fast Food Nation: The Dark Side of the All-Ame...0.043832to-read favorites currently-reading fiction bo...10022.000000
9771Tribes: We Need You to Lead Us0.043826to-read favorites currently-reading books-i-ow...10018.000000
9772Awakening the Buddha Within: Tibetan Wisdom fo...0.043778to-read favorites currently-reading books-i-ow...10018.000000
9773طه الغريب0.043764to-read favorites currently-reading fiction bo...10018.000000
9774Sailor Moon, #1 (Sailor Moon, #1)0.043716to-read fantasy favorites currently-reading yo...10028.000000
9775The Judgment of Paris: The Revolutionary Decad...0.043569to-read favorites currently-reading books-i-ow...10023.000000
9776Presentation Zen: Simple Ideas on Presentation...0.043483to-read favorites currently-reading books-i-ow...10014.000000
9777The Design of Everyday Things0.043480to-read favorites currently-reading books-i-ow...10023.000000
9778Give and Take: A Revolutionary Approach to Suc...0.043438to-read favorites currently-reading books-i-ow...10017.000000
9779عائد إلى حيفا0.043422to-read favorites currently-reading fiction bo...10022.000000
9780Barbarians at the Gate: The Fall of RJR Nabisco0.043268to-read favorites currently-reading fiction bo...10020.000000
9781Principle-Centered Leadership0.043241to-read favorites currently-reading books-i-ow...10022.000000
9782مخطوطة بن إسحاق: مدينة الÙ...0.043233to-read fantasy favorites currently-reading fi...10021.000000
9783Bleach, Volume 010.043188to-read fantasy favorites currently-reading yo...10024.000000
9784نادي السيارات0.042996to-read favorites currently-reading fiction bo...10020.000000
9785Jamie at Home: Cook Your Way to the Good Life0.042963to-read favorites currently-reading books-i-ow...10018.000000
9786The Smartest Guys in the Room: The Amazing Ris...0.042950to-read favorites currently-reading books-i-ow...10017.000000
9787Vampire Knight, Vol. 2 (Vampire Knight, #2)0.042898to-read fantasy favorites currently-reading yo...10020.000000
978828 حرف0.042819to-read favorites currently-reading books-i-ow...10018.000000
9789Fruits Basket, Vol. 30.042726to-read fantasy favorites currently-reading yo...10026.000000
9790Now, Discover Your Strengths0.042640to-read favorites currently-reading books-i-ow...10020.000000
9791InuYasha: Turning Back Time (InuYasha, #1)0.042623to-read fantasy favorites currently-reading yo...10023.000000
9792Fruits Basket, Vol. 20.042601to-read fantasy favorites currently-reading yo...10026.000000
9793The Taste of Home Cookbook0.042545to-read favorites currently-reading books-i-ow...10013.000000
9794حوار مع صديقي الملحد0.042400to-read favorites currently-reading books-i-ow...10020.000000
9795Art and Fear: Observations on the Perils (and ...0.042285to-read favorites currently-reading books-i-ow...10028.000000
9796Empire of the Summer Moon: Quanah Parker and t...0.042276to-read favorites currently-reading books-i-ow...10021.000000
9797The Joy of Cooking0.042232to-read favorites currently-reading fiction bo...10021.000000
9798Yu Yu Hakusho, Volume 1: Goodbye, Material Wor...0.042153to-read fantasy favorites currently-reading yo...10020.000000
9799Tokyo Mew Mew, Vol. 1 (Tokyo Mew Mew, #1)0.042119to-read fantasy favorites currently-reading yo...10023.000000
9800Fruits Basket, Vol. 40.042088to-read fantasy favorites currently-reading yo...10025.000000
9801Run for Your Life (Michael Bennett, #2)0.041828to-read favorites currently-reading fiction bo...10030.000000
9802On Food and Cooking: The Science and Lore of t...0.041827to-read favorites currently-reading books-i-ow...10021.000000
9803Too Busy Not to Pray: Slowing Down to Be With God0.041617to-read favorites currently-reading books-i-ow...10019.000000
9804Death Note, Vol. 7: Zero (Death Note, #7)0.041585to-read fantasy favorites currently-reading yo...10024.000000
9805A Woman After God's Own Heart0.041542to-read favorites currently-reading books-i-ow...10018.000000
9806Van Gogh: The Life0.041539to-read favorites currently-reading books-i-ow...10017.000000
9807True History of the Kelly Gang0.041523to-read favorites currently-reading fiction bo...10028.000000
9808The Effective Executive: The Definitive Guide ...0.041482to-read favorites currently-reading books-i-ow...10019.000000
9809Gakuen Alice, Vol. 01 (Gakuen Alice, #1)0.041479to-read fantasy favorites currently-reading yo...10022.000000
9810Worst Case (Michael Bennett, #3)0.041328to-read favorites currently-reading fiction bo...10027.000000
9811Maid-sama! Vol. 02 (Maid-sama! #2)0.041257to-read favorites currently-reading young-adul...10021.000000
9812Fruits Basket, Vol. 140.041231to-read fantasy favorites currently-reading yo...10023.000000
9813Rich Dad's Cashflow Quadrant: Rich Dad's Guide...0.041216to-read favorites currently-reading books-i-ow...10022.000000
9814D.N.Angel, Vol. 1 (D.N.Angel, #1)0.041174to-read fantasy favorites currently-reading yo...10022.000000
9815Rurouni Kenshin, Vol. 1: Meiji Swordsman Roman...0.041171to-read fantasy favorites currently-reading yo...10022.000000
9816Hetalia: Axis Powers, Vol. 1 (Hetalia: Axis Po...0.041146to-read fantasy favorites currently-reading yo...10022.000000
9817A Homemade Life: Stories and Recipes from My K...0.041138to-read favorites currently-reading fiction bo...10019.000000
9818One Piece, Volume 01: Romance Dawn (One Piece,...0.041058to-read fantasy favorites currently-reading yo...10025.000000
9819Yotsuba&!, Vol. 01 (Yotsuba&! #1)0.040933to-read favorites currently-reading young-adul...10025.000000
9820Cook with Jamie0.040859to-read favorites currently-reading books-i-ow...10019.000000
9821Cross Country (Alex Cross, #14)0.040853to-read favorites currently-reading fiction bo...10028.000000
9822Death Note, Vol. 5: Whiteout (Death Note, #5)0.040852to-read fantasy favorites currently-reading yo...10024.000000
9823Food Rules: An Eater's Manual0.040827to-read favorites currently-reading books-i-ow...10017.000000
9824Vampire Knight, Vol. 4 (Vampire Knight, #4)0.040757to-read fantasy favorites currently-reading yo...10021.000000
9825Death Note, Vol. 4: Love (Death Note, #4)0.040744to-read fantasy favorites currently-reading yo...10025.000000
9826Pop Goes the Weasel (Alex Cross, #5)0.040573to-read favorites currently-reading owned seri...10028.000000
9827Hammer of the Gods0.040541to-read favorites currently-reading fiction bo...10016.000000
9828محال0.040530to-read favorites currently-reading fiction bo...10022.000000
9829Epileptic0.040525to-read favorites currently-reading young-adul...10020.000000
9830The Art of the Start: The Time-Tested, Battle-...0.040467to-read favorites currently-reading books-i-ow...10022.000000
9831Black Elk Speaks: Being the Life Story of a Ho...0.040454to-read favorites currently-reading fiction bo...10020.000000
9832عابر سرير0.040278to-read favorites currently-reading fiction bo...10023.000000
9833London Bridges (Alex Cross, #10)0.040271to-read favorites currently-reading fiction bo...10030.000000
9834Death Note, Vol. 6: Give-and-Take (Death Note,...0.040258to-read fantasy favorites currently-reading yo...10023.000000
9835Mythologies0.040218to-read favorites currently-reading fiction bo...10020.000000
9836Vampire Knight, Vol. 1 (Vampire Knight, #1)0.040167to-read fantasy favorites currently-reading yo...10023.000000
9837ليتها تقرأ0.040144to-read favorites currently-reading fiction bo...10019.000000
9838Jack: Straight from the Gut0.040112to-read favorites currently-reading books-i-ow...10015.000000
9839Cunt: A Declaration of Independence0.040029to-read favorites currently-reading fiction bo...10020.000000
9840Double Cross (Alex Cross, #13)0.040004to-read favorites currently-reading fiction bo...10028.000000
9841The Intelligent Investor (Collins Business Ess...0.039934to-read favorites currently-reading books-i-ow...10021.000000
98422 ضباط0.039692to-read favorites currently-reading fiction ow...10017.000000
9843Camera Lucida: Reflections on Photography0.039566to-read favorites currently-reading books-i-ow...10021.000000
9844Barefoot Contessa Back to Basics0.039447to-read favorites currently-reading books-i-ow...10014.000000
9845Henry's Freedom Box: A True Story from the Und...0.039335to-read favorites currently-reading fiction ch...1004.000000
9846The Innovator's Dilemma: The Revolutionary Boo...0.039308to-read favorites currently-reading books-i-ow...10021.000000
9847The End of Poverty0.039274to-read favorites currently-reading books-i-ow...10016.000000
9848Systematic Theology: An Introduction to Biblic...0.039125to-read favorites currently-reading books-i-ow...10019.000000
9849Death Note, Vol. 8: Target (Death Note, #8)0.039082to-read fantasy favorites currently-reading yo...10024.000000
9850Millennium Snow, Vol. 10.038982to-read fantasy favorites currently-reading yo...10021.000000
9851Heal Your Body: The Mental Causes for Physical...0.038738to-read favorites currently-reading books-i-ow...10014.000000
9852أحببتك أكثر مما ينبغي0.038710to-read favorites currently-reading fiction bo...10023.000000
9853\"حكايات فرغلي المستكاوي \"Ø...0.038678to-read favorites currently-reading fiction bo...10016.000000
9854Nana, Vol. 1 (Nana, #1)0.038660to-read favorites currently-reading young-adul...10025.000000
9855Chibi Vampire, Vol. 010.038561to-read fantasy favorites currently-reading yo...10020.000000
9856The Artist's Way: A Spiritual Path to Higher C...0.038550to-read favorites currently-reading books-i-ow...10022.000000
9857Fruits Basket, Vol. 70.038482to-read fantasy favorites currently-reading yo...10022.000000
9858Fix-It and Forget-It Cookbook: Feasting with Y...0.038439to-read favorites currently-reading books-i-ow...10012.000000
9859The Relatives Came0.038386to-read favorites currently-reading fiction ow...10015.000000
9860Blue Ocean Strategy: How To Create Uncontested...0.038342to-read favorites currently-reading books-i-ow...10023.000000
9861Drawing from Memory0.038251to-read favorites currently-reading young-adul...1006.000000
9862Figure Drawing for All It's Worth (How to draw...0.038114to-read favorites currently-reading books-i-ow...10011.000000
9863Positioning: The Battle for Your Mind: How to ...0.037877to-read favorites currently-reading owned owne...10017.000000
9864بيكاسو وستاربكس0.037855to-read favorites currently-reading books-i-ow...10021.000000
9865One Piece, Volume 38: Rocketman!! (One Piece, ...0.037796to-read fantasy favorites currently-reading yo...10016.000000
9866Soul on Ice0.037732to-read favorites currently-reading fiction bo...10019.000000
9867Malcolm X: A Life of Reinvention0.037677to-read favorites currently-reading books-i-ow...10024.000000
9868Bakuman, Band 1: Traum und Realität0.037649to-read favorites currently-reading young-adul...10023.000000
9869Keys to Drawing0.037636to-read favorites currently-reading books-i-ow...10018.000000
9870حبيبتي بكماء0.037569to-read favorites currently-reading fiction bo...10020.000000
9871Dali: The Paintings0.037566to-read favorites currently-reading books-i-ow...10014.000000
9872Black Bird, Vol. 01 (Black Bird, #1)0.037528to-read fantasy favorites currently-reading yo...10023.000000
9873Washington's Crossing0.037448to-read favorites currently-reading books-i-ow...10018.000000
9874M.C. Escher: The Graphic Work0.037446to-read fantasy favorites currently-reading bo...10018.000000
9875Cat and Mouse (Alex Cross, #4)0.037360to-read favorites currently-reading fiction bo...10028.000000
9876Maryamah Karpov: Mimpi-mimpi Lintang (Tetralog...0.037318to-read favorites currently-reading young-adul...10016.000000
9877Blood, Bones, and Butter: The Inadvertent Educ...0.037253to-read favorites currently-reading fiction bo...10020.000000
9878Grandfather's Journey0.037247to-read favorites currently-reading fiction ch...1008.000000
9879Filosofi Kopi: Kumpulan Cerita dan Prosa Satu ...0.037216to-read favorites currently-reading young-adul...10014.000000
9880Maid-sama! Vol. 01 (Maid-sama!, #1)0.037095to-read favorites currently-reading young-adul...10019.000000
9881The E-Myth Revisited: Why Most Small Businesse...0.037058to-read favorites currently-reading books-i-ow...10022.000000
9882Gustav Klimt: 1862-19180.037045to-read favorites books-i-own owned-books defa...1008.000000
9883Palestine0.037000to-read favorites currently-reading fiction bo...10019.000000
9884Beast Master, Vol. 1 (Beast Master, #1)0.036961to-read fantasy favorites currently-reading yo...10022.000000
9885History of Art0.036866to-read currently-reading fiction books-i-own ...10017.000000
9886The Work of Art in the Age of Its Technologica...0.036783to-read favorites currently-reading owned owne...10014.000000
9887How to Cook Everything: Simple Recipes for Gre...0.036610to-read favorites currently-reading books-i-ow...10021.000000
9888Zami: A New Spelling of My Name0.036533to-read favorites currently-reading fiction bo...10015.000000
9889Joseph Had a Little Overcoat0.036505to-read favorites currently-reading fiction bo...10010.000000
9890Business Model Generation0.036355to-read favorites currently-reading books-i-ow...10020.000000
9891Electric Daisy, Vol. 1 (Dengeki Daisy, #1)0.036263to-read favorites currently-reading young-adul...10021.000000
9892في ديسمبر تنتهي كل الأحلاÙ0.036187to-read currently-reading fiction books-i-own ...10020.000000
9893Zen of Seeing: Seeing/Drawing as Meditation0.036164to-read favorites currently-reading books-i-ow...1007.000000
9894Hello, Cupcake0.036114to-read favorites currently-reading fiction bo...10018.000000
9895Jack & Jill (Alex Cross, #3)0.035937to-read favorites currently-reading fiction bo...10027.000000
9896The Lady & Sons Savannah Country Cookbook0.035826to-read favorites currently-reading books-i-ow...10016.000000
9897Giada's Family Dinners0.035631to-read favorites currently-reading fiction bo...10012.000000
9898The Shock of the New0.035585to-read favorites currently-reading books-i-ow...10012.000000
9899In Search of Excellence: Lessons from America'...0.035455to-read favorites currently-reading books-i-ow...10016.000000
9900النبطي0.035368to-read favorites currently-reading fiction bo...10018.000000
9901فلتغفري0.035359to-read favorites currently-reading fiction bo...10024.000000
9902Skip Beat!, Vol. 010.035216to-read fantasy favorites currently-reading yo...10022.000000
9903رباعيات صلاح جاهين0.035143to-read favorites currently-reading books-i-ow...10023.000000
9904The Cake Mix Doctor0.035122to-read favorites currently-reading books-i-ow...10011.000000
9905キスよりも早く1 [Kisu Yorimo Hayaku 1] ...0.035060to-read fantasy favorites currently-reading yo...10015.000000
9906Slash0.035015to-read favorites currently-reading books-i-ow...10021.000000
9907Reborn! Vol. 01: Reborn Arrives! (Reborn!, #1)0.034991to-read fantasy favorites currently-reading yo...10017.000000
9908One Up On Wall Street: How To Use What You Alr...0.034976to-read favorites currently-reading books-i-ow...10016.000000
9909Ouran High School Host Club, Vol. 2 (Ouran Hig...0.034803to-read favorites currently-reading young-adul...10024.000000
9910Absolute Boyfriend, Vol. 10.034759to-read fantasy favorites currently-reading yo...10021.000000
9911The Natural Way to Draw0.034388to-read favorites currently-reading books-i-ow...10014.000000
9912Women's Bodies, Women's Wisdom: Creating Physi...0.034346to-read favorites currently-reading books-i-ow...10021.000000
9913I'm Just Here for the Food: Food + Heat = Cooking0.034216to-read favorites currently-reading books-i-ow...10019.000000
9914100 Bullets, Vol. 1: First Shot, Last Call0.034061to-read favorites currently-reading fiction bo...10020.000000
9915Ouran High School Host Club, Vol. 3 (Ouran Hig...0.033978to-read favorites currently-reading young-adul...10024.000000
9916حول العالم في 200 يوÙ0.033923to-read favorites currently-reading books-i-ow...10018.000000
9917Ouran High School Host Club, Vol. 4 (Ouran Hig...0.033710to-read favorites currently-reading young-adul...10024.000000
9918Andy Goldsworthy: A Collaboration with Nature0.033645to-read favorites currently-reading books-i-ow...10010.000000
9919Hands Of Light0.033640to-read favorites currently-reading books-i-ow...10015.000000
9920The Man Who Walked Between the Towers0.033618to-read favorites currently-reading young-adul...1008.000000
9921The Fifth Discipline: The Art & Practice of Th...0.033537to-read favorites currently-reading books-i-ow...10018.000000
9922Snowflake Bentley0.033526to-read favorites currently-reading fiction ch...1007.000000
9923Ouran High School Host Club, Vol. 15 (Ouran Hi...0.033427to-read favorites currently-reading young-adul...10017.000000
9924The Fannie Farmer Cookbook: Anniversary0.033174to-read favorites currently-reading books-i-ow...10012.000000
9925Barefoot Contessa Family Style: Easy Ideas and...0.033157to-read favorites currently-reading books-i-ow...10012.000000
9926Love★Com, Vol. 10.033148to-read favorites currently-reading young-adul...10019.000000
9927When Genius Failed: The Rise and Fall of Long-...0.033114to-read favorites currently-reading fiction bo...10017.000000
9928High School Debut, Vol. 01 (High School Debut,...0.032934to-read favorites currently-reading young-adul...10019.000000
9929Vincent Van Gogh: The Complete Paintings0.032904to-read favorites currently-reading books-i-ow...10013.000000
9930A Cook's Tour: Global Adventures in Extreme Cu...0.032746to-read favorites currently-reading fiction bo...10024.000000
9931The Big Bad Wolf (Alex Cross, #9)0.032654to-read favorites currently-reading fiction bo...10025.000000
9932The Art of Simple Food: Notes, Lessons, and Re...0.032510to-read favorites currently-reading books-i-ow...10016.000000
9933Fresh Wind, Fresh Fire: What Happens When God'...0.032458to-read favorites currently-reading books-i-ow...10017.000000
9934Martha Stewart's Cupcakes: 175 Inspired Ideas ...0.032452to-read favorites currently-reading books-i-ow...10012.000000
9935Crossing the Chasm: Marketing and Selling High...0.032306to-read favorites currently-reading books-i-ow...10015.000000
9936Concerning the Spiritual in Art0.032291to-read favorites currently-reading books-i-ow...10021.000000
9937Mastering the Art of French Cooking0.032281to-read favorites currently-reading books-i-ow...10020.000000
9938Experiencing God: Knowing and Doing the Will o...0.032130to-read favorites currently-reading books-i-ow...10015.000000
9939Diane Arbus: Monograph0.032040to-read favorites currently-reading owned favo...1007.000000
9940Permission Marketing: Turning Strangers Into F...0.031441to-read favorites currently-reading books-i-ow...10016.000000
9941Built to Last: Successful Habits of Visionary ...0.030999to-read favorites currently-reading books-i-ow...10020.000000
9942How to Be a Domestic Goddess: Baking and the A...0.030920to-read favorites currently-reading books-i-ow...10018.000000
9943الرحيق المختوÙ0.030917to-read favorites currently-reading books-i-ow...10019.000000
9944Mars, Volume 010.030785to-read favorites currently-reading young-adul...10020.000000
9945المانيفستو0.030495to-read favorites currently-reading books-i-ow...10021.000000
9946The America's Test Kitchen Family Cookbook0.030297to-read favorites currently-reading books-i-ow...10012.000000
9947Special A, Vol. 1 (Special A, #1)0.030173to-read favorites currently-reading young-adul...10019.000000
9948Kare Kano: His and Her Circumstances, Vol. 10.030147to-read favorites currently-reading young-adul...10019.000000
9949رغم الفراق0.029849to-read favorites currently-reading fiction ow...10019.000000
9950Heat: An Amateur's Adventures as Kitchen Slave...0.029712to-read favorites currently-reading fiction bo...10021.000000
9951Boys Over Flowers: Hana Yori Dango, Vol. 1 (Bo...0.029627to-read favorites currently-reading young-adul...10017.000000
9952Art Through the Ages0.029410to-read favorites currently-reading books-i-ow...10016.000000
9953Roses are Red (Alex Cross, #6)0.029364to-read favorites currently-reading fiction bo...10026.000000
9954Artisan Bread in Five Minutes a Day: The Disco...0.029262to-read favorites currently-reading books-i-ow...10019.000000
9955Violets Are Blue (Alex Cross, #7)0.029256to-read favorites currently-reading fiction bo...10025.000000
9956Love Hina, Vol. 010.029168to-read favorites currently-reading young-adul...10022.000000
9957Competitive Strategy: Techniques for Analyzing...0.029129to-read favorites currently-reading owned owne...10015.000000
9958Nourishing Traditions: The Cookbook That Chall...0.029118to-read favorites currently-reading books-i-ow...10018.000000
9959The Way to Cook0.029063to-read favorites currently-reading books-i-ow...10013.000000
9960Hana-Kimi, Vol. 1 (Hana-Kimi, #1)0.028976to-read favorites currently-reading young-adul...10021.000000
9961Paradise Kiss, Vol. 1 (Paradise Kiss, #1)0.028762to-read favorites currently-reading young-adul...10020.000000
9962استمتع بحياتك0.028702to-read favorites currently-reading books-i-ow...10019.000000
9963The Smitten Kitchen Cookbook0.028394to-read favorites currently-reading books-i-ow...10016.000000
9964Food Inc.: A Participant Guide: How Industrial...0.028357to-read favorites currently-reading books-i-ow...10015.000000
9965Ouran High School Host Club, Vol. 1 (Ouran Hig...0.028352to-read favorites currently-reading young-adul...10021.000000
9966Food Matters: A Guide to Conscious Eating with...0.028271to-read favorites books-i-own owned owned-book...10014.000000
9967Wild Ones, Vol. 1 (Wild Ones, #1)0.028020to-read favorites currently-reading young-adul...10016.000000
9968Graffiti World: Street Art from Five Continents0.027958to-read favorites currently-reading young-adul...10011.000000
9969Assata: An Autobiography0.027866to-read favorites currently-reading books-i-ow...10013.000000
9970Nigella Express: Good Food, Fast0.027844to-read favorites currently-reading fiction bo...10015.000000
9971Beauty Pop, Vol. 1 (Beauty Pop, #1)0.027702to-read favorites currently-reading young-adul...10021.000000
9972Everyday Food: Great Food Fast0.027499to-read favorites currently-reading books-i-ow...10012.000000
9973Baking: From My Home to Yours0.027259to-read favorites currently-reading books-i-ow...10014.000000
9974An Illustrated Life: Drawing Inspiration From ...0.027178to-read favorites currently-reading books-i-ow...10014.000000
9975Plenty0.026824to-read favorites currently-reading books-i-ow...10015.000000
9976The Cake Bible0.026423to-read favorites currently-reading books-i-ow...10014.000000
9977The Gentlemen's Alliance †, Vol. 10.026085to-read favorites currently-reading young-adul...10018.000000
9978Edvard Munch: 1863-1944 (Basic Art)0.026058to-read favorites currently-reading books-i-ow...1008.000000
9979Essentials of Classic Italian Cooking0.026033to-read favorites currently-reading books-i-ow...10012.000000
9980Barefoot Contessa at Home: Everyday Recipes Yo...0.025646to-read favorites currently-reading books-i-ow...10013.000000
9981The Creative License: Giving Yourself Permissi...0.025616to-read favorites currently-reading books-i-ow...10015.000000
9982Art in Theory 1900 - 2000: An Anthology of Cha...0.025526to-read favorites currently-reading books-i-ow...1008.000000
9983How to Cook Everything Vegetarian: Simple Meat...0.025165to-read favorites currently-reading books-i-ow...10015.000000
9984The Art Spirit: Notes, Articles, Fragments of ...0.024845to-read favorites currently-reading books-i-ow...10013.000000
9985Kimi ni Todoke: From Me to You, Vol. 10.024689to-read favorites currently-reading young-adul...10019.000000
9986The Silver Palate Cookbook0.024242to-read favorites currently-reading books-i-ow...10012.000000
9987Vegan Cupcakes Take Over the World: 75 Dairy-F...0.024038to-read favorites currently-reading books-i-ow...10019.000000
9988The Wallflower, Vol. 1 (The Wallflower, #1)0.023751to-read favorites currently-reading young-adul...10019.000000
9989Martha Stewart's Cookies: The Very Best Treats...0.023583to-read favorites currently-reading books-i-ow...10015.000000
9990The New Best Recipe0.023390to-read favorites currently-reading books-i-ow...10013.000000
9991كخه يا بابا0.023299to-read favorites currently-reading books-i-ow...10016.000000
9992Comfort Me with Apples: More Adventures at the...0.023214to-read favorites currently-reading fiction bo...10017.000000
9993The Barefoot Contessa Cookbook0.022730to-read favorites currently-reading books-i-ow...10013.000000
9994The Moosewood Cookbook: Recipes from Moosewood...0.022273to-read favorites currently-reading books-i-ow...10018.000000
9995Everyday Italian: 125 Simple and Delicious Rec...0.022170to-read favorites currently-reading books-i-ow...10015.000000
9996The Power of Art0.022035to-read favorites currently-reading default en...1008.000000
9997رحلتي من الشك إلى الإيمان0.021589to-read favorites currently-reading owned favo...10014.000000
9998Veganomicon: The Ultimate Vegan Cookbook0.021526to-read favorites currently-reading books-i-ow...10016.000000
9999لا تحزن0.017716to-read favorites currently-reading books-i-ow...10015.000000
\n", "
" ], "text/plain": [ " title ... %_common_tags\n", "0 The Fellowship of the Ring (The Lord of the Ri... ... 100.000000\n", "1 The Return of the King (The Lord of the Rings,... ... 92.000000\n", "2 The Two Towers (The Lord of the Rings, #2) ... 90.000000\n", "3 The Lord of the Rings (The Lord of the Rings, ... ... 84.000000\n", "4 The Silmarillion (Middle-Earth Universe) ... 77.000000\n", "5 The Hobbit ... 76.000000\n", "6 The Children of Húrin ... 67.000000\n", "7 Dragons of Autumn Twilight (Dragonlance: Chro... ... 65.000000\n", "8 Pawn of Prophecy (The Belgariad, #1) ... 61.000000\n", "9 Castle of Wizardry (The Belgariad, #4) ... 59.000000\n", "10 A Clash of Kings (A Song of Ice and Fire, #2) ... 67.000000\n", "11 Unfinished Tales of Númenor and Middle-Earth ... 65.000000\n", "12 Dragons of Winter Night (Dragonlance: Chronicl... ... 58.000000\n", "13 Arrow's Fall (Heralds of Valdemar, #3) ... 56.000000\n", "14 War of the Twins (Dragonlance: Legends, #2) ... 57.000000\n", "15 Stone of Farewell (Memory, Sorrow, and Thorn, #2) ... 56.000000\n", "16 Polgara the Sorceress (Malloreon) ... 58.000000\n", "17 Magician's Gambit (The Belgariad, #3) ... 58.000000\n", "18 Enchanters' End Game (The Belgariad, #5) ... 58.000000\n", "19 Sorceress of Darshiva (The Malloreon, #4) ... 56.000000\n", "20 Queen of Sorcery (The Belgariad, #2) ... 58.000000\n", "21 Belgarath the Sorcerer ... 59.000000\n", "22 The Dragon Reborn (Wheel of Time, #3) ... 61.000000\n", "23 The White Dragon (Pern, #3) ... 58.000000\n", "24 The Sapphire Rose (The Elenium, #3) ... 57.000000\n", "25 J.R.R. Tolkien 4-Book Boxed Set: The Hobbit an... ... 59.000000\n", "26 The Eye of the World (Wheel of Time, #1) ... 65.000000\n", "27 The Farthest Shore (Earthsea Cycle, #3) ... 62.000000\n", "28 The Courts of Chaos (The Chronicles of Amber #5) ... 54.000000\n", "29 The Seeress of Kell (The Malloreon, #5) ... 56.000000\n", "30 Guardians of the West (The Malloreon, #1) ... 56.000000\n", "31 The Dragonbone Chair (Memory, Sorrow, and Thor... ... 58.000000\n", "32 Silverthorn (The Riftwar Saga, #3) ... 55.000000\n", "33 The Elfstones of Shannara (The Original Shann... ... 59.000000\n", "34 Dragons of Spring Dawning (Dragonlance: Chroni... ... 58.000000\n", "35 A Feast for Crows (A Song of Ice and Fire, #4) ... 63.000000\n", "36 King of the Murgos (The Malloreon, #2) ... 56.000000\n", "37 A Storm of Swords (A Song of Ice and Fire, #3) ... 64.000000\n", "38 Domes of Fire (The Tamuli, #1) ... 52.000000\n", "39 A Wizard of Earthsea (Earthsea Cycle, #1) ... 60.000000\n", "40 The Fires of Heaven (Wheel of Time, #5) ... 58.000000\n", "41 Dragonsong (Harper Hall, #1) ... 60.000000\n", "42 The Ruby Knight (The Elenium, #2) ... 56.000000\n", "43 Sign of the Unicorn (The Chronicles of Amber #3) ... 54.000000\n", "44 The Shadow Rising (Wheel of Time, #4) ... 56.000000\n", "45 The Tombs of Atuan (Earthsea Cycle, #2) ... 62.000000\n", "46 The Great Hunt (Wheel of Time, #2) ... 57.000000\n", "47 Test of the Twins (Dragonlance: Legends, #3) ... 53.000000\n", "48 Dragonflight (Dragonriders of Pern, #1) ... 63.000000\n", "49 To Green Angel Tower (Memory, Sorrow, and Thor... ... 54.000000\n", "50 Lord of Chaos (Wheel of Time, #6) ... 56.000000\n", "51 Sojourn (Forgotten Realms: The Dark Elf Trilog... ... 55.000000\n", "52 Nine Princes in Amber (The Chronicles of Amber... ... 52.000000\n", "53 The Earthsea Trilogy ... 50.000000\n", "54 Time of the Twins (Dragonlance: Legends, #1) ... 54.000000\n", "55 Golden Fool (Tawny Man, #2) ... 59.000000\n", "56 The Diamond Throne (The Elenium, #1) ... 57.000000\n", "57 The Darkest Road (The Fionavar Tapestry, #3) ... 52.000000\n", "58 The Crystal Shard (Forgotten Realms: Icewind D... ... 57.000000\n", "59 The Hitchhiker's Guide to the Galaxy (Hitchhik... ... 66.000000\n", "60 Fool's Errand (Tawny Man, #1) ... 58.000000\n", "61 The Guns of Avalon (The Chronicles of Amber #2) ... 52.000000\n", "62 To Green Angel Tower, Part 2 (Memory, Sorrow, ... ... 52.000000\n", "63 The Wishsong of Shannara (The Original Shannar... ... 56.000000\n", "64 Crossroads of Twilight (Wheel of Time, #10) ... 55.000000\n", "65 The Shining Ones (The Tamuli, #2) ... 52.000000\n", "66 A Dance with Dragons (A Song of Ice and Fire, #5) ... 64.000000\n", "67 Demon Lord of Karanda (The Malloreon, #3) ... 55.000000\n", "68 The Dark Elf Trilogy Collector's Edition (Forg... ... 54.000000\n", "69 The Wise Man's Fear (The Kingkiller Chronicle,... ... 62.000000\n", "70 A Crown of Swords (Wheel of Time, #7) ... 55.000000\n", "71 The Talismans of Shannara (Heritage of Shannar... ... 53.000000\n", "72 By the Sword (Valdemar) ... 52.000000\n", "73 Dragonquest (Pern, #2) ... 57.000000\n", "74 The Sword of Shannara (The Original Shannara T... ... 60.000000\n", "75 Words of Radiance (The Stormlight Archive, #2) ... 57.000000\n", "76 The Great Book of Amber (The Chronicles of Amb... ... 52.000000\n", "77 The Hand of Oberon (The Chronicles of Amber #4) ... 51.000000\n", "78 To Green Angel Tower, Part 1 (Memory, Sorrow, ... ... 52.000000\n", "79 The Way of Kings (The Stormlight Archive, #1) ... 60.000000\n", "80 Assassin's Apprentice (Farseer Trilogy, #1) ... 63.000000\n", "81 The Hidden City (The Tamuli, #3) ... 51.000000\n", "82 A Darkness At Sethanon (The Riftwar Saga, #4) ... 51.000000\n", "83 Winter's Heart (Wheel of Time, #9) ... 55.000000\n", "84 Knife of Dreams (Wheel of Time, #11) ... 55.000000\n", "85 New Spring (Wheel of Time, #0) ... 52.000000\n", "86 The Dragonriders of Pern (Dragonriders of Pern... ... 56.000000\n", "87 Magic's Price (Valdemar: Last Herald-Mage #3) ... 54.000000\n", "88 Into the Labyrinth (The Death Gate Cycle, #6) ... 52.000000\n", "89 Wizard's First Rule (Sword of Truth, #1) ... 62.000000\n", "90 Ogre, Ogre (Xanth #5) ... 45.000000\n", "91 Magic's Promise (Valdemar: Last Herald-Mage #2) ... 54.000000\n", "92 Split Infinity (Apprentice Adept #1) ... 48.000000\n", "93 The Belgariad, Vol. 1: Pawn of Prophecy / Quee... ... 50.000000\n", "94 Dragons of Summer Flame (Dragonlance: The Seco... ... 49.000000\n", "95 The Mists of Avalon (Avalon, #1) ... 60.000000\n", "96 Bearing an Hourglass (Incarnations of Immortal... ... 49.000000\n", "97 The Black Unicorn (Magic Kingdom of Landover, #2) ... 52.000000\n", "98 Magician: Master (The Riftwar Saga, #2) ... 55.000000\n", "99 The Path of Daggers (Wheel of Time, #8) ... 54.000000\n", "100 Antrax (Voyage of the Jerle Shannara, #2) ... 49.000000\n", "101 Homeland (Forgotten Realms: The Dark Elf Trilo... ... 58.000000\n", "102 Exile (Forgotten Realms: The Dark Elf Trilogy,... ... 54.000000\n", "103 Arrows of the Queen (Heralds of Valdemar, #1) ... 56.000000\n", "104 Elantris (Elantris, #1) ... 56.000000\n", "105 First King of Shannara (The Original Shannara ... ... 52.000000\n", "106 Fire Sea (The Death Gate Cycle, #3) ... 54.000000\n", "107 The Name of the Wind (The Kingkiller Chronicle... ... 65.000000\n", "108 Magic's Pawn (Valdemar: Last Herald-Mage #1) ... 56.000000\n", "109 The Last Unicorn (The Last Unicorn, #1) ... 58.000000\n", "110 Royal Assassin (Farseer Trilogy, #2) ... 58.000000\n", "111 Arrow's Flight (Heralds of Valdemar, #2) ... 53.000000\n", "112 Magician: Apprentice (The Riftwar Saga, #1) ... 57.000000\n", "113 Fool's Fate (Tawny Man, #3) ... 54.000000\n", "114 The Mad Ship (Liveship Traders, #2) ... 54.000000\n", "115 Centaur Aisle (Xanth, #4) ... 43.000000\n", "116 Fool's Assassin (The Fitz and the Fool, #1) ... 54.000000\n", "117 The Scions of Shannara (Heritage of Shannara, #1) ... 49.000000\n", "118 The Elvenbane (Halfblood Chronicles, #1) ... 52.000000\n", "119 Trumps of Doom (The Chronicles of Amber, #6) ... 46.000000\n", "120 Stone of Tears (Sword of Truth, #2) ... 57.000000\n", "121 The Source of Magic (Xanth, #2) ... 46.000000\n", "122 Dragondrums (Harper Hall, #3) ... 53.000000\n", "123 Brisingr (The Inheritance Cycle, #3) ... 60.000000\n", "124 Night Mare (Xanth, #6) ... 44.000000\n", "125 A Game of Thrones (A Song of Ice and Fire, #1) ... 63.000000\n", "126 Ship of Destiny (Liveship Traders, #3) ... 54.000000\n", "127 The Druid of Shannara (Heritage of Shannara, #2) ... 51.000000\n", "128 A Memory of Light (Wheel of Time, #14) ... 56.000000\n", "129 The Redemption of Althalus ... 56.000000\n", "130 Tigana ... 56.000000\n", "131 Being a Green Mother (Incarnations of Immortal... ... 44.000000\n", "132 The Wayfarer Redemption (Wayfarer Redemption, #1) ... 51.000000\n", "133 Abhorsen (Abhorsen, #3) ... 56.000000\n", "134 The Elf Queen of Shannara (Heritage of Shannar... ... 50.000000\n", "135 Ship of Magic (Liveship Traders, #1) ... 57.000000\n", "136 A Spell for Chameleon (Xanth #1) ... 50.000000\n", "137 Dragonsinger (Harper Hall, #2) ... 56.000000\n", "138 Last Argument of Kings (The First Law, #3) ... 53.000000\n", "139 The Gathering Storm (Wheel of Time, #12) ... 55.000000\n", "140 City of Dragons (Rain Wild Chronicles, #3) ... 53.000000\n", "141 The Masterharper of Pern (Pern, #15) ... 50.000000\n", "142 Eldest (The Inheritance Cycle, #2) ... 59.000000\n", "143 The Forest House (Avalon, #2) ... 51.000000\n", "144 Wielding a Red Sword (Incarnations of Immortal... ... 49.000000\n", "145 The Final Empire (Mistborn, #1) ... 60.000000\n", "146 The Sword of Shannara Trilogy (Shannara, #1-3) ... 54.000000\n", "147 The Crystal Cave (Arthurian Saga, #1) ... 54.000000\n", "148 The Icewind Dale Trilogy Collector's Edition (... ... 43.000000\n", "149 Gardens of the Moon (The Malazan Book of the F... ... 58.000000\n", "150 The Wounded Land (The Second Chronicles of Tho... ... 50.000000\n", "151 Krew elfów (Saga o Wiedźminie, #3) ... 54.000000\n", "152 White Gold Wielder (The Second Chronicles of T... ... 47.000000\n", "153 Perelandra (Space Trilogy, #2) ... 56.000000\n", "154 Inheritance (The Inheritance Cycle, #4) ... 59.000000\n", "155 Dragonlance Chronicles (Dragonlance #1-3) ... 49.000000\n", "156 The Power That Preserves (The Chronicles of Th... ... 49.000000\n", "157 Renegade's Magic (Soldier Son, #3) ... 48.000000\n", "158 The Well of Ascension (Mistborn, #2) ... 59.000000\n", "159 Towers of Midnight (Wheel of Time, #13) ... 53.000000\n", "160 The Blade Itself (The First Law, #1) ... 56.000000\n", "161 Lord Foul's Bane (The Chronicles of Thomas Cov... ... 52.000000\n", "162 Memories of Ice (The Malazan Book of the Falle... ... 55.000000\n", "163 Streams of Silver (Forgotten Realms: Icewind D... ... 54.000000\n", "164 Lirael (Abhorsen, #2) ... 56.000000\n", "165 Small Gods (Discworld, #13) ... 59.000000\n", "166 Soul of the Fire (Sword of Truth, #5) ... 54.000000\n", "167 Shadow of a Dark Queen (The Serpentwar Saga, #1) ... 44.000000\n", "168 Running with the Demon (Word & Void, #1) ... 48.000000\n", "169 On a Pale Horse (Incarnations of Immortality, #1) ... 52.000000\n", "170 For Love of Evil (Incarnations of Immortality,... ... 44.000000\n", "171 The Wandering Fire (The Fionavar Tapestry, #2) ... 55.000000\n", "172 With a Tangled Skein (Incarnations of Immortal... ... 45.000000\n", "173 The Other Wind (Earthsea Cycle, #6) ... 53.000000\n", "174 Mountain of Black Glass (Otherland, #3) ... 46.000000\n", "175 The Summer Tree (The Fionavar Tapestry #1) ... 57.000000\n", "176 The Elves of Cintra (Genesis of Shannara, #2) ... 48.000000\n", "177 Castle Roogna (Xanth, #3) ... 45.000000\n", "178 The Seventh Gate (The Death Gate Cycle, #7) ... 52.000000\n", "179 The Awakened Mage (Kingmaker, Kingbreaker, #2) ... 50.000000\n", "180 The Restaurant at the End of the Universe (Hit... ... 60.000000\n", "181 Magic Kingdom For Sale/Sold (Magic Kingdom of ... ... 53.000000\n", "182 First Lord's Fury (Codex Alera, #6) ... 52.000000\n", "183 Assassin's Quest (Farseer Trilogy, #3) ... 56.000000\n", "184 Mistborn Trilogy Boxed Set (Mistborn, #1-3) ... 51.000000\n", "185 Cursor's Fury (Codex Alera, #3) ... 54.000000\n", "186 Imajica ... 54.000000\n", "187 Mistress of the Empire (The Empire Trilogy, #3) ... 46.000000\n", "188 Forest Mage (Soldier Son, #2) ... 49.000000\n", "189 The Dragon Keeper (Rain Wild Chronicles, #1) ... 50.000000\n", "190 The Runelords (Runelords #1) ... 47.000000\n", "191 Ancestors of Avalon (Avalon, #5) ... 46.000000\n", "192 The Slow Regard of Silent Things (The Kingkill... ... 56.000000\n", "193 Chainfire (Sword of Truth, #9) ... 50.000000\n", "194 The Novice (Black Magician Trilogy, #2) ... 57.000000\n", "195 Elric of Melniboné (Elric, #1) ... 52.000000\n", "196 Academ's Fury (Codex Alera, #2) ... 53.000000\n", "197 Sea of Silver Light (Otherland, #4) ... 45.000000\n", "198 The Alloy of Law (Mistborn, #4) ... 53.000000\n", "199 The Once and Future King (The Once and Future ... ... 59.000000\n", "200 Priestess of Avalon (Avalon, #4) ... 45.000000\n", "201 Tehanu (Earthsea Cycle, #4) ... 53.000000\n", "202 Naked Empire (Sword of Truth, #8) ... 50.000000\n", "203 Morgawr (The Voyage of the Jerle Shannara, #3) ... 46.000000\n", "204 Out of the Silent Planet (Space Trilogy, #1) ... 54.000000\n", "205 A Knight of the Word (Word & Void, #2) ... 48.000000\n", "206 Taliesin (The Pendragon Cycle, #1) ... 51.000000\n", "207 Dragon Wing (The Death Gate Cycle, #1) ... 50.000000\n", "208 Green Rider (Green Rider, #1) ... 54.000000\n", "209 The Illearth War (The Chronicles of Thomas Cov... ... 50.000000\n", "210 Wizard at Large (Magic Kingdom of Landover, #3) ... 49.000000\n", "211 Jarka Ruus (High Druid of Shannara, #1) ... 44.000000\n", "212 Warbreaker (Warbreaker, #1) ... 58.000000\n", "213 Child of the Prophecy (Sevenwaters, #3) ... 56.000000\n", "214 Servant of the Empire (The Empire Trilogy, #2) ... 46.000000\n", "215 The Color of Magic (Discworld, #1; Rincewind #1) ... 62.000000\n", "216 Temple of the Winds (Sword of Truth, #4) ... 52.000000\n", "217 All the Weyrs of Pern (Pern, #11) ... 50.000000\n", "218 Foundation (Foundation #1) ... 51.000000\n", "219 The Hero of Ages (Mistborn, #3) ... 57.000000\n", "220 The One Tree (The Second Chronicles of Thomas ... ... 44.000000\n", "221 The Halfling's Gem (Forgotten Realms: Icewind ... ... 52.000000\n", "222 Before They Are Hanged (The First Law #2) ... 53.000000\n", "223 Blood of the Fold (Sword of Truth, #3) ... 51.000000\n", "224 The Hollow Hills (Arthurian Saga, #2) ... 51.000000\n", "225 Guards! Guards! (Discworld, #8) ... 57.000000\n", "226 Rage of a Demon King (The Serpentwar Saga, #3) ... 42.000000\n", "227 The Shadow of the Torturer (The Book of the Ne... ... 53.000000\n", "228 Captain's Fury (Codex Alera, #4) ... 49.000000\n", "229 Midnight Tides (The Malazan Book of the Fallen... ... 52.000000\n", "230 Children of Dune (Dune Chronicles #3) ... 54.000000\n", "231 Phantom (Sword of Truth, #10) ... 50.000000\n", "232 Shards of a Broken Crown (The Serpentwar Saga,... ... 42.000000\n", "233 Wyrd Sisters (Discworld, #6; Witches #2) ... 56.000000\n", "234 A Storm of Swords: Steel and Snow (A Song of I... ... 56.000000\n", "235 Red Seas Under Red Skies (Gentleman Bastard, #2) ... 53.000000\n", "236 River of Blue Fire (Otherland, #2) ... 48.000000\n", "237 Mostly Harmless (Hitchhiker's Guide to the Gal... ... 57.000000\n", "238 Rise of a Merchant Prince (The Serpentwar Saga... ... 40.000000\n", "239 Dragonsdawn (Pern, #9) ... 52.000000\n", "240 Armageddon's Children (Genesis of Shannara, #1) ... 48.000000\n", "241 Ilse Witch (Voyage of the Jerle Shannara, #1) ... 48.000000\n", "242 Faith of the Fallen (Sword of Truth, #6) ... 54.000000\n", "243 The Republic of Thieves (Gentleman Bastard, #3) ... 51.000000\n", "244 The Complete Guide to Middle-Earth ... 40.000000\n", "245 The Legacy (Forgotten Realms: Legacy of the Dr... ... 46.000000\n", "246 The Warded Man (Demon Cycle, #1) ... 54.000000\n", "247 Deadhouse Gates (The Malazan Book of the Falle... ... 54.000000\n", "248 Hogfather (Discworld, #20; Death, #4) ... 60.000000\n", "249 Daughter of the Empire (The Empire Trilogy, #1) ... 47.000000\n", "250 The Magician King (The Magicians, #2) ... 56.000000\n", "251 Lady of Avalon (Avalon, #3) ... 48.000000\n", "252 The Renegades of Pern (Pern, #10) ... 48.000000\n", "253 The Pillars of Creation (Sword of Truth, #7) ... 49.000000\n", "254 The Curse of Chalion (World of the Five Gods, #1) ... 51.000000\n", "255 Pani Jeziora (Saga o Wiedźminie, #7) ... 47.000000\n", "256 The Lions of Al-Rassan ... 50.000000\n", "257 The King's Buccaneer (Krondor's Sons, #2) ... 41.000000\n", "258 The Hand of Chaos (The Death Gate Cycle, #5) ... 48.000000\n", "259 Another Fine Myth (Myth Adventures, #1) ... 49.000000\n", "260 The Desert Spear (Demon Cycle, #2) ... 52.000000\n", "261 Neverwhere ... 58.000000\n", "262 Life, the Universe and Everything (Hitchhiker'... ... 58.000000\n", "263 Prince of the Blood (Krondor's Sons, #1) ... 43.000000\n", "264 Serpent Mage (The Death Gate Cycle, #4) ... 48.000000\n", "265 The Innocent Mage (Kingmaker, Kingbreaker, #1) ... 53.000000\n", "266 Shaman's Crossing (Soldier Son, #1) ... 51.000000\n", "267 Elven Star (The Death Gate Cycle, #2) ... 49.000000\n", "268 Legend (The Drenai Saga, #1) ... 48.000000\n", "269 Half a War (Shattered Sea, #3) ... 49.000000\n", "270 The High Lord (Black Magician Trilogy, #3) ... 55.000000\n", "271 Princeps' Fury (Codex Alera, #5) ... 49.000000\n", "272 Rhapsody: Child of Blood (Symphony of Ages, #1) ... 53.000000\n", "273 Dragon Haven (Rain Wild Chronicles, #2) ... 52.000000\n", "274 The Orc King (Forgotten Realms: Transitions, #... ... 45.000000\n", "275 The Lies of Locke Lamora (Gentleman Bastard, #1) ... 58.000000\n", "276 Kushiel's Chosen (Phèdre's Trilogy, #2) ... 54.000000\n", "277 Kushiel's Justice (Imriel's Trilogy, #2) ... 51.000000\n", "278 Pyramids (Discworld, #7) ... 53.000000\n", "279 Dragon Prince (Dragon Prince, #1) ... 52.000000\n", "280 Krondor: The Betrayal (The Riftwar Legacy, #1) ... 42.000000\n", "281 Kushiel's Mercy (Imriel's Trilogy, #3) ... 49.000000\n", "282 Brothers Majere (Dragonlance: Preludes, #3) ... 36.000000\n", "283 Wicked: The Life and Times of the Wicked Witch... ... 56.000000\n", "284 Moreta: Dragonlady of Pern (Pern, #7) ... 48.000000\n", "285 The Magic of Recluce (The Saga of Recluce #1) ... 49.000000\n", "286 The Ultimate Hitchhiker's Guide to the Galaxy ... 60.000000\n", "287 Black Sun Rising (The Coldfire Trilogy, #1) ... 49.000000\n", "288 The Two Swords (Forgotten Realms: Hunter's Bla... ... 45.000000\n", "289 The Magician's Apprentice (Black Magician, #0.5) ... 53.000000\n", "290 Nerilka's Story (Pern, #8) ... 44.000000\n", "291 That Hideous Strength (Space Trilogy, #3) ... 52.000000\n", "292 Starless Night (Forgotten Realms: Legacy of th... ... 46.000000\n", "293 Tales from Earthsea (Earthsea Cycle, #5) ... 52.000000\n", "294 First Rider's Call (Green Rider, #2) ... 54.000000\n", "295 Sabriel (Abhorsen, #1) ... 53.000000\n", "296 Kushiel's Scion (Imriel's Trilogy, #1) ... 51.000000\n", "297 Chronicles of the Black Company (The Chronicle... ... 47.000000\n", "298 Servant of the Shard (Forgotten Realms: Paths ... ... 43.000000\n", "299 The Hitchhiker's Guide to the Galaxy: A Trilog... ... 53.000000\n", "300 The Magician's Land (The Magicians, #3) ... 51.000000\n", "301 Siege of Darkness (Forgotten Realms: Legacy of... ... 44.000000\n", "302 Reaper Man (Discworld, #11; Death, #2) ... 57.000000\n", "303 The Foundation Trilogy (Foundation, #1-3) ... 50.000000\n", "304 Son of the Shadows (Sevenwaters, #2) ... 52.000000\n", "305 The Magicians' Guild (Black Magician Trilogy, #1) ... 52.000000\n", "306 The Bonehunters (Malazan Book of the Fallen, #6) ... 48.000000\n", "307 Stardust ... 57.000000\n", "308 The Last Wish (The Witcher, #1) ... 50.000000\n", "309 The Amber Spyglass (His Dark Materials, #3) ... 55.000000\n", "310 The Long Dark Tea-Time of the Soul (Dirk Gentl... ... 51.000000\n", "311 Second Foundation (Foundation #3) ... 51.000000\n", "312 Priestess of the White (Age of the Five, #1) ... 52.000000\n", "313 So Long, and Thanks for All the Fish (Hitchhik... ... 56.000000\n", "314 Kushiel's Avatar (Phèdre's Trilogy, #3) ... 52.000000\n", "315 Furies of Calderon (Codex Alera, #1) ... 53.000000\n", "316 The Subtle Knife (His Dark Materials, #2) ... 58.000000\n", "317 The Dolphins of Pern (Pern, #13) ... 49.000000\n", "318 Queen of the Darkness (The Black Jewels, #3) ... 53.000000\n", "319 Men at Arms (Discworld, #15; City Watch #2) ... 57.000000\n", "320 The Wheel of Time: Boxed Set (Wheel of Time, ... ... 23.000000\n", "321 Foundation and Empire (Foundation #2) ... 52.000000\n", "322 The Belgariad Boxed Set: Pawn of Prophecy / Qu... ... 38.000000\n", "323 The Chronicles of Thomas Covenant, the Unbelie... ... 40.000000\n", "324 The Crimson Campaign (Powder Mage, #2) ... 42.000000\n", "325 A Song of Ice and Fire (A Song of Ice and Fire... ... 53.000000\n", "326 Heir to the Shadows (The Black Jewels, #2) ... 53.000000\n", "327 Blood of Dragons (Rain Wild Chronicles, #4) ... 49.000000\n", "328 Wieża Jaskółki (Saga o Wiedźminie, #6) ... 46.000000\n", "329 Equal Rites (Discworld, #3; Witches #1) ... 57.000000\n", "330 The Great Dune Trilogy ... 41.000000\n", "331 The Light Fantastic (Discworld, #2; Rincewind #2) ... 57.000000\n", "332 Alvin Journeyman (Tales of Alvin Maker, #4) ... 45.000000\n", "333 A Storm of Swords: Blood and Gold (A Song of I... ... 56.000000\n", "334 Red Prophet (Tales of Alvin Maker, #2) ... 50.000000\n", "335 Reaper's Gale (The Malazan Book of the Fallen,... ... 47.000000\n", "336 God Emperor of Dune (Dune Chronicles #4) ... 53.000000\n", "337 His Dark Materials (His Dark Materials #1-3) ... 57.000000\n", "338 Daughter of the Blood (The Black Jewels #1) ... 52.000000\n", "339 The Lone Drow (Forgotten Realms: Hunter's Blad... ... 45.000000\n", "340 Blood Song (Raven's Shadow, #1) ... 52.000000\n", "341 The Gunslinger (The Dark Tower, #1) ... 58.000000\n", "342 The Bands of Mourning (Mistborn, #6) ... 47.000000\n", "343 The Lost Gate (Mither Mages, #1) ... 51.000000\n", "344 The Golden Compass (His Dark Materials, #1) ... 55.000000\n", "345 Lords and Ladies (Discworld, #14; Witches #4) ... 55.000000\n", "346 House of Chains (The Malazan Book of the Falle... ... 50.000000\n", "347 The Spine of the World (Forgotten Realms: Path... ... 43.000000\n", "348 Anansi Boys ... 53.000000\n", "349 Chrzest ognia (Saga o Wiedźminie, #5) ... 45.000000\n", "350 Foundation and Earth (Foundation #5) ... 49.000000\n", "351 The Black Prism (Lightbringer, #1) ... 56.000000\n", "352 Dirk Gently's Holistic Detective Agency (Dirk ... ... 49.000000\n", "353 The Broken Eye (Lightbringer, #3) ... 50.000000\n", "354 From the Two Rivers: The Eye of the World, Par... ... 44.000000\n", "355 The Dragon's Path (The Dagger and the Coin, #1) ... 45.000000\n", "356 Kushiel's Dart (Phèdre's Trilogy, #1) ... 51.000000\n", "357 Magician (The Riftwar Saga, #1-2) ... 52.000000\n", "358 City of Golden Shadow (Otherland, #1) ... 48.000000\n", "359 2001: A Space Odyssey (Space Odyssey, #1) ... 54.000000\n", "360 The Way of Shadows (Night Angel, #1) ... 56.000000\n", "361 A Princess of Mars (Barsoom, #1) ... 45.000000\n", "362 Miecz przeznaczenia (Saga o Wiedźminie, #2) ... 47.000000\n", "363 Solaris ... 44.000000\n", "364 Confessor (Sword of Truth, #11) ... 47.000000\n", "365 King of Thorns (The Broken Empire, #2) ... 53.000000\n", "366 Fool's Quest (The Fitz and The Fool, #2) ... 47.000000\n", "367 Shadow's Edge (Night Angel, #2) ... 54.000000\n", "368 Dune (Dune Chronicles #1) ... 58.000000\n", "369 The Wheel of Time: Boxed Set #1 (Wheel of Time... ... 28.000000\n", "370 Toll the Hounds (The Malazan Book of the Falle... ... 46.000000\n", "371 Interesting Times (Discworld, #17; Rincewind #5) ... 55.000000\n", "372 Feet of Clay (Discworld, #19; City Watch, #3) ... 54.000000\n", "373 The Gate Thief (Mither Mages, #2) ... 48.000000\n", "374 Night Watch (Watch #1) ... 51.000000\n", "375 The Blinding Knife (Lightbringer, #2) ... 49.000000\n", "376 The Farseer Trilogy (Farseer Trilogy #1-3) ... 37.000000\n", "377 Talon of the Silver Hawk (Conclave of Shadows,... ... 40.000000\n", "378 The Gods of Mars (Barsoom, #2) ... 45.000000\n", "379 The War of the Worlds ... 52.000000\n", "380 Rise of Empire (The Riyria Revelations, #3-4) ... 46.000000\n", "381 Heretics of Dune (Dune Chronicles #5) ... 50.000000\n", "382 The Scar (Bas-Lag, #2) ... 46.000000\n", "383 The Omen Machine (Sword of Truth, #12; Richard... ... 45.000000\n", "384 The Goblin Emperor ... 45.000000\n", "385 The Ship Who Sang (Brainship, #1) ... 45.000000\n", "386 The Heroes (First Law World, #5) ... 49.000000\n", "387 The Time Machine ... 51.000000\n", "388 King of Foxes (Conclave of Shadows, #2) ... 37.000000\n", "389 I, Robot (Robot #0.1) ... 48.000000\n", "390 Eragon (The Inheritance Cycle, #1) ... 59.000000\n", "391 The World of Ice & Fire: The Untold History of... ... 53.000000\n", "392 The Blue Sword (Damar, #1) ... 56.000000\n", "393 The Chronicles of Narnia (Chronicles of Narnia... ... 49.000000\n", "394 Dune Messiah (Dune Chronicles #2) ... 53.000000\n", "395 The Night Angel Trilogy (Night Angel, #1-3) ... 47.000000\n", "396 Shadow & Claw (The Book of the New Sun #1-2) ... 45.000000\n", "397 The Sworn Sword (The Tales of Dunk and Egg, #2) ... 38.000000\n", "398 The Crippled God (The Malazan Book of the Fall... ... 45.000000\n", "399 The Thousand Orcs (Forgotten Realms: Hunter's ... ... 43.000000\n", "400 Sourcery (Discworld, #5; Rincewind #3) ... 52.000000\n", "401 Debt of Bones (Sword of Truth, #0.5) ... 44.000000\n", "402 The Black Company (The Chronicles of the Black... ... 44.000000\n", "403 The Hobbit: Graphic Novel ... 59.000000\n", "404 The Naming (The Books of Pellinor, #1) ... 53.000000\n", "405 Fantastic Voyage ... 40.000000\n", "406 The Broken Kingdoms (Inheritance, #2) ... 45.000000\n", "407 The Rogue (Traitor Spy Trilogy, #2) ... 44.000000\n", "408 Castle in the Air (Howl's Moving Castle, #2) ... 50.000000\n", "409 Emperor of Thorns (The Broken Empire, #3) ... 45.000000\n", "410 The Daylight War (Demon Cycle, #3) ... 50.000000\n", "411 Something Wicked This Way Comes (Green Town, #2) ... 51.000000\n", "412 Prince of Thorns (The Broken Empire, #1) ... 53.000000\n", "413 The Silent Blade (Forgotten Realms: Paths of D... ... 40.000000\n", "414 Childhood's End ... 48.000000\n", "415 The Riddle (The Books of Pellinor, #2) ... 48.000000\n", "416 Half the World (Shattered Sea, #2) ... 48.000000\n", "417 Sea of Swords (Forgotten Realms: Paths of Dark... ... 40.000000\n", "418 Throne of Jade (Temeraire, #2) ... 52.000000\n", "419 Heir of Novron (The Riyria Revelations, #5-6) ... 45.000000\n", "420 Best Served Cold ... 50.000000\n", "421 American Gods (American Gods, #1) ... 56.000000\n", "422 Prentice Alvin (Tales of Alvin Maker, #3) ... 44.000000\n", "423 A Dance with Dragons: After the Feast (A Song ... ... 50.000000\n", "424 The Emperor's Blades (Chronicle of the Unhewn ... ... 43.000000\n", "425 Shadows of Self (Mistborn, #5) ... 45.000000\n", "426 Foundation and Chaos (Second Foundation Trilog... ... 35.000000\n", "427 The White Rose (The Chronicles of the Black Co... ... 46.000000\n", "428 Day Watch (Watch #2) ... 51.000000\n", "429 Exile's Return (Conclave of Shadows, #3) ... 35.000000\n", "430 The Providence of Fire (Chronicle of the Unhew... ... 46.000000\n", "431 Brilliance of the Moon (Tales of the Otori, #3) ... 50.000000\n", "432 The Legend of Huma (Dragonlance: Heroes, #1) ... 40.000000\n", "433 Promise of Blood (Powder Mage, #1) ... 43.000000\n", "434 Passage to Dawn (Forgotten Realms: Legacy of t... ... 42.000000\n", "435 His Majesty's Dragon (Temeraire, #1) ... 51.000000\n", "436 Do Androids Dream of Electric Sheep? ... 48.000000\n", "437 Brave New World ... 55.000000\n", "438 Dragonheart (Pern, #21) ... 40.000000\n", "439 Pathfinder (Pathfinder, #1) ... 49.000000\n", "440 Red Country (First Law World, #6) ... 47.000000\n", "441 Waylander (The Drenai Saga, #3) ... 45.000000\n", "442 The Book of Three (The Chronicles of Prydain, #1) ... 48.000000\n", "443 Night Watch (Discworld, #29; City Watch, #6) ... 53.000000\n", "444 Stranger in a Strange Land ... 54.000000\n", "445 The Darkness That Comes Before (The Prince of ... ... 45.000000\n", "446 The Autumn Republic (Powder Mage, #3) ... 40.000000\n", "447 Soul Music (Discworld, #16; Death, #3) ... 54.000000\n", "448 The Chronicles of Pern: First Fall (Pern, #12) ... 46.000000\n", "449 A Game of Thrones / A Clash of Kings (A Song o... ... 46.000000\n", "450 Mort (Death, #1; Discworld, #4) ... 55.000000\n", "451 The Aeronaut's Windlass (The Cinder Spires, #1) ... 45.000000\n", "452 The End of Eternity ... 46.000000\n", "453 Days of Magic, Nights of War (Abarat, #2) ... 47.000000\n", "454 Contact ... 53.000000\n", "455 The Rowan (The Tower and the Hive, #1) ... 48.000000\n", "456 The Butlerian Jihad (Legends of Dune, #1) ... 48.000000\n", "457 House Harkonnen (Prelude to Dune #2) ... 45.000000\n", "458 Chapterhouse: Dune (Dune Chronicles #6) ... 50.000000\n", "459 Ender's Game (Ender's Saga, #1) ... 57.000000\n", "460 BookRags Summary: A Storm of Swords ... 27.000000\n", "461 Ptolemy's Gate (Bartimaeus, #3) ... 50.000000\n", "462 The Invisible Man ... 51.000000\n", "463 The Magicians (The Magicians #1) ... 51.000000\n", "464 Jurassic Park (Jurassic Park, #1) ... 57.000000\n", "465 Weaveworld ... 51.000000\n", "466 Beyond the Shadows (Night Angel, #3) ... 52.000000\n", "467 1984 ... 55.000000\n", "468 Abarat (Abarat, #1) ... 50.000000\n", "469 Dust of Dreams (The Malazan Book of the Fallen... ... 46.000000\n", "470 Jingo (Discworld, #21; City Watch, #4) ... 51.000000\n", "471 Prelude to Foundation ... 44.000000\n", "472 Raymond E. Feist's Magician Master ... 20.000000\n", "473 Anne McCaffrey's Dragonflight #1 ... 36.000000\n", "474 Rama II (Rama, #2) ... 45.000000\n", "475 The Hundred Thousand Kingdoms (Inheritance Tri... ... 47.000000\n", "476 The Player of Games (Culture, #2) ... 45.000000\n", "477 The Ambassador's Mission (Traitor Spy Trilogy,... ... 46.000000\n", "478 The Robots of Dawn (Robot #3) ... 47.000000\n", "479 The King Beyond the Gate (The Drenai Saga, #2) ... 41.000000\n", "480 The Midwich Cuckoos ... 42.000000\n", "481 Theft of Swords (The Riyria Revelations, #1-2) ... 47.000000\n", "482 The Golem's Eye (Bartimaeus, #2) ... 51.000000\n", "483 The Dark Is Rising (The Dark is Rising, #2) ... 50.000000\n", "484 The Stainless Steel Rat (Stainless Steel Rat, #4) ... 38.000000\n", "485 Street Magic (The Circle Opens, #2) ... 45.000000\n", "486 The Cat Who Walks Through Walls (The World As ... ... 47.000000\n", "487 Tower Lord (Raven's Shadow, #2) ... 48.000000\n", "488 Carpe Jugulum (Discworld #23; Witches #6) ... 53.000000\n", "489 City of Stairs (The Divine Cities, #1) ... 44.000000\n", "490 The Realms of the Gods (Immortals, #4) ... 44.000000\n", "491 House Atreides (Prelude to Dune #1) ... 48.000000\n", "492 Grass for His Pillow (Tales of the Otori, #2) ... 51.000000\n", "493 The Law of Nines ... 42.000000\n", "494 Snow Crash ... 49.000000\n", "495 Sandry's Book (Circle of Magic, #1) ... 43.000000\n", "496 Replay ... 49.000000\n", "497 The Lost World (Professor Challenger, #1) ... 50.000000\n", "498 The Crown Tower (The Riyria Chronicles, #1) ... 44.000000\n", "499 Witches Abroad (Discworld, #12; Witches #3) ... 53.000000\n", "500 A Dance with Dragons: Dreams and Dust (A Song ... ... 49.000000\n", "501 Across the Nightingale Floor (Tales of the Oto... ... 54.000000\n", "502 A Knight of the Seven Kingdoms (The Tales of D... ... 50.000000\n", "503 Thud! (Discworld, #34; City Watch #7) ... 50.000000\n", "504 The Lathe of Heaven ... 45.000000\n", "505 Luck in the Shadows (Nightrunner, #1) ... 49.000000\n", "506 The Crown Conspiracy (The Riyria Revelations, #1) ... 40.000000\n", "507 Making Money (Discworld, #36; Moist Von Lipwig... ... 50.000000\n", "508 The First Confessor (The Legend of Magda Searu... ... 40.000000\n", "509 Crystal Singer (Crystal Singer, #1) ... 43.000000\n", "510 Eragon, Eldest & Brisingr (Inheritance, #1-3) ... 45.000000\n", "511 The Sirens of Titan ... 50.000000\n", "512 Robots and Empire (Robot #4) ... 43.000000\n", "513 Good Omens: The Nice and Accurate Prophecies o... ... 57.000000\n", "514 The Machine Crusade (Legends of Dune, #2) ... 42.000000\n", "515 Seventh Son (Tales of Alvin Maker, #1) ... 50.000000\n", "516 The Mystery Knight (The Tales of Dunk and Egg,... ... 39.000000\n", "517 Black Powder War (Temeraire, #3) ... 50.000000\n", "518 Caliban's War (The Expanse, #2) ... 43.000000\n", "519 The Caves of Steel (Robot #1) ... 48.000000\n", "520 Victory of Eagles (Temeraire, #5) ... 48.000000\n", "521 The Day of the Triffids ... 47.000000\n", "522 Perdido Street Station (Bas-Lag, #1) ... 44.000000\n", "523 Interview with the Vampire (The Vampire Chroni... ... 54.000000\n", "524 And Another Thing... ... 47.000000\n", "525 The Rise of Endymion (Hyperion Cantos, #4) ... 51.000000\n", "526 Half a King (Shattered Sea, #1) ... 47.000000\n", "527 The Lives of Christopher Chant (Chrestomanci, #2) ... 44.000000\n", "528 Going Postal (Discworld, #33; Moist von Lipwig... ... 50.000000\n", "529 The Black Cauldron (The Chronicles of Prydain #2) ... 48.000000\n", "530 Invasion of the Body Snatchers ... 42.000000\n", "531 More Than Human ... 42.000000\n", "532 Journey to the Center of the Earth (Extraordin... ... 49.000000\n", "533 Better than Life (Red Dwarf #2) ... 40.000000\n", "534 Forward the Foundation (Foundation: Prequel #2) ... 42.000000\n", "535 Cold Fire (The Circle Opens, #3) ... 42.000000\n", "536 Dandelion Wine (Green Town, #1) ... 53.000000\n", "537 The Stars My Destination ... 43.000000\n", "538 Brave New World / Brave New World Revisited ... 47.000000\n", "539 Lost in a Good Book (Thursday Next, #2) ... 44.000000\n", "540 Empire of Ivory (Temeraire, #4) ... 48.000000\n", "541 The Island of Dr. Moreau ... 43.000000\n", "542 The Three Stigmata of Palmer Eldritch ... 43.000000\n", "543 Nightfall ... 42.000000\n", "544 Skin Game (The Dresden Files, #15) ... 39.000000\n", "545 The Blood Mirror (Lightbringer, #4) ... 38.000000\n", "546 The Lost Years (The Lost Years of Merlin, #1) ... 38.000000\n", "547 Hunters of Dune (Dune Chronicles #7) ... 41.000000\n", "548 Czas pogardy (Saga o Wiedźminie, #4) ... 42.000000\n", "549 The Fifth Elephant (Discworld, #24; City Watch... ... 49.000000\n", "550 Fool Moon (The Dresden Files, #2) ... 42.000000\n", "551 Cold Days (The Dresden Files, #14) ... 40.000000\n", "552 White Night (The Dresden Files, #9) ... 40.000000\n", "553 Maskerade (Discworld, #18; Witches #5) ... 50.000000\n", "554 Consider Phlebas (Culture, #1) ... 47.000000\n", "555 Use of Weapons (Culture, #3) ... 45.000000\n", "556 Storm Front (The Dresden Files, #1) ... 43.000000\n", "557 Howl's Moving Castle (Howl's Moving Castle, #1) ... 49.000000\n", "558 The Woman Who Rides Like a Man (Song of the Li... ... 49.000000\n", "559 Pastwatch: The Redemption of Christopher Columbus ... 45.000000\n", "560 Shadows Linger (The Chronicles of the Black Co... ... 40.000000\n", "561 A Scanner Darkly ... 44.000000\n", "562 The Left Hand of God (The Left Hand of God, #1) ... 49.000000\n", "563 Dawn of Wonder (The Wakening, #1) ... 41.000000\n", "564 Sundiver (The Uplift Saga, #1) ... 38.000000\n", "565 The Rithmatist (The Rithmatist, #1) ... 45.000000\n", "566 The Neutronium Alchemist (Night's Dawn, #2) ... 38.000000\n", "567 The Voyage of the Dawn Treader (Chronicles of ... ... 52.000000\n", "568 Children of the Mind (Ender's Saga, #4) ... 48.000000\n", "569 Have Space Suit—Will Travel ... 44.000000\n", "570 All Tomorrow's Parties (Bridge, #3) ... 40.000000\n", "571 Count Zero (Sprawl, #2) ... 45.000000\n", "572 The Mummy (Ramses the Damned #1) ... 43.000000\n", "573 Snuff (Discworld, #39; City Watch #8) ... 49.000000\n", "574 Time Enough for Love ... 46.000000\n", "575 The Red Knight (The Traitor Son Cycle, #1) ... 42.000000\n", "576 The Last Continent (Discworld, #22; Rincewind #6) ... 50.000000\n", "577 Thief of Time (Discworld, #26; Death, #5) ... 49.000000\n", "578 The Truth (Discworld, #25; Industrial Revoluti... ... 47.000000\n", "579 The Way of Kings, Part 1 (The Stormlight Archi... ... 43.000000\n", "580 The Emperor's Soul ... 48.000000\n", "581 Cibola Burn (The Expanse, #4) ... 45.000000\n", "582 The Rose and the Thorn (The Riyria Chronicles,... ... 45.000000\n", "583 The Last Battle (Chronicles of Narnia, #7) ... 55.000000\n", "584 Moving Pictures (Discworld, #10; Industrial Re... ... 48.000000\n", "585 Mattimeo (Redwall, #3) ... 46.000000\n", "586 The Castle of Llyr (The Chronicles of Prydain #3) ... 48.000000\n", "587 Flow My Tears, the Policeman Said ... 42.000000\n", "588 Judas Unchained ... 44.000000\n", "589 Job: A Comedy of Justice ... 39.000000\n", "590 Blood Rites (The Dresden Files, #6) ... 41.000000\n", "591 Raising Steam (Discworld, #40, Moist von Lipwi... ... 50.000000\n", "592 Slaughterhouse-Five ... 53.000000\n", "593 The Door Into Summer ... 42.000000\n", "594 The Will of the Empress (Circle Reforged, #1) ... 46.000000\n", "595 Infinity Welcomes Careful Drivers (Red Dwarf #1) ... 48.000000\n", "596 Cat's Cradle ... 51.000000\n", "597 Changes (The Dresden Files, #12) ... 42.000000\n", "598 Martin the Warrior (Redwall, #6) ... 44.000000\n", "599 Tarzan of the Apes (Tarzan, #1) ... 48.000000\n", "600 Ender's Shadow (Ender's Shadow, #1) ... 51.000000\n", "601 The Burning Bridge (Ranger's Apprentice, #2) ... 47.000000\n", "602 Harry Potter and the Goblet of Fire (Harry Pot... ... 52.000000\n", "603 Endymion (Hyperion Cantos, #3) ... 48.000000\n", "604 Sir Thursday (The Keys to the Kingdom, #4) ... 46.000000\n", "605 The City and the Stars ... 46.000000\n", "606 The Shepherd's Crown (Discworld, #41; Tiffany ... ... 44.000000\n", "607 Eragon & Eldest (Inheritance, #1-2) ... 40.000000\n", "608 Silver on the Tree (The Dark is Rising, #5) ... 45.000000\n", "609 The Puppet Masters ... 43.000000\n", "610 The Mote in God's Eye ... 42.000000\n", "611 A Swiftly Tilting Planet (A Wrinkle in Time Qu... ... 46.000000\n", "612 Olympos (Ilium, #2) ... 42.000000\n", "613 The Drawing of the Three (The Dark Tower, #2) ... 55.000000\n", "614 The Waste Lands (The Dark Tower, #3) ... 52.000000\n", "615 The Memory of Earth (Homecoming, #1) ... 44.000000\n", "616 Briar's Book (Circle of Magic, #4) ... 45.000000\n", "617 Magician: Apprentice (Raymond E. Feist's Magi... ... 33.000000\n", "618 Fevre Dream ... 45.000000\n", "619 The Siege of Macindaw (Ranger's Apprentice, #6) ... 46.000000\n", "620 Redwall (Redwall, #1) ... 48.000000\n", "621 The Martian Chronicles ... 52.000000\n", "622 The Wind Singer (Wind on Fire, #1) ... 39.000000\n", "623 The Harry Potter Collection 1-4 (Harry Potter,... ... 46.000000\n", "624 Unseen Academicals (Discworld, #37; Rincewind #8) ... 48.000000\n", "625 Battlefield Earth: A Saga of the Year 3000 ... 49.000000\n", "626 Shattered (The Iron Druid Chronicles, #7) ... 37.000000\n", "627 The Ringworld Engineers (Ringworld #2) ... 42.000000\n", "628 VALIS (VALIS Trilogy, #1) ... 45.000000\n", "629 The Fall of Hyperion (Hyperion Cantos, #2) ... 52.000000\n", "630 The Sparrow (The Sparrow, #1) ... 48.000000\n", "631 Footfall ... 36.000000\n", "632 Cryptonomicon ... 45.000000\n", "633 The Salmon of Doubt (Dirk Gently, #3) ... 47.000000\n", "634 Shadow of the Giant (Ender's Shadow, #4) ... 48.000000\n", "635 Death Masks (The Dresden Files, #5) ... 40.000000\n", "636 The Skull Throne (Demon Cycle, #4) ... 41.000000\n", "637 Friday ... 41.000000\n", "638 The Dark Is Rising Sequence (The Dark Is Risi... ... 45.000000\n", "639 Proven Guilty (The Dresden Files, #8) ... 39.000000\n", "640 Abaddon's Gate (The Expanse, #3) ... 44.000000\n", "641 Turn Coat (The Dresden Files, #11) ... 40.000000\n", "642 A Hat Full of Sky (Discworld, #32; Tiffany Ach... ... 48.000000\n", "643 Grave Peril (The Dresden Files, #3) ... 42.000000\n", "644 Dead Beat (The Dresden Files, #7) ... 40.000000\n", "645 The Amulet of Samarkand (Bartimaeus, #1) ... 49.000000\n", "646 The Naked Sun (Robot #2) ... 46.000000\n", "647 The Prestige ... 45.000000\n", "648 Eric (Discworld, #9; Rincewind #4) ... 48.000000\n", "649 Seraphina (Seraphina, #1) ... 47.000000\n", "650 Shadow Puppets (Ender's Shadow, #3) ... 47.000000\n", "651 Virtual Light (Bridge, #1) ... 42.000000\n", "652 The Dragon Heir (The Heir Chronicles, #3) ... 44.000000\n", "653 The Ocean at the End of the Lane ... 48.000000\n", "654 Ilium (Ilium, #1) ... 42.000000\n", "655 Queen of Fire (Raven's Shadow, #3) ... 44.000000\n", "656 Many Waters (A Wrinkle in Time Quintet, #4) ... 46.000000\n", "657 Taran Wanderer (The Chronicles of Prydain #4) ... 46.000000\n", "658 Shadow of the Hegemon (Ender's Shadow, #2) ... 47.000000\n", "659 Monstrous Regiment (Discworld, #31; Industrial... ... 49.000000\n", "660 2010: Odyssey Two (Space Odyssey, #2) ... 46.000000\n", "661 Prince Caspian (Chronicles of Narnia, #2) ... 48.000000\n", "662 Xenocide (Ender's Saga, #3) ... 52.000000\n", "663 Storm Glass (Glass, #1) ... 45.000000\n", "664 Sea Glass (Glass, #2) ... 45.000000\n", "665 Lady Friday (The Keys to the Kingdom, #5) ... 45.000000\n", "666 Small Favor (The Dresden Files, #10) ... 40.000000\n", "667 Daja's Book (Circle of Magic, #3) ... 43.000000\n", "668 The Hedge Knight (The Tales of Dunk and Egg, #1) ... 41.000000\n", "669 The Quantum Thief (Jean le Flambeur, #1) ... 41.000000\n", "670 Summer Knight (The Dresden Files, #4) ... 39.000000\n", "671 Against a Dark Background ... 41.000000\n", "672 Pebble in the Sky (Galactic Empire #3) ... 43.000000\n", "673 High-Rise ... 45.000000\n", "674 Methuselah's Children ... 37.000000\n", "675 Over Sea, Under Stone (The Dark Is Rising, #1) ... 42.000000\n", "676 The Queen of the Tearling (The Queen of the Te... ... 47.000000\n", "677 Lioness Rampant (Song of the Lioness, #4) ... 47.000000\n", "678 The Thousand Names (The Shadow Campaigns, #1) ... 40.000000\n", "679 Kurt Vonnegut's Cat's Cradle (Modern Critical ... ... 36.000000\n", "680 Planet of the Apes ... 47.000000\n", "681 Drowned Wednesday (The Keys to the Kingdom, #3) ... 45.000000\n", "682 House Corrino (Prelude to Dune #3) ... 42.000000\n", "683 Men at Arms: The Play ... 33.000000\n", "684 Grim Tuesday (The Keys to the Kingdom, #2) ... 44.000000\n", "685 Sunshine ... 48.000000\n", "686 The Amazing Maurice and His Educated Rodents (... ... 44.000000\n", "687 Kraken ... 42.000000\n", "688 Secret History (Mistborn, #3.5) ... 40.000000\n", "689 The Last Dragonslayer (The Chronicles of Kazam... ... 41.000000\n", "690 Poison Study (Study, #1) ... 45.000000\n", "691 The Martian ... 49.000000\n", "692 The Minority Report ... 39.000000\n", "693 Wintersmith (Discworld, #35; Tiffany Aching, #3) ... 47.000000\n", "694 The Evolutionary Void ... 38.000000\n", "695 A Wind in the Door (A Wrinkle in Time Quintet,... ... 47.000000\n", "696 Mona Lisa Overdrive (Sprawl, #3) ... 41.000000\n", "697 The Lion, the Witch, and the Wardrobe (Chronic... ... 52.000000\n", "698 Fated (Alex Verus, #1) ... 41.000000\n", "699 Inversions (Culture, #6) ... 44.000000\n", "700 Shadow of Night (All Souls Trilogy, #2) ... 44.000000\n", "701 The Sorcerer in the North (Ranger's Apprentice... ... 43.000000\n", "702 Ghost Story (The Dresden Files, #13) ... 39.000000\n", "703 The Magician's Nephew (Chronicles of Narnia, #6) ... 49.000000\n", "704 The Wee Free Men (Discworld, #30; Tiffany Achi... ... 49.000000\n", "705 Mister Monday (The Keys to the Kingdom, #1) ... 44.000000\n", "706 Fahrenheit 451 ... 51.000000\n", "707 Squire (Protector of the Small, #3) ... 44.000000\n", "708 Harry Potter and the Chamber of Secrets (Harry... ... 55.000000\n", "709 Mort: The Play ... 39.000000\n", "710 Chasm City ... 41.000000\n", "711 Children of God (The Sparrow, #2) ... 47.000000\n", "712 Rama Revealed (Rama, #4) ... 43.000000\n", "713 William Shakespeare's Star Wars: Verily, A New... ... 48.000000\n", "714 Tris's Book (Circle of Magic, #2) ... 43.000000\n", "715 Trickster's Choice (Daughter of the Lioness, #1) ... 46.000000\n", "716 The Rook (The Checquy Files, #1) ... 44.000000\n", "717 Salamandastron (Redwall, #5) ... 41.000000\n", "718 Lady Knight (Protector of the Small, #4) ... 45.000000\n", "719 The Rise of Nine (Lorien Legacies, #3) ... 44.000000\n", "720 Jonathan Strange & Mr Norrell ... 50.000000\n", "721 Terrier (Beka Cooper, #1) ... 44.000000\n", "722 Son of a Witch (The Wicked Years, #2) ... 49.000000\n", "723 Shatterglass (The Circle Opens, #4) ... 41.000000\n", "724 Lyra's Oxford (His Dark Materials, #3.5) ... 45.000000\n", "725 The Garden of Rama (Rama, #3) ... 42.000000\n", "726 Sphere ... 50.000000\n", "727 Nemesis ... 38.000000\n", "728 The Atrocity Archives (Laundry Files, #1) ... 42.000000\n", "729 Talking to Dragons (Enchanted Forest Chronicle... ... 43.000000\n", "730 Leviathan Wakes (The Expanse, #1) ... 45.000000\n", "731 The Wizard Heir (The Heir Chronicles, #2) ... 43.000000\n", "732 The Horse and His Boy (Chronicles of Narnia, #5) ... 51.000000\n", "733 The Invasion of the Tearling (The Queen of the... ... 46.000000\n", "734 The Neverending Story ... 53.000000\n", "735 A Song of Ice and Fire (A Song of Ice and Fire... ... 46.000000\n", "736 Lord Brocktree (Redwall, #13) ... 38.000000\n", "737 Servant of the Bones ... 41.000000\n", "738 The Passage (The Passage, #1) ... 38.000000\n", "739 The Reality Dysfunction (Night's Dawn, #1) ... 41.000000\n", "740 The Kings of Clonmel (Ranger's Apprentice, #8) ... 46.000000\n", "741 The Andromeda Strain ... 49.000000\n", "742 Idoru (Bridge #2) ... 38.000000\n", "743 The Well of Lost Plots (Thursday Next #3) ... 48.000000\n", "744 Great North Road ... 40.000000\n", "745 The Warrior's Apprentice (Vorkosigan Saga, #2) ... 44.000000\n", "746 Alanna: The First Adventure (Song of the Lione... ... 45.000000\n", "747 The Long Way to a Small, Angry Planet (Wayfare... ... 45.000000\n", "748 Red Rising (Red Rising, #1) ... 50.000000\n", "749 So You Want to Be a Wizard (Young Wizards, #1) ... 46.000000\n", "750 Never Let Me Go ... 46.000000\n", "751 The Soldiers of Halla (Pendragon, #10) ... 42.000000\n", "752 An Acceptable Time (A Wrinkle in Time Quintet,... ... 45.000000\n", "753 Spell or High Water (Magic 2.0, #2) ... 35.000000\n", "754 The Lost City of Faar (Pendragon, #2) ... 40.000000\n", "755 Greenwitch (The Dark Is Rising, #3) ... 47.000000\n", "756 The Dreaming Void ... 44.000000\n", "757 Revelation Space ... 44.000000\n", "758 Steelheart (The Reckoners, #1) ... 45.000000\n", "759 A Darker Shade of Magic (Shades of Magic, #1) ... 45.000000\n", "760 A Clockwork Orange ... 46.000000\n", "761 Something from the Nightside (Nightside, #1) ... 40.000000\n", "762 Pandora's Star ... 45.000000\n", "763 Ready Player One ... 48.000000\n", "764 In the Hand of the Goddess (Song of the Liones... ... 47.000000\n", "765 The Invisible Library (The Invisible Library, #1) ... 41.000000\n", "766 The Host (The Host, #1) ... 49.000000\n", "767 Page (Protector of the Small, #2) ... 45.000000\n", "768 The Long Earth (The Long Earth, #1) ... 46.000000\n", "769 The Lost World (Jurassic Park, #2) ... 48.000000\n", "770 Playing with Fire (Skulduggery Pleasant, #2) ... 44.000000\n", "771 Mossflower (Redwall, #2) ... 46.000000\n", "772 The Princess Bride ... 43.000000\n", "773 Off to Be the Wizard (Magic 2.0, #1) ... 38.000000\n", "774 Twilight Watch (Watch #3) ... 43.000000\n", "775 Graceling (Graceling Realm, #1) ... 48.000000\n", "776 Wild Magic (Immortals, #1) ... 44.000000\n", "777 Trickster's Queen (Daughter of the Lioness, #2) ... 45.000000\n", "778 Crown Duel (Crown & Court #1-2) ... 41.000000\n", "779 The Emperor of Nihon-Ja (Ranger's Apprentice, ... ... 42.000000\n", "780 The Eternity Code (Artemis Fowl, #3) ... 45.000000\n", "781 Leven Thumps and the Eyes of the Want (Leven T... ... 41.000000\n", "782 The Library at Mount Char ... 38.000000\n", "783 The Time Machine/The Invisible Man ... 40.000000\n", "784 House of Many Ways (Howl's Moving Castle, #3) ... 45.000000\n", "785 Magic Study (Study, #2) ... 47.000000\n", "786 Enchantment ... 53.000000\n", "787 The Temporal Void ... 41.000000\n", "788 Fire (Graceling Realm, #2) ... 49.000000\n", "789 I Shall Wear Midnight (Discworld, #38; Tiffany... ... 43.000000\n", "790 The Chrysalids ... 47.000000\n", "791 The Time Paradox (Artemis Fowl, #6) ... 44.000000\n", "792 The Hydrogen Sonata (Culture #10) ... 41.000000\n", "793 Armor ... 46.000000\n", "794 A World Without Heroes (Beyonders, #1) ... 44.000000\n", "795 The System of the World (The Baroque Cycle, #3) ... 37.000000\n", "796 The Fifth Season (The Broken Earth, #1) ... 41.000000\n", "797 Matter (Culture, #8) ... 42.000000\n", "798 The Peripheral ... 39.000000\n", "799 Prince of Fools (The Red Queen's War, #1) ... 42.000000\n", "800 The Naked God (Night's Dawn, #3) ... 39.000000\n", "801 Smoke and Mirrors: Short Fiction and Illusions ... 47.000000\n", "802 Starship Troopers ... 52.000000\n", "803 Frankenstein ... 48.000000\n", "804 Pattern Recognition (Blue Ant, #1) ... 42.000000\n", "805 Emperor Mage (Immortals, #3) ... 45.000000\n", "806 Under the Skin ... 41.000000\n", "807 Wolf-Speaker (Immortals, #2) ... 43.000000\n", "808 Wizard and Glass (The Dark Tower, #4) ... 52.000000\n", "809 Calling on Dragons (Enchanted Forest Chronicle... ... 43.000000\n", "810 Black Water (Pendragon, #5) ... 39.000000\n", "811 A Civil Campaign (Vorkosigan Saga, #12) ... 41.000000\n", "812 Red Mars (Mars Trilogy, #1) ... 49.000000\n", "813 Mastiff (Beka Cooper, #3) ... 41.000000\n", "814 Red: The Heroic Rescue (The Circle, #2) ... 45.000000\n", "815 Eon (The Way, #1) ... 38.000000\n", "816 Erak's Ransom (Ranger's Apprentice, #7) ... 46.000000\n", "817 Nemesis Games (The Expanse, #5) ... 41.000000\n", "818 Surface Detail (Culture #9) ... 44.000000\n", "819 The Illustrated Man ... 50.000000\n", "820 Harry Potter and the Sorcerer's Stone (Harry P... ... 54.000000\n", "821 Hunted (The Iron Druid Chronicles, #6) ... 37.000000\n", "822 Timeline ... 46.000000\n", "823 The Rivers of Zadaa (Pendragon, #6) ... 42.000000\n", "824 White: The Great Pursuit (The Circle, #3) ... 45.000000\n", "825 The Fold ... 30.000000\n", "826 Practical Demonkeeping (Pine Cove, #1) ... 41.000000\n", "827 The Reality Bug (Pendragon, #4) ... 37.000000\n", "828 Flowers for Algernon ... 52.000000\n", "829 The Never War (Pendragon, #3) ... 42.000000\n", "830 Daughter of the Forest (Sevenwaters, #1) ... 48.000000\n", "831 The Merchant of Death (Pendragon, #1) ... 43.000000\n", "832 The Lost Stories (Ranger's Apprentice, #11) ... 43.000000\n", "833 3001: The Final Odyssey (Space Odyssey, #4) ... 46.000000\n", "834 The Exiled Queen (Seven Realms, #2) ... 46.000000\n", "835 Anathem ... 43.000000\n", "836 The Android's Dream ... 41.000000\n", "837 The Last Hero (Discworld, #27; Rincewind #7) ... 45.000000\n", "838 Tricked (The Iron Druid Chronicles, #4) ... 36.000000\n", "839 First Among Sequels (Thursday Next, #5) ... 46.000000\n", "840 Ubik ... 37.000000\n", "841 The Crimson Crown (Seven Realms, #4) ... 44.000000\n", "842 Gregor and the Code of Claw (Underland Chronic... ... 40.000000\n", "843 The Faceless Ones (Skulduggery Pleasant, #3) ... 46.000000\n", "844 The King of Attolia (The Queen's Thief, #3) ... 43.000000\n", "845 Finnikin of the Rock (Lumatere Chronicles, #1) ... 41.000000\n", "846 Shards of Honour (Vorkosigan Saga, #1) ... 39.000000\n", "847 Monster Hunter Vendetta (Monster Hunter Intern... ... 32.000000\n", "848 2061: Odyssey Three (Space Odyssey, #3) ... 45.000000\n", "849 Seeds of Rebellion (Beyonders, #2) ... 42.000000\n", "850 The Power of Six (Lorien Legacies, #2) ... 44.000000\n", "851 The Handmaid's Tale ... 48.000000\n", "852 The Silver Chair (Chronicles of Narnia, #4) ... 52.000000\n", "853 The Quillan Games (Pendragon, #7) ... 41.000000\n", "854 Flyte (Septimus Heap, #2) ... 44.000000\n", "855 Hexed (The Iron Druid Chronicles, #2) ... 40.000000\n", "856 Harry Potter Boxset (Harry Potter, #1-7) ... 48.000000\n", "857 Artemis Fowl (Artemis Fowl, #1) ... 44.000000\n", "858 The Sea of Trolls (Sea of Trolls, #1) ... 41.000000\n", "859 Secrets of the Dragon Sanctuary (Fablehaven, #4) ... 44.000000\n", "860 The Atlantis Complex (Artemis Fowl, #7) ... 41.000000\n", "861 The Sword in the Stone (The Once and Future Ki... ... 50.000000\n", "862 Breakfast of Champions ... 50.000000\n", "863 Bloodhound (Beka Cooper, #2) ... 44.000000\n", "864 Searching for Dragons (Enchanted Forest Chroni... ... 42.000000\n", "865 Johannes Cabal the Necromancer (Johannes Cabal... ... 40.000000\n", "866 Cloud Atlas ... 49.000000\n", "867 Grip of the Shadow Plague (Fablehaven, #3) ... 42.000000\n", "868 The Big Over Easy (Nursery Crime, #1) ... 45.000000\n", "869 Hyperion (Hyperion Cantos, #1) ... 49.000000\n", "870 Harry Potter and the Prisoner of Azkaban (Harr... ... 53.000000\n", "871 The Warrior Heir (The Heir Chronicles, #1) ... 41.000000\n", "872 Eon: Dragoneye Reborn (Eon, #1) ... 46.000000\n", "873 Outlander (Outlander, #1) ... 50.000000\n", "874 Monster Hunter International (Monster Hunter I... ... 36.000000\n", "875 Alice in Wonderland ... 52.000000\n", "876 The Opal Deception (Artemis Fowl, #4) ... 43.000000\n", "877 Seveneves ... 40.000000\n", "878 Radiance (Wraith Kings, #1) ... 37.000000\n", "879 Look to Windward (Culture, #7) ... 42.000000\n", "880 The Algebraist ... 39.000000\n", "881 The Long War (The Long Earth, #2) ... 44.000000\n", "882 The Eyes of the Dragon ... 51.000000\n", "883 The Ring of Solomon (Bartimaeus, #0.5) ... 40.000000\n", "884 Behemoth (Leviathan, #2) ... 46.000000\n", "885 The Difference Engine ... 41.000000\n", "886 The Dark Forest (Remembrance of Earth’s Past... ... 40.000000\n", "887 Woken Furies (Takeshi Kovacs, #3) ... 33.000000\n", "888 Something Rotten (Thursday Next, #4) ... 41.000000\n", "889 Clariel (Abhorsen, #4) ... 40.000000\n", "890 Mortal Engines (The Hungry City Chronicles, #1) ... 38.000000\n", "891 All the Birds in the Sky ... 39.000000\n", "892 Mariel of Redwall (Redwall, #4) ... 43.000000\n", "893 Breaking Dawn (Twilight, #4) ... 41.000000\n", "894 Chasing the Prophecy (Beyonders, #3) ... 41.000000\n", "895 Hammered (The Iron Druid Chronicles, #3) ... 38.000000\n", "896 Lucifer's Hammer ... 44.000000\n", "897 Magyk (Septimus Heap, #1) ... 45.000000\n", "898 Uprooted ... 41.000000\n", "899 Harry Potter and the Half-Blood Prince (Harry ... ... 53.000000\n", "900 The Bone Season (The Bone Season, #1) ... 44.000000\n", "901 Sleeping Giants (Themis Files, #1) ... 39.000000\n", "902 Artemis Fowl Boxed Set, Bks 1-5 (Artemis Fowl,... ... 26.000000\n", "903 Broken Angels (Takeshi Kovacs, #2) ... 38.000000\n", "904 Old Man's War (Old Man's War, #1) ... 45.000000\n", "905 The Gray Wolf Throne (Seven Realms, #3) ... 44.000000\n", "906 Fire Study (Study, #3) ... 47.000000\n", "907 Altered Carbon (Takeshi Kovacs, #1) ... 41.000000\n", "908 Night of the Soul Stealer (The Last Apprentice... ... 41.000000\n", "909 The Paper Magician (The Paper Magician Trilogy... ... 38.000000\n", "910 Raven Rise (Pendragon, #9) ... 41.000000\n", "911 The Glass Magician (The Paper Magician Trilogy... ... 37.000000\n", "912 The Human Division (Old Man's War, #5) ... 39.000000\n", "913 Rise of the Evening Star (Fablehaven, #2) ... 42.000000\n", "914 Physik (Septimus Heap, #3) ... 42.000000\n", "915 The Diamond Age: or, A Young Lady's Illustrate... ... 43.000000\n", "916 Lock In (Lock In, #1) ... 40.000000\n", "917 Roadside Picnic ... 35.000000\n", "918 Hounded (The Iron Druid Chronicles, #1) ... 38.000000\n", "919 The Icebound Land (Ranger's Apprentice, #3) ... 44.000000\n", "920 The Book of Life (All Souls Trilogy, #3) ... 42.000000\n", "921 The Last Colony (Old Man's War #3) ... 42.000000\n", "922 The Queen of Attolia (The Queen's Thief, #2) ... 42.000000\n", "923 Redemption Ark ... 39.000000\n", "924 Alif the Unseen ... 40.000000\n", "925 The Moon is a Harsh Mistress ... 45.000000\n", "926 Close Encounters Of The Third Kind ... 29.000000\n", "927 Timequake ... 45.000000\n", "928 Keys to the Demon Prison (Fablehaven, #5) ... 43.000000\n", "929 The Fiery Cross (Outlander, #5) ... 49.000000\n", "930 A Gathering of Shadows (Shades of Magic, #2) ... 44.000000\n", "931 The Pilgrims of Rayne (Pendragon, #8) ... 42.000000\n", "932 Excession (Culture, #5) ... 43.000000\n", "933 Lines of Departure (Frontlines, #2) ... 35.000000\n", "934 Harry Potter and the Deathly Hallows (Harry Po... ... 52.000000\n", "935 At the Mountains of Madness ... 43.000000\n", "936 The Battle for Skandia (Ranger's Apprentice, #4) ... 43.000000\n", "937 Zodiac ... 24.000000\n", "938 Zodiac ... 24.000000\n", "939 Blue Noon (Midnighters, #3) ... 33.000000\n", "940 Lexicon ... 43.000000\n", "941 We ... 46.000000\n", "942 Vicious (Villains, #1) ... 44.000000\n", "943 The Long Patrol (Redwall, #10) ... 43.000000\n", "944 Bitterblue (Graceling Realm, #3) ... 42.000000\n", "945 Dawn (Xenogenesis, #1) ... 39.000000\n", "946 Quicksilver (The Baroque Cycle, #1) ... 45.000000\n", "947 The Demon King (Seven Realms, #1) ... 46.000000\n", "948 Horus Rising ... 36.000000\n", "949 Guards! Guards!: The Play ... 28.000000\n", "950 Agents of Light and Darkness (Nightside, #2) ... 37.000000\n", "951 Trapped (The Iron Druid Chronicles, #5) ... 37.000000\n", "952 Magic Steps (The Circle Opens, #1) ... 41.000000\n", "953 Charlie Bone and the Hidden King (The Children... ... 40.000000\n", "954 Timebound (The Chronos Files, #1) ... 35.000000\n", "955 On Basilisk Station (Honor Harrington, #1) ... 40.000000\n", "956 Saphirblau (Edelstein-Trilogie, #2) ... 43.000000\n", "957 Outcast of Redwall (Redwall, #8) ... 42.000000\n", "958 The History of the Hobbit, Part One: Mr. Baggins ... 31.000000\n", "959 The Wretched of Muirwood (Legends of Muirwood,... ... 36.000000\n", "960 The Sorceress (The Secrets of the Immortal Nic... ... 41.000000\n", "961 Zero History (Blue Ant, #3) ... 37.000000\n", "962 Wuthering Heights ... 57.000000\n", "963 The Arctic Incident (Artemis Fowl, #2) ... 43.000000\n", "964 The Dark Tower (The Dark Tower, #7) ... 49.000000\n", "965 First Test (Protector of the Small, #1) ... 39.000000\n", "966 The Vampire Lestat (The Vampire Chronicles, #2) ... 50.000000\n", "967 Golden Son (Red Rising, #2) ... 50.000000\n", "968 The Ghost Brigades (Old Man's War, #2) ... 43.000000\n", "969 Jennifer Government ... 44.000000\n", "970 The Man in the High Castle ... 46.000000\n", "971 Alice's Adventures in Wonderland & Through the... ... 54.000000\n", "972 Harry Potter and the Order of the Phoenix (Har... ... 41.000000\n", "973 Twenty Thousand Leagues Under the Sea ... 49.000000\n", "974 Fuzzy Nation ... 41.000000\n", "975 The Witching Hour (Lives of the Mayfair Witche... ... 46.000000\n", "976 The Legend of Luke (Redwall, #12) ... 36.000000\n", "977 Authority (Southern Reach, #2) ... 39.000000\n", "978 Skulduggery Pleasant (Skulduggery Pleasant, #1) ... 42.000000\n", "979 The Fall of Five (Lorien Legacies, #4) ... 42.000000\n", "980 The Past Through Tomorrow (Future History, #1-21) ... 33.000000\n", "981 The Lost Colony (Artemis Fowl, #5) ... 41.000000\n", "982 The Complete Robot (Robot #0.3) ... 40.000000\n", "983 Harry Potter Collection (Harry Potter, #1-6) ... 42.000000\n", "984 Trigger Warning: Short Fictions and Disturbances ... 43.000000\n", "985 Scent of Magic (Healer, #2) ... 47.000000\n", "986 The Prefect (Prefect Dreyfus Emergency, #1) ... 35.000000\n", "987 Red Queen (Red Queen, #1) ... 46.000000\n", "988 Harry Potter Boxed Set, Books 1-5 (Harry Potte... ... 39.000000\n", "989 Armada ... 42.000000\n", "990 The Alchemyst (The Secrets of the Immortal Nic... ... 45.000000\n", "991 A Canticle for Leibowitz ... 44.000000\n", "992 The Confusion (The Baroque Cycle, #2) ... 39.000000\n", "993 Sandman Slim (Sandman Slim, #1) ... 38.000000\n", "994 The Secret Hour (Midnighters, #1) ... 35.000000\n", "995 An Ember in the Ashes (An Ember in the Ashes, #1) ... 44.000000\n", "996 The Second Ship (The Rho Agenda, #1) ... 34.000000\n", "997 The Golem and the Jinni (The Golem and the Jin... ... 43.000000\n", "998 The Book of Lost Things ... 49.000000\n", "999 Terms of Enlistment (Frontlines #1) ... 33.000000\n", "1000 Staked (The Iron Druid Chronicles, #8) ... 31.000000\n", "1001 The Ruins of Gorlan (Ranger's Apprentice, #1) ... 43.000000\n", "1002 Embassytown ... 40.000000\n", "1003 A Discovery of Witches (All Souls Trilogy, #1) ... 44.000000\n", "1004 Sapphique (Incarceron, #2) ... 42.000000\n", "1005 Falling Kingdoms (Falling Kingdoms, #1) ... 40.000000\n", "1006 Leviathan (Leviathan, #1) ... 46.000000\n", "1007 Touching Darkness (Midnighters, #2) ... 35.000000\n", "1008 I Am Legend and Other Stories ... 45.000000\n", "1009 Animal Farm ... 51.000000\n", "1010 The Obelisk Gate (The Broken Earth, #2) ... 37.000000\n", "1011 InterWorld (InterWorld, #1) ... 46.000000\n", "1012 City of Masks (Stravaganza, #1) ... 42.000000\n", "1013 Aurora ... 37.000000\n", "1014 Oryx and Crake (MaddAddam, #1) ... 43.000000\n", "1015 The Water Knife ... 35.000000\n", "1016 Hollow City (Miss Peregrine’s Peculiar Child... ... 45.000000\n", "1017 The Revenge of Seven (Lorien Legacies, #5) ... 39.000000\n", "1018 The Eyre Affair (Thursday Next, #1) ... 47.000000\n", "1019 Out of Oz (The Wicked Years, #4) ... 45.000000\n", "1020 Syren (Septimus Heap, #5) ... 43.000000\n", "1021 Smaragdgrün (Edelstein-Trilogie, #3) ... 42.000000\n", "1022 Player Piano ... 45.000000\n", "1023 The Enchantress (The Secrets of the Immortal N... ... 44.000000\n", "1024 Acceptance (Southern Reach, #3) ... 40.000000\n", "1025 Leven Thumps and the Gateway to Foo (Leven Thu... ... 38.000000\n", "1026 The Strange Case of Dr. Jekyll and Mr. Hyde ... 44.000000\n", "1027 Ancillary Mercy (Imperial Radch #3) ... 36.000000\n", "1028 Shadowland (The Mediator, #1) ... 45.000000\n", "1029 Dealing with Dragons (Enchanted Forest Chronic... ... 41.000000\n", "1030 Absolution Gap ... 40.000000\n", "1031 Earth Unaware (The First Formic War, #1) ... 41.000000\n", "1032 Watership Down (Watership Down, #1) ... 53.000000\n", "1033 The Thief (The Queen's Thief, #1) ... 40.000000\n", "1034 City of Glass (The Mortal Instruments, #3) ... 44.000000\n", "1035 Fragile Things: Short Fictions and Wonders ... 45.000000\n", "1036 Reamde ... 41.000000\n", "1037 A Wrinkle in Time (A Wrinkle in Time Quintet, #1) ... 45.000000\n", "1038 Firefight (The Reckoners, #2) ... 42.000000\n", "1039 Lord of the Flies ... 53.000000\n", "1040 I Am Number Four (Lorien Legacies, #1) ... 44.000000\n", "1041 Pride and Prejudice ... 57.000000\n", "1042 Perfect Shadow (Night Angel, #0.5) ... 32.000000\n", "1043 Agent to the Stars ... 37.000000\n", "1044 Parable of the Sower (Earthseed, #1) ... 40.000000\n", "1045 New Moon (Twilight, #2) ... 46.000000\n", "1046 Dark Days (Skulduggery Pleasant, #4) ... 43.000000\n", "1047 Touch of Power (Healer, #1) ... 40.000000\n", "1048 Gregor and the Marks of Secret (Underland Chro... ... 40.000000\n", "1049 City of Ashes (The Mortal Instruments, #2) ... 47.000000\n", "1050 The Mysterious Island (Extraordinary Voyages, ... ... 43.000000\n", "1051 Spook Country (Blue Ant, #2) ... 41.000000\n", "1052 Un Lun Dun ... 39.000000\n", "1053 Alcatraz Versus the Evil Librarians (Alcatraz,... ... 40.000000\n", "1054 God Bless You, Mr. Rosewater ... 46.000000\n", "1055 A War of Gifts (Ender's Saga, #1.1) ... 43.000000\n", "1056 The Outcasts (Brotherband Chronicles, #1) ... 39.000000\n", "1057 Rise of the Elgen (Michael Vey, #2) ... 43.000000\n", "1058 The Forever War (The Forever War, #1) ... 40.000000\n", "1059 The Royal Ranger (Ranger's Apprentice, #12) ... 41.000000\n", "1060 Foundation's Edge (Foundation #4) ... 42.000000\n", "1061 A Lion Among Men (The Wicked Years, #3) ... 45.000000\n", "1062 Animal Farm / 1984 ... 49.000000\n", "1063 Shift (Silo, #2) ... 45.000000\n", "1064 Marlfox (Redwall, #11) ... 41.000000\n", "1065 The Left Hand of Darkness ... 44.000000\n", "1066 The Queen of the Damned (The Vampire Chronicle... ... 43.000000\n", "1067 Charmed Life (Chrestomanci, #1) ... 42.000000\n", "1068 Zoe's Tale (Old Man's War, #4) ... 42.000000\n", "1069 Deerskin ... 46.000000\n", "1070 Queste (Septimus Heap, #4) ... 42.000000\n", "1071 Eona: The Last Dragoneye (Eon, #2) ... 47.000000\n", "1072 Babylon's Ashes (The Expanse, #6) ... 36.000000\n", "1073 The Magician (The Secrets of the Immortal Nich... ... 41.000000\n", "1074 Alien ... 42.000000\n", "1075 Micro ... 42.000000\n", "1076 The Bird and the Sword (The Bird and the Sword... ... 37.000000\n", "1077 Voyager (Outlander, #3) ... 48.000000\n", "1078 Don't Panic: The Official Hitchhiker's Guide t... ... 31.000000\n", "1079 Shades of Grey ... 48.000000\n", "1080 Curse of the Bane (The Last Apprentice / Wards... ... 41.000000\n", "1081 Midnight Riot (Peter Grant, #1) ... 33.000000\n", "1082 A Christmas Carol ... 46.000000\n", "1083 Fablehaven (Fablehaven, #1) ... 41.000000\n", "1084 The Humans ... 41.000000\n", "1085 Lord of Light ... 43.000000\n", "1086 The Queen's Poisoner (Kingfountain, #1) ... 33.000000\n", "1087 The Virgin Suicides ... 52.000000\n", "1088 Heir of Fire (Throne of Glass, #3) ... 45.000000\n", "1089 Interesting Times: The Play ... 38.000000\n", "1090 Crown of Midnight (Throne of Glass, #2) ... 45.000000\n", "1091 Wolves of the Calla (The Dark Tower, #5) ... 46.000000\n", "1092 Throne of Glass (Throne of Glass, #1) ... 43.000000\n", "1093 House of Suns ... 37.000000\n", "1094 Broken Homes (Peter Grant, #4) ... 36.000000\n", "1095 Dragonfly in Amber (Outlander, #2) ... 48.000000\n", "1096 Darkest Hour (The Mediator, #4) ... 42.000000\n", "1097 Eclipse (Twilight, #3) ... 45.000000\n", "1098 Hawksong (The Kiesha'ra, #1) ... 39.000000\n", "1099 Twilight (Twilight, #1) ... 44.000000\n", "1100 Ninth Key (The Mediator, #2) ... 43.000000\n", "1101 The Last Guardian (Artemis Fowl, #8) ... 38.000000\n", "1102 Ruby Red (Precious Stone Trilogy, #1) ... 43.000000\n", "1103 Dracula ... 52.000000\n", "1104 Gregor and the Prophecy of Bane (Underland Chr... ... 41.000000\n", "1105 Rendezvous with Rama (Rama, #1) ... 49.000000\n", "1106 Mockingjay (The Hunger Games, #3) ... 47.000000\n", "1107 The Strange Case of Dr. Jekyll and Mr. Hyde an... ... 43.000000\n", "1108 Field of Dishonor (Honor Harrington, #4) ... 38.000000\n", "1109 Glass Sword (Red Queen, #2) ... 43.000000\n", "1110 Emma ... 52.000000\n", "1111 City of Fallen Angels (The Mortal Instruments,... ... 44.000000\n", "1112 The Winter King (The Warlord Chronicles, #1) ... 43.000000\n", "1113 Sense and Sensibility ... 48.000000\n", "1114 Calamity (The Reckoners, #3) ... 41.000000\n", "1115 City of Bones (The Mortal Instruments, #1) ... 46.000000\n", "1116 Truthwitch (The Witchlands, #1) ... 36.000000\n", "1117 The Bellmaker (Redwall, #7) ... 41.000000\n", "1118 Airborn (Matt Cruse, #1) ... 36.000000\n", "1119 The Invaders (Brotherband Chronicles, #2) ... 39.000000\n", "1120 The High King (The Chronicles of Prydain #5) ... 49.000000\n", "1121 Gulliver's Travels ... 47.000000\n", "1122 Annihilation (Southern Reach, #1) ... 38.000000\n", "1123 Goliath (Leviathan, #3) ... 43.000000\n", "1124 The Devil You Know (Felix Castor, #1) ... 36.000000\n", "1125 The Forge of God (Forge of God, #1) ... 36.000000\n", "1126 The Necromancer (The Secrets of the Immortal ... ... 39.000000\n", "1127 Side Jobs: Stories from the Dresden Files (The... ... 34.000000\n", "1128 Seeing Redd (The Looking Glass Wars, #2) ... 43.000000\n", "1129 Twilight (The Mediator, #6) ... 42.000000\n", "1130 The Dispossessed ... 45.000000\n", "1131 The Picture of Dorian Gray ... 51.000000\n", "1132 The Assassin's Blade (Throne of Glass, #0.1-0.5) ... 44.000000\n", "1133 Library of Souls (Miss Peregrine's Peculiar Ch... ... 44.000000\n", "1134 Inkheart (Inkworld, #1) ... 49.000000\n", "1135 Whispers Under Ground (Peter Grant, #3) ... 38.000000\n", "1136 The Shining (The Shining #1) ... 49.000000\n", "1137 Gregor and the Curse of the Warmbloods (Underl... ... 41.000000\n", "1138 Catching Fire (The Hunger Games, #2) ... 44.000000\n", "1139 Pushing Ice ... 38.000000\n", "1140 Drums of Autumn (Outlander, #4) ... 48.000000\n", "1141 Ancillary Sword (Imperial Radch, #2) ... 42.000000\n", "1142 The First Fifteen Lives of Harry August ... 42.000000\n", "1143 11/22/63 ... 47.000000\n", "1144 Darke (Septimus Heap, #6) ... 41.000000\n", "1145 Lost ... 41.000000\n", "1146 Miss Peregrine’s Home for Peculiar Children ... ... 44.000000\n", "1147 The Wind Through the Keyhole (The Dark Tower, ... ... 48.000000\n", "1148 Foxglove Summer (Peter Grant, #5) ... 37.000000\n", "1149 Black: The Birth of Evil (The Circle, #1) ... 44.000000\n", "1150 The Magic Thief (Magic Thief, #1) ... 37.000000\n", "1151 River Secrets (The Books of Bayern, #3) ... 38.000000\n", "1152 Pandora (New Tales of the Vampires, #1) ... 42.000000\n", "1153 The 13½ Lives of Captain Bluebear (Zamonia, #1) ... 46.000000\n", "1154 The Master Magician (The Paper Magician Trilog... ... 38.000000\n", "1155 The Tale of the Body Thief (The Vampire Chroni... ... 41.000000\n", "1156 Atonement ... 49.000000\n", "1157 The Supernaturalist ... 39.000000\n", "1158 Kindred ... 40.000000\n", "1159 Specials (Uglies, #3) ... 45.000000\n", "1160 Moon Over Soho (Peter Grant, #2) ... 36.000000\n", "1161 An Echo in the Bone (Outlander, #7) ... 47.000000\n", "1162 Ever After (The Hollows, #11) ... 37.000000\n", "1163 Flag in Exile (Honor Harrington, #5) ... 41.000000\n", "1164 The Honor of the Queen (Honor Harrington, #2) ... 39.000000\n", "1165 The Witch With No Name (The Hollows, #13) ... 34.000000\n", "1166 Dawn of the Dreadfuls (Pride and Prejudice and... ... 42.000000\n", "1167 Heir to the Empire (Star Wars: The Thrawn Tril... ... 53.000000\n", "1168 Prey ... 42.000000\n", "1169 Soon I Will Be Invincible ... 43.000000\n", "1170 The Crown of Embers (Fire and Thorns, #2) ... 40.000000\n", "1171 Quidditch Through the Ages ... 45.000000\n", "1172 Wool Omnibus (Silo, #1) ... 47.000000\n", "1173 Dead Until Dark (Sookie Stackhouse, #1) ... 41.000000\n", "1174 The Fate of Ten (Lorien Legacies, #6) ... 36.000000\n", "1175 The Illuminatus! Trilogy ... 34.000000\n", "1176 Underground Airlines ... 30.000000\n", "1177 Pearls of Lutra (Redwall, #9) ... 40.000000\n", "1178 Harry Potter and the Order of the Phoenix (Har... ... 39.000000\n", "1179 Skin Deep (Legion, #2) ... 37.000000\n", "1180 Song of Susannah (The Dark Tower, #6) ... 43.000000\n", "1181 Black Magic Sanction (The Hollows, #8) ... 38.000000\n", "1182 The Last Werewolf (The Last Werewolf, #1) ... 41.000000\n", "1183 Stand on Zanzibar ... 41.000000\n", "1184 Sand Omnibus (Sand, #1-5) ... 44.000000\n", "1185 Shadow and Bone (Shadow and Bone, #1) ... 42.000000\n", "1186 The Time Traveler's Wife ... 46.000000\n", "1187 Lost Horizon ... 44.000000\n", "1188 Morning Star (Red Rising, #3) ... 43.000000\n", "1189 The Trial ... 44.000000\n", "1190 The Three-Body Problem (Remembrance of Earthâ€... ... 40.000000\n", "1191 Dead Witch Walking (The Hollows, #1) ... 38.000000\n", "1192 The Atlantis World (The Origin Mystery, #3) ... 36.000000\n", "1193 Paladin of Souls (World of the Five Gods, #2) ... 47.000000\n", "1194 Froi of the Exiles (Lumatere Chronicles, #2) ... 38.000000\n", "1195 At the Mountains of Madness and Other Tales of... ... 37.000000\n", "1196 Infected (Infected, #1) ... 36.000000\n", "1197 The Great and Secret Show (Book of the Art #1) ... 42.000000\n", "1198 Illuminae (The Illuminae Files, #1) ... 40.000000\n", "1199 Dust (Silo, #3) ... 42.000000\n", "1200 Aloha from Hell (Sandman Slim, #3) ... 35.000000\n", "1201 Wild Seed (Patternmaster, #1) ... 36.000000\n", "1202 Accelerando (Singularity) ... 33.000000\n", "1203 The Children of Men ... 43.000000\n", "1204 Slapstick, or Lonesome No More! ... 46.000000\n", "1205 All You Need Is Kill ... 41.000000\n", "1206 The Hunger Games Trilogy Boxset (The Hunger Ga... ... 45.000000\n", "1207 The Battle of the Labyrinth (Percy Jackson and... ... 47.000000\n", "1208 Beautiful Chaos (Caster Chronicles, #3) ... 41.000000\n", "1209 Saving the World and Other Extreme Sports (Max... ... 43.000000\n", "1210 Neuromancer ... 44.000000\n", "1211 The Count of Monte Cristo ... 48.000000\n", "1212 Definitely Dead (Sookie Stackhouse, #6) ... 39.000000\n", "1213 Torn (Trylle, #2) ... 40.000000\n", "1214 White Cat (Curse Workers, #1) ... 40.000000\n", "1215 Rogues ... 44.000000\n", "1216 Switched (Trylle, #1) ... 39.000000\n", "1217 The Monstrumologist (The Monstrumologist, #1) ... 41.000000\n", "1218 The Bitter Kingdom (Fire and Thorns, #3) ... 34.000000\n", "1219 Snow Like Ashes (Snow Like Ashes, #1) ... 41.000000\n", "1220 A Better World (Brilliance Saga, #2) ... 34.000000\n", "1221 Half Way Home ... 33.000000\n", "1222 Evil Star (The Gatekeepers, #2) ... 41.000000\n", "1223 School's Out—Forever (Maximum Ride, #2) ... 44.000000\n", "1224 The Short Victorious War (Honor Harrington, #3) ... 39.000000\n", "1225 Mrs. Dalloway ... 45.000000\n", "1226 The Fourth Bear (Nursery Crime, #2) ... 41.000000\n", "1227 Ascend (Trylle, #3) ... 40.000000\n", "1228 Siege and Storm (Shadow and Bone, #2) ... 43.000000\n", "1229 Six's Legacy (Lorien Legacies: The Lost Files,... ... 33.000000\n", "1230 Grendel ... 43.000000\n", "1231 Fantastic Beasts and Where to Find Them ... 42.000000\n", "1232 Blindsight (Firefall, #1) ... 39.000000\n", "1233 Inkdeath (Inkworld, #3) ... 46.000000\n", "1234 A Great and Terrible Beauty (Gemma Doyle, #1) ... 44.000000\n", "1235 The Bone Clocks ... 42.000000\n", "1236 The Ladies of Grace Adieu and Other Stories ... 37.000000\n", "1237 Daughter of Smoke & Bone (Daughter of Smoke & ... ... 42.000000\n", "1238 Charlie Bone and the Invisible Boy (The Childr... ... 38.000000\n", "1239 The Line (Witching Savannah, #1) ... 31.000000\n", "1240 Oliver Twist ... 50.000000\n", "1241 Gregor the Overlander (Underland Chronicles, #1) ... 38.000000\n", "1242 One Flew Over the Cuckoo's Nest ... 25.500000\n", "1243 One Flew Over the Cuckoo's Nest ... 25.500000\n", "1244 Dragon Rider (Dragon Rider, #1) ... 43.000000\n", "1245 The Undead Pool (The Hollows, #12) ... 34.000000\n", "1246 Congo ... 41.000000\n", "1247 The Night Circus ... 47.000000\n", "1248 Peeps (Peeps, #1) ... 34.000000\n", "1249 Halt's Peril (Ranger's Apprentice, #9) ... 39.000000\n", "1250 Revenge of the Witch (The Last Apprentice / Wa... ... 38.000000\n", "1251 The Mortal Instruments Boxed Set: City of Bone... ... 37.000000\n", "1252 Shadows in Flight (Ender's Shadow, #5) ... 39.000000\n", "1253 Born of Night (The League, #1) ... 41.000000\n", "1254 The False Prince (The Ascendance Trilogy #1) ... 38.000000\n", "1255 The Titan's Curse (Percy Jackson and the Olymp... ... 47.000000\n", "1256 Inkspell (Inkworld, #2) ... 47.000000\n", "1257 Charlie Bone and the Time Twister (The Childre... ... 37.000000\n", "1258 Franny and Zooey ... 45.000000\n", "1259 World War Z: An Oral History of the Zombie War ... 44.000000\n", "1260 The Hunger Games (The Hunger Games, #1) ... 44.000000\n", "1261 The Stand ... 54.000000\n", "1262 Legion (Legion, #1) ... 37.000000\n", "1263 The Buried Giant ... 40.000000\n", "1264 Queen of Shadows (Throne of Glass, #4) ... 42.000000\n", "1265 Abraham Lincoln: Vampire Hunter ... 42.000000\n", "1266 Haunted (The Mediator, #5) ... 40.000000\n", "1267 Rebecca ... 48.000000\n", "1268 Reunion (The Mediator, #3) ... 40.000000\n", "1269 Enna Burning (The Books of Bayern, #2) ... 43.000000\n", "1270 Kill the Dead (Sandman Slim, #2) ... 36.000000\n", "1271 Fledgling ... 38.000000\n", "1272 A Connecticut Yankee in King Arthur's Court ... 44.000000\n", "1273 Stolen (Women of the Otherworld, #2) ... 41.000000\n", "1274 The Warlock (The Secrets of the Immortal Nicho... ... 42.000000\n", "1275 The 5th Wave (The 5th Wave, #1) ... 47.000000\n", "1276 To Your Scattered Bodies Go (Riverworld, #1) ... 43.000000\n", "1277 Stolen Songbird (The Malediction Trilogy, #1) ... 34.000000\n", "1278 Red Glove (Curse Workers, #2) ... 36.000000\n", "1279 The Kiss of Deception (The Remnant Chronicles,... ... 41.000000\n", "1280 14 ... 38.000000\n", "1281 Brave New World Revisited ... 44.000000\n", "1282 Disney after Dark (Kingdom Keepers, #1) ... 41.000000\n", "1283 Living Dead in Dallas (Sookie Stackhouse, #2) ... 40.000000\n", "1284 The Grey King (The Dark Is Rising, #4) ... 45.000000\n", "1285 I Am Legend ... 45.000000\n", "1286 Forest Born (The Books of Bayern, #4) ... 37.000000\n", "1287 Six of Crows (Six of Crows, #1) ... 42.000000\n", "1288 The Last Olympian (Percy Jackson and the Olymp... ... 48.000000\n", "1289 The Outlaw Demon Wails (The Hollows, #6) ... 37.000000\n", "1290 Tithe (Modern Faerie Tales, #1) ... 38.000000\n", "1291 Honor Among Enemies (Honor Harrington, #6) ... 37.000000\n", "1292 Ruin and Rising (Shadow and Bone, #3) ... 41.000000\n", "1293 MaddAddam (MaddAddam, #3) ... 39.000000\n", "1294 Dauntless (The Lost Fleet, #1) ... 38.000000\n", "1295 The Angel Experiment (Maximum Ride, #1) ... 43.000000\n", "1296 Departure ... 33.000000\n", "1297 The Lord of the Rings: Weapons and Warfare ... 33.000000\n", "1298 Every Which Way But Dead (The Hollows, #3) ... 37.000000\n", "1299 King Solomon's Mines (Allan Quatermain, #1) ... 44.000000\n", "1300 Singularity Sky (Eschaton, #1) ... 34.000000\n", "1301 The Mime Order (The Bone Season, #2) ... 41.000000\n", "1302 Boneshaker (The Clockwork Century, #1) ... 38.000000\n", "1303 Haunted (Women of the Otherworld, #5) ... 34.000000\n", "1304 Beacon 23: The Complete Novel (Beacon 23, #1-5) ... 36.000000\n", "1305 A Tale of Two Cities ... 49.000000\n", "1306 A Room with a View ... 45.000000\n", "1307 Around the World in Eighty Days ... 48.000000\n", "1308 Two Ravens and One Crow (The Iron Druid Chroni... ... 35.000000\n", "1309 Airman ... 42.000000\n", "1310 Great Expectations ... 51.000000\n", "1311 Time and Again (Time, #1) ... 46.000000\n", "1312 The Heart Goes Last ... 34.000000\n", "1313 Divergent Series Complete Box Set (Divergent, ... ... 40.000000\n", "1314 Rebel Spring (Falling Kingdoms, #2) ... 40.000000\n", "1315 Soulless (Parasol Protectorate, #1) ... 38.000000\n", "1316 For a Few Demons More (The Hollows, #5) ... 38.000000\n", "1317 Johnny Mnemonic ... 33.000000\n", "1318 Courageous (The Lost Fleet, #3) ... 36.000000\n", "1319 Moby-Dick or, The Whale ... 48.000000\n", "1320 The Sea of Monsters (Percy Jackson and the Oly... ... 46.000000\n", "1321 City of Lost Souls (The Mortal Instruments, #5) ... 46.000000\n", "1322 Changeless (Parasol Protectorate, #2) ... 38.000000\n", "1323 The Princess and the Goblin (Princess Irene a... ... 42.000000\n", "1324 The Lord of the Rings: The Art of The Fellowsh... ... 32.000000\n", "1325 Lasher (Lives of the Mayfair Witches, #2) ... 41.000000\n", "1326 Bitten (Women of the Otherworld, #1) ... 41.000000\n", "1327 A Dirty Job (Grim Reaper, #1) ... 44.000000\n", "1328 The Clan of the Cave Bear (Earth's Children, #1) ... 51.000000\n", "1329 The Book of Strange New Things ... 34.000000\n", "1330 The Sweet Far Thing (Gemma Doyle, #3) ... 41.000000\n", "1331 The Lightning Thief (Percy Jackson and the Oly... ... 44.000000\n", "1332 Hard Magic (Grimnoir Chronicles, #1) ... 32.000000\n", "1333 The Ear, the Eye, and the Arm ... 33.000000\n", "1334 Days of Blood & Starlight (Daughter of Smoke &... ... 42.000000\n", "1335 Virals (Virals, #1) ... 40.000000\n", "1336 Beautiful Darkness (Caster Chronicles, #2) ... 41.000000\n", "1337 David Copperfield ... 50.000000\n", "1338 Catch-22 ... 49.000000\n", "1339 Dragon Slippers (Dragon Slippers, #1) ... 35.000000\n", "1340 Horns ... 43.000000\n", "1341 Coyote Blue ... 36.000000\n", "1342 Incarceron (Incarceron, #1) ... 38.000000\n", "1343 The Knife of Never Letting Go (Chaos Walking, #1) ... 43.000000\n", "1344 The Uglies Trilogy (Uglies, #1-3) ... 36.000000\n", "1345 Attack of the Fiend (The Last Apprentice / War... ... 40.000000\n", "1346 Ender's Game, Volume 1: Battle School (Ender's... ... 37.000000\n", "1347 Into the Land of the Unicorns (Unicorn Chronic... ... 39.000000\n", "1348 Fearless (The Lost Fleet, #2) ... 37.000000\n", "1349 The Bees ... 36.000000\n", "1350 Memnoch the Devil (The Vampire Chronicles, #5) ... 40.000000\n", "1351 To Say Nothing of the Dog (Oxford Time Travel,... ... 48.000000\n", "1352 Charlie Bone and the Beast (The Children of th... ... 38.000000\n", "1353 Metro 2033 (METRO, #1) ... 46.000000\n", "1354 The Stepford Wives ... 40.000000\n", "1355 Pride and Prejudice and Zombies (Pride and Pre... ... 47.000000\n", "1356 The Looking Glass Wars (The Looking Glass Wars... ... 44.000000\n", "1357 The Heart of Betrayal (The Remnant Chronicles,... ... 40.000000\n", "1358 Keep the Aspidistra Flying ... 44.000000\n", "1359 Persuasion ... 52.000000\n", "1360 Secondhand Souls (Grim Reaper, #2) ... 35.000000\n", "1361 The Catcher in the Rye ... 48.000000\n", "1362 The Hero and the Crown (Damar, #2) ... 46.000000\n", "1363 The Godfather ... 46.000000\n", "1364 Coraline ... 41.000000\n", "1365 Island of the Sequined Love Nun ... 39.000000\n", "1366 The Young Elites (The Young Elites, #1) ... 39.000000\n", "1367 Ozma of Oz (Oz, #3) ... 41.000000\n", "1368 The Mark of Athena (The Heroes of Olympus, #3) ... 45.000000\n", "1369 This Savage Song (Monsters of Verity, #1) ... 37.000000\n", "1370 Magonia (Magonia, #1) ... 38.000000\n", "1371 A Fistful of Charms (The Hollows, #4) ... 36.000000\n", "1372 Gathering Darkness (Falling Kingdoms, #3) ... 42.000000\n", "1373 The Throne of Fire (Kane Chronicles, #2) ... 43.000000\n", "1374 Of Mice and Men ... 46.000000\n", "1375 The Great Gatsby ... 50.000000\n", "1376 The Prisoner of Cell 25 (Michael Vey, #1) ... 37.000000\n", "1377 Rebel Angels (Gemma Doyle, #2) ... 42.000000\n", "1378 The Postman ... 40.000000\n", "1379 1Q84 ... 44.000000\n", "1380 Bluebeard ... 46.000000\n", "1381 Winter's Tale ... 41.000000\n", "1382 Heart of Darkness ... 46.000000\n", "1383 Burning Chrome (Sprawl, #0) ... 39.000000\n", "1384 The Twilight Saga (Twilight, #1-4) ... 40.000000\n", "1385 The Hedge Knight (The Hedge Knight Graphic Nov... ... 38.000000\n", "1386 Divergent (Divergent, #1) ... 45.000000\n", "1387 Stories of Your Life and Others ... 42.000000\n", "1388 House of Leaves ... 45.000000\n", "1389 Lady Chatterley's Lover ... 41.000000\n", "1390 Taltos (Lives of the Mayfair Witches, #3) ... 37.000000\n", "1391 Rosemary and Rue (October Daye, #1) ... 35.000000\n", "1392 The Raven Boys (The Raven Cycle, #1) ... 40.000000\n", "1393 The Witch's Daughter (The Witch's Daughter, #1) ... 36.000000\n", "1394 Timeless (Parasol Protectorate, #5) ... 39.000000\n", "1395 CyberStorm ... 33.000000\n", "1396 Alice's Adventures in Wonderland ... 49.000000\n", "1397 Falling Free (Vorkosigan Saga, #4) ... 42.000000\n", "1398 The Vampire Armand (The Vampire Chronicles, #6) ... 38.000000\n", "1399 Midnight for Charlie Bone (The Children of the... ... 35.000000\n", "1400 The Mammoth Hunters (Earth's Children, #3) ... 44.000000\n", "1401 Vanity Fair ... 43.000000\n", "1402 A Living Nightmare (Cirque Du Freak, #1) ... 39.000000\n", "1403 Messenger (The Giver, #3) ... 40.000000\n", "1404 Wool (Wool, #1) ... 42.000000\n", "1405 Welcome to Night Vale ... 42.000000\n", "1406 The Emerald Atlas (The Books of Beginning, #1) ... 35.000000\n", "1407 The Girl with All the Gifts ... 41.000000\n", "1408 2312 ... 35.000000\n", "1409 Dime Store Magic (Women of the Otherworld, #3) ... 37.000000\n", "1410 To Kill a Mockingbird ... 50.000000\n", "1411 The Tales of Beedle the Bard ... 44.000000\n", "1412 A Fire Upon the Deep (Zones of Thought, #1) ... 42.000000\n", "1413 Daemon (Daemon, #1) ... 35.000000\n", "1414 Relentless (The Lost Fleet, #5) ... 33.000000\n", "1415 No Humans Involved (Women of the Otherworld, #7) ... 36.000000\n", "1416 Slade House ... 39.000000\n", "1417 Written in My Own Heart's Blood (Outlander, #8) ... 45.000000\n", "1418 Nexus (Nexus, #1) ... 36.000000\n", "1419 The Atlantis Plague (The Origin Mystery, #2) ... 34.000000\n", "1420 The Girl of Fire and Thorns (Fire and Thorns, #1) ... 35.000000\n", "1421 War and Peace ... 47.000000\n", "1422 Dark Matter ... 35.000000\n", "1423 Fluke: Or, I Know Why the Winged Whale Sings ... 38.000000\n", "1424 Fear and Loathing in Las Vegas ... 43.000000\n", "1425 Excalibur (The Warlord Chronicles, #3) ... 43.000000\n", "1426 A Breath of Snow and Ashes (Outlander, #6) ... 43.000000\n", "1427 You Suck (A Love Story, #2) ... 38.000000\n", "1428 Empire of Storms (Throne of Glass, #5) ... 38.000000\n", "1429 The Maze Runner (Maze Runner, #1) ... 47.000000\n", "1430 Pale Demon (The Hollows, #9) ... 36.000000\n", "1431 Green Mars (Mars Trilogy, #2) ... 46.000000\n", "1432 The Inkheart Trilogy: Inkheart, Inkspell, Inkd... ... 28.000000\n", "1433 Practical Magic ... 42.000000\n", "1434 Brighton Rock ... 40.000000\n", "1435 This Book Is Full of Spiders: Seriously, Dude,... ... 41.000000\n", "1436 Dragon Flight (Dragon Slippers, #2) ... 38.000000\n", "1437 The Abyss ... 32.000000\n", "1438 The Twelve (The Passage, #2) ... 44.000000\n", "1439 Club Dead (Sookie Stackhouse, #3) ... 40.000000\n", "1440 The Sun Also Rises ... 43.000000\n", "1441 In Cold Blood ... 45.000000\n", "1442 Written in Red (The Others, #1) ... 36.000000\n", "1443 The Atlantis Gene (The Origin Mystery, #1) ... 37.000000\n", "1444 Tunnels of Blood (Cirque Du Freak, #3) ... 42.000000\n", "1445 Bloodsucking Fiends (A Love Story, #1) ... 34.000000\n", "1446 The Good, the Bad, and the Undead (The Hollows... ... 35.000000\n", "1447 Bone Crossed (Mercy Thompson, #4) ... 41.000000\n", "1448 Blameless (Parasol Protectorate, #3) ... 38.000000\n", "1449 Kitty Goes to Washington (Kitty Norville, #2) ... 32.000000\n", "1450 Ancillary Justice (Imperial Radch #1) ... 40.000000\n", "1451 The Terminal Man ... 35.000000\n", "1452 The Candy Shop War (The Candy Shop War, #1) ... 37.000000\n", "1453 The Lust Lizard of Melancholy Cove (Pine Cove,... ... 34.000000\n", "1454 Anna Karenina ... 47.000000\n", "1455 Ironside (Modern Faerie Tales, #3) ... 35.000000\n", "1456 Crash ... 35.000000\n", "1457 The Plains of Passage (Earth's Children, #4) ... 48.000000\n", "1458 Station Eleven ... 38.000000\n", "1459 A Kiss of Shadows (Merry Gentry, #1) ... 33.000000\n", "1460 Vittorio, The Vampire (New Tales of the Vampir... ... 37.000000\n", "1461 The Year of the Flood (MaddAddam, #2) ... 41.000000\n", "1462 The Hunchback of Notre-Dame ... 46.000000\n", "1463 Clockwork Angel (The Infernal Devices, #1) ... 47.000000\n", "1464 A Quest of Heroes (The Sorcerer's Ring, #1) ... 34.000000\n", "1465 Cinder (The Lunar Chronicles, #1) ... 43.000000\n", "1466 The Girl Who Circumnavigated Fairyland in a Sh... ... 40.000000\n", "1467 Valiant (Modern Faerie Tales #2) ... 39.000000\n", "1468 Insurgent (Divergent, #2) ... 48.000000\n", "1469 The Returned ... 35.000000\n", "1470 Necronomicon: The Best Weird Tales ... 42.000000\n", "1471 Three Dark Crowns (Three Dark Crowns, #1) ... 37.000000\n", "1472 Curtsies & Conspiracies (Finishing School, #2) ... 33.000000\n", "1473 Monsters of Men (Chaos Walking, #3) ... 42.000000\n", "1474 Hocus Pocus ... 49.000000\n", "1475 Linger (The Wolves of Mercy Falls, #2) ... 36.000000\n", "1476 The Kill Order (Maze Runner, #0.5) ... 44.000000\n", "1477 The Thief of Always ... 37.000000\n", "1478 Harry Potter Schoolbooks Box Set: Two Classic ... ... 36.000000\n", "1479 Defy (Defy, #1) ... 36.000000\n", "1480 The Dream Thieves (The Raven Cycle, #2) ... 39.000000\n", "1481 The Master and Margarita ... 45.000000\n", "1482 Mitosis (The Reckoners, #1.5) ... 35.000000\n", "1483 Gone with the Wind ... 50.000000\n", "1484 The Son of Neptune (The Heroes of Olympus, #2) ... 44.000000\n", "1485 The City of Mirrors (The Passage, #3) ... 38.000000\n", "1486 All Together Dead (Sookie Stackhouse, #7) ... 39.000000\n", "1487 Crime and Punishment ... 45.000000\n", "1488 The Akhenaten Adventure (Children of the Lamp,... ... 36.000000\n", "1489 Iron Kissed (Mercy Thompson, #3) ... 41.000000\n", "1490 Blood and Chocolate ... 38.000000\n", "1491 Clockwork Prince (The Infernal Devices, #2) ... 46.000000\n", "1492 Dreams of Gods & Monsters (Daughter of Smoke &... ... 40.000000\n", "1493 Dark Force Rising ... 50.000000\n", "1494 Everything Is Illuminated ... 44.000000\n", "1495 Bloodfever (Fever, #2) ... 41.000000\n", "1496 Everlost (Skinjacker, #1) ... 42.000000\n", "1497 The Awakening (Darkest Powers, #2) ... 38.000000\n", "1498 The Ask and the Answer (Chaos Walking, #2) ... 41.000000\n", "1499 Harry Potter and the Cursed Child - Parts One ... ... 39.000000\n", "1500 Mortal Coil (Skulduggery Pleasant, #5) ... 43.000000\n", "1501 The Scorpio Races ... 40.000000\n", "1502 Guilty Pleasures (Anita Blake, Vampire Hunter,... ... 37.000000\n", "1503 The Wonderful Wizard of Oz (Oz, #1) ... 44.000000\n", "1504 The End of the Affair ... 42.000000\n", "1505 Bite Me (A Love Story, #3) ... 35.000000\n", "1506 Robopocalypse (Robopocalypse, #1) ... 42.000000\n", "1507 Vampire Chronicles: Interview with the Vampire... ... 36.000000\n", "1508 The Vor Game (Vorkosigan Saga, #6) ... 41.000000\n", "1509 The Mermaid's Sister ... 32.000000\n", "1510 Allegiant (Divergent, #3) ... 44.000000\n", "1511 Time's Arrow ... 38.000000\n", "1512 Uglies (Uglies, #1) ... 46.000000\n", "1513 The Windup Girl ... 40.000000\n", "1514 Northanger Abbey ... 43.000000\n", "1515 Halo: The Fall of Reach ... 44.000000\n", "1516 The Scorch Trials (Maze Runner, #2) ... 43.000000\n", "1517 Mister B. Gone ... 40.000000\n", "1518 A Torch Against the Night (An Ember in the Ash... ... 38.000000\n", "1519 The Metamorphosis, In the Penal Colony, and Ot... ... 28.000000\n", "1520 Shiver (The Wolves of Mercy Falls, #1) ... 39.000000\n", "1521 The Shadow Throne (The Ascendance Trilogy, #3) ... 35.000000\n", "1522 Silver Borne (Mercy Thompson, #5) ... 40.000000\n", "1523 The Third Policeman ... 40.000000\n", "1524 On the Road ... 47.000000\n", "1525 Merrick (The Vampire Chronicles #7) ... 35.000000\n", "1526 The Night Eternal (The Strain Trilogy, #3) ... 38.000000\n", "1527 Scarlet (The Lunar Chronicles, #2) ... 35.000000\n", "1528 Tender Is the Night ... 44.000000\n", "1529 The Vampire's Assistant (Cirque Du Freak, #2) ... 39.000000\n", "1530 Midnight Crossroad (Midnight, Texas, #1) ... 33.000000\n", "1531 Parable of the Talents (Earthseed, #2) ... 38.000000\n", "1532 The Serpent's Shadow (Kane Chronicles, #3) ... 43.000000\n", "1533 Blood Bound (Mercy Thompson, #2) ... 40.000000\n", "1534 Industrial Magic (Women of the Otherworld, #4) ... 35.000000\n", "1535 The Beach ... 47.000000\n", "1536 Dead to the World (Sookie Stackhouse, #4) ... 39.000000\n", "1537 Plague (Gone, #4) ... 39.000000\n", "1538 Raven's Gate (The Gatekeepers, #1) ... 41.000000\n", "1539 The Iron Queen (The Iron Fey, #3) ... 40.000000\n", "1540 Heartless (Parasol Protectorate, #4) ... 38.000000\n", "1541 For Whom the Bell Tolls ... 51.000000\n", "1542 Nation ... 43.000000\n", "1543 Rebel of the Sands (Rebel of the Sands, #1) ... 34.000000\n", "1544 Orlando ... 43.000000\n", "1545 The Fountainhead ... 47.000000\n", "1546 Eaters of the Dead ... 40.000000\n", "1547 Deadline (Newsflesh Trilogy, #2) ... 43.000000\n", "1548 Through the Looking-Glass, and What Alice Foun... ... 35.000000\n", "1549 Mirror Dance (Vorkosigan Saga, #8) ... 39.000000\n", "1550 Robinson Crusoe ... 48.000000\n", "1551 Beautiful Creatures (Caster Chronicles, #1) ... 39.000000\n", "1552 The Runaway King (The Ascendance Trilogy, #2) ... 36.000000\n", "1553 Ethan Frome ... 42.000000\n", "1554 A Certain Slant of Light (Light, #1) ... 39.000000\n", "1555 Little Brother ... 36.000000\n", "1556 From the Earth to the Moon (Extraordinary Voya... ... 36.000000\n", "1557 Influx ... 34.000000\n", "1558 Beautiful Redemption (Caster Chronicles, #4) ... 40.000000\n", "1559 Prince Lestat (The Vampire Chronicles, #11) ... 38.000000\n", "1560 Feed ... 35.000000\n", "1561 Gnomes ... 29.000000\n", "1562 Don Quixote ... 43.000000\n", "1563 Faefever (Fever, #3) ... 40.000000\n", "1564 The Razor's Edge ... 40.000000\n", "1565 Blood And Gold (The Vampire Chronicles, #8) ... 36.000000\n", "1566 Hunger (Gone, #2) ... 41.000000\n", "1567 Angelology (Angelology, #1) ... 42.000000\n", "1568 The Blood of Olympus (The Heroes of Olympus, #5) ... 43.000000\n", "1569 The Iron Trial (Magisterium, #1) ... 41.000000\n", "1570 Pretties (Uglies, #2) ... 43.000000\n", "1571 Fantastic Beasts and Where to Find Them: The O... ... 41.000000\n", "1572 Green: The Beginning and the End (The Circle, #0) ... 39.000000\n", "1573 Ivanhoe ... 47.000000\n", "1574 Bayou Moon (The Edge, #2) ... 34.000000\n", "1575 Charlie Bone and the Shadow (The Children of t... ... 37.000000\n", "1576 North and South ... 47.000000\n", "1577 Grave Mercy (His Fair Assassin, #1) ... 38.000000\n", "1578 The Collector ... 23.500000\n", "1579 The Collector ... 23.500000\n", "1580 Ex-Heroes (Ex-Heroes, #1) ... 37.000000\n", "1581 The Unbearable Lightness of Being ... 43.000000\n", "1582 Next ... 42.000000\n", "1583 These Broken Stars (Starbound, #1) ... 38.000000\n", "1584 Little Women (Little Women, #1) ... 47.000000\n", "1585 Trainspotting ... 43.000000\n", "1586 Narcissus in Chains (Anita Blake, Vampire Hunt... ... 34.000000\n", "1587 Elsewhere ... 40.000000\n", "1588 Brilliance (Brilliance Saga, #1) ... 37.000000\n", "1589 Siddhartha ... 42.000000\n", "1590 The Diviners (The Diviners, #1) ... 37.000000\n", "1591 Murder of Crows (The Others, #2) ... 34.000000\n", "1592 Hard-Boiled Wonderland and the End of the World ... 45.000000\n", "1593 The Gods Themselves ... 44.000000\n", "1594 The Name of the Rose ... 41.000000\n", "1595 Shadow Kiss (Vampire Academy, #3) ... 45.000000\n", "1596 The Wind-Up Bird Chronicle ... 49.000000\n", "1597 The City & the City ... 37.000000\n", "1598 The Dark Hills Divide (The Land of Elyon, #1) ... 40.000000\n", "1599 Ghostwritten ... 46.000000\n", "1600 The Cider House Rules ... 41.000000\n", "1601 Ringworld (Ringworld, #1) ... 41.000000\n", "1602 Freedom™ (Daemon, #2) ... 33.000000\n", "1603 Moon Called (Mercy Thompson, #1) ... 42.000000\n", "1604 Lord of the Shadows (Cirque Du Freak, #11) ... 38.000000\n", "1605 Trials of Death (Cirque Du Freak, #5) ... 38.000000\n", "1606 The Waves ... 40.000000\n", "1607 The Last Question ... 34.000000\n", "1608 Twilight: The Complete Illustrated Movie Compa... ... 33.000000\n", "1609 Gathering Blue (The Giver, #2) ... 39.000000\n", "1610 A Caress of Twilight (Merry Gentry, #2) ... 32.000000\n", "1611 Extras (Uglies, #4) ... 42.000000\n", "1612 White Witch, Black Curse (The Hollows, #7) ... 34.000000\n", "1613 The Raw Shark Texts ... 36.000000\n", "1614 Untamed (House of Night, #4) ... 37.000000\n", "1615 Uncle Tom's Cabin ... 41.000000\n", "1616 Alas, Babylon ... 43.000000\n", "1617 Feed (Newsflesh Trilogy, #1) ... 43.000000\n", "1618 Blue Lily, Lily Blue (The Raven Cycle, #3) ... 40.000000\n", "1619 The Satanic Verses ... 44.000000\n", "1620 The House of the Scorpion (Matteo Alacran, #1) ... 39.000000\n", "1621 The Outsiders ... 44.000000\n", "1622 Blue Mars (Mars Trilogy, #3) ... 42.000000\n", "1623 Island ... 41.000000\n", "1624 Passenger (Passenger, #1) ... 35.000000\n", "1625 The Jungle ... 37.000000\n", "1626 An Ice Cold Grave (Harper Connelly, #3) ... 35.000000\n", "1627 Battle Royale ... 44.000000\n", "1628 Nicholas Nickleby ... 40.000000\n", "1629 The Quiet American ... 38.000000\n", "1630 Waterfall (River of Time, #1) ... 37.000000\n", "1631 Lies (Gone, #3) ... 40.000000\n", "1632 Allies of the Night (Cirque du Freak, #8) ... 38.000000\n", "1633 1Q84 BOOK 1 (1Q84, #1) ... 43.000000\n", "1634 Jane Eyre ... 44.000000\n", "1635 Faeries ... 31.000000\n", "1636 Captive Prince (Captive Prince, #1) ... 35.000000\n", "1637 The Three Musketeers ... 48.000000\n", "1638 Wicked Lovely (Wicked Lovely, #1) ... 33.000000\n", "1639 A Modern Witch (A Modern Witch, #1) ... 28.000000\n", "1640 The Adoration of Jenna Fox (Jenna Fox Chronicl... ... 30.000000\n", "1641 Ink Exchange (Wicked Lovely, #2) ... 37.000000\n", "1642 The Red Pyramid (Kane Chronicles, #1) ... 45.000000\n", "1643 Second Shift: Order (Shift, #2) ... 34.000000\n", "1644 Blackout (Newsflesh Trilogy, #3) ... 41.000000\n", "1645 Under the Dome ... 43.000000\n", "1646 Fear (Gone, #5) ... 37.000000\n", "1647 Kitty and the Silver Bullet (Kitty Norville, #4) ... 30.000000\n", "1648 Spin (Spin, #1) ... 37.000000\n", "1649 Son (The Giver, #4) ... 38.000000\n", "1650 Redshirts ... 37.000000\n", "1651 Charlie Bone and the Castle of Mirrors (The Ch... ... 36.000000\n", "1652 Radiant Shadows (Wicked Lovely, #4) ... 35.000000\n", "1653 The Awakening ... 41.000000\n", "1654 Barrayar (Vorkosigan Saga, #7) ... 41.000000\n", "1655 Einstein's Dreams ... 42.000000\n", "1656 A Tree Grows in Brooklyn ... 48.000000\n", "1657 The Infinite Sea (The 5th Wave, #2) ... 42.000000\n", "1658 Neil Gaiman's Neverwhere ... 40.000000\n", "1659 Night Broken (Mercy Thompson, #8) ... 35.000000\n", "1660 Short Stories from Hogwarts of Heroism, Hardsh... ... 26.000000\n", "1661 Haroun and the Sea of Stories (Khalifa Brother... ... 29.000000\n", "1662 Dark Visions (Dark Visions, #1-3) ... 42.000000\n", "1663 A Tale of Two Cities / Great Expectations ... 44.000000\n", "1664 The Death Cure (Maze Runner, #3) ... 44.000000\n", "1665 Madame Bovary ... 41.000000\n", "1666 A Perfect Blood (The Hollows, #10) ... 35.000000\n", "1667 A Passage to India ... 41.000000\n", "1668 The Eye of Minds (The Mortality Doctrine, #1) ... 41.000000\n", "1669 Percy Jackson and the Olympians (Percy Jackson... ... 38.000000\n", "1670 Les Misérables ... 51.000000\n", "1671 The Rose Society (The Young Elites, #2) ... 37.000000\n", "1672 The Fire Eternal (The Last Dragon Chronicles, #4) ... 33.000000\n", "1673 Fragile Eternity (Wicked Lovely, #3) ... 35.000000\n", "1674 Lady Cottington's Pressed Fairy Book ... 33.000000\n", "1675 Peter Pan ... 50.000000\n", "1676 Among Others ... 39.000000\n", "1677 The House of Hades (The Heroes of Olympus, #4) ... 43.000000\n", "1678 John Dies at the End (John Dies at the End, #1) ... 43.000000\n", "1679 The Darkest Minds (The Darkest Minds, #1) ... 40.000000\n", "1680 Less Than Zero ... 37.000000\n", "1681 The Sword of Summer (Magnus Chase and the Gods... ... 41.000000\n", "1682 Ender in Exile (Ender's Saga, #1.2) ... 39.000000\n", "1683 Heart of Darkness and The Secret Sharer ... 41.000000\n", "1684 The Short Second Life of Bree Tanner: An Eclip... ... 41.000000\n", "1685 Wired (Wired, #1) ... 29.000000\n", "1686 Tuck Everlasting ... 41.000000\n", "1687 The Marvelous Land of Oz (Oz, #2) ... 36.000000\n", "1688 Mansfield Park ... 45.000000\n", "1689 Halo: Ghosts of Onyx ... 37.000000\n", "1690 The Age of Miracles ... 34.000000\n", "1691 The Graveyard Book ... 41.000000\n", "1692 The Fire Within (The Last Dragon Chronicles, #1) ... 37.000000\n", "1693 The Forbidden Game (The Forbidden Game, #1-3) ... 42.000000\n", "1694 Rose Daughter ... 43.000000\n", "1695 The Zombie Survival Guide: Complete Protection... ... 42.000000\n", "1696 All Our Yesterdays ... 36.000000\n", "1697 Crooked Kingdom (Six of Crows, #2) ... 37.000000\n", "1698 It ... 57.000000\n", "1699 The Winner's Curse (The Winner's Trilogy, #1) ... 42.000000\n", "1700 When She Woke ... 35.000000\n", "1701 The Wasp Factory ... 42.000000\n", "1702 The Unwanteds (Unwanteds, #1) ... 38.000000\n", "1703 The Firebird (Slains, #2) ... 36.000000\n", "1704 Sookie Stackhouse 7-copy Boxed Set (Sookie Sta... ... 28.000000\n", "1705 Darkfever (Fever, #1) ... 38.000000\n", "1706 Halo: First Strike ... 39.000000\n", "1707 The Iron Daughter ... 38.000000\n", "1708 My Name Is Memory ... 43.000000\n", "1709 The Call of Cthulhu ... 38.000000\n", "1710 Necroscope (Necroscope, #1) ... 39.000000\n", "1711 Dies the Fire (Emberverse, #1) ... 44.000000\n", "1712 Life As We Knew It (Last Survivors, #1) ... 40.000000\n", "1713 Breakfast at Tiffany's ... 43.000000\n", "1714 Walden ... 41.000000\n", "1715 The House of the Spirits ... 39.000000\n", "1716 Martin Eden ... 40.000000\n", "1717 Perfume: The Story of a Murderer ... 45.000000\n", "1718 Dreamfever (Fever, #4) ... 38.000000\n", "1719 Memoirs of a Geisha ... 47.000000\n", "1720 The Demolished Man ... 35.000000\n", "1721 Blue is for Nightmares (Blue is for Nightmares... ... 35.000000\n", "1722 Dead as a Doornail (Sookie Stackhouse, #5) ... 36.000000\n", "1723 Forever (The Wolves of Mercy Falls, #3) ... 43.000000\n", "1724 The Twilight Saga Complete Collection (Twilig... ... 27.000000\n", "1725 Shadowfever (Fever, #5) ... 40.000000\n", "1726 One Hundred Years of Solitude ... 42.000000\n", "1727 Afterworlds (Afterworlds #1) ... 39.000000\n", "1728 Welcome to the Jungle (The Dresden Files, #0.5) ... 25.000000\n", "1729 Every Day (Every Day, #1) ... 42.000000\n", "1730 The City of Ember (Book of Ember, #1) ... 36.000000\n", "1731 The Cement Garden ... 39.000000\n", "1732 Blood Meridian, or the Evening Redness in the ... ... 46.000000\n", "1733 If on a Winter's Night a Traveler ... 39.000000\n", "1734 Ella Enchanted ... 42.000000\n", "1735 Broken (Women of the Otherworld, #6) ... 36.000000\n", "1736 Carry On ... 39.000000\n", "1737 The Twilight Collection (Twilight, #1-3) ... 33.000000\n", "1738 Midnight Sun (Twilight, #1.5) ... 29.000000\n", "1739 The Final Warning (Maximum Ride, #4) ... 43.000000\n", "1740 Dead and Gone (Sookie Stackhouse, #9) ... 36.000000\n", "1741 Labyrinth (Languedoc, #1) ... 40.000000\n", "1742 Enemy of God (The Warlord Chronicles, #2) ... 43.000000\n", "1743 Wake (Wake, #1) ... 40.000000\n", "1744 Hunting Ground (Alpha & Omega, #2) ... 40.000000\n", "1745 Lolita ... 46.000000\n", "1746 The World According to Garp ... 42.000000\n", "1747 Four: A Divergent Story Collection (Divergent,... ... 39.000000\n", "1748 Dead Ever After (Sookie Stackhouse, #13) ... 34.000000\n", "1749 On the Edge (The Edge, #1) ... 33.000000\n", "1750 Empire of the Sun (Empire of the Sun, #1) ... 40.000000\n", "1751 The Scarlet Letter ... 37.000000\n", "1752 Mistral's Kiss (Merry Gentry, #5) ... 30.000000\n", "1753 Cannery Row ... 44.000000\n", "1754 City of Bones / City of Ashes / City of Glass ... ... 30.000000\n", "1755 From Dead to Worse (Sookie Stackhouse, #8) ... 37.000000\n", "1756 Grave Sight (Harper Connelly, #1) ... 36.000000\n", "1757 Pines (Wayward Pines, #1) ... 35.000000\n", "1758 Wicked: The Grimmerie ... 33.000000\n", "1759 Junky ... 40.000000\n", "1760 Things Not Seen (Things, #1) ... 32.000000\n", "1761 The Iron King (The Iron Fey, #1) ... 31.000000\n", "1762 Z for Zachariah ... 37.000000\n", "1763 Flatland: A Romance of Many Dimensions ... 41.000000\n", "1764 More Than This ... 38.000000\n", "1765 Seduced by Moonlight (Merry Gentry, #3) ... 31.000000\n", "1766 Tess of the D'Urbervilles ... 47.000000\n", "1767 Geek Love ... 46.000000\n", "1768 The Awakening / The Struggle (The Vampire Diar... ... 35.000000\n", "1769 Anthem ... 43.000000\n", "1770 Demon Thief (The Demonata, #2) ... 37.000000\n", "1771 Violin ... 32.000000\n", "1772 Spindle's End ... 41.000000\n", "1773 The Secret History ... 46.000000\n", "1774 Fair Game (Alpha & Omega, #3) ... 36.000000\n", "1775 The Coldest Girl in Coldtown ... 35.000000\n", "1776 Shades of Earth (Across the Universe, #3) ... 36.000000\n", "1777 The Adventures of Tom Sawyer & Adventures of H... ... 37.000000\n", "1778 The Strange Case of Dr. Jekyll and Mr. Hyde an... ... 31.000000\n", "1779 The Two Princesses of Bamarre ... 36.000000\n", "1780 NOS4A2 ... 40.000000\n", "1781 The Demigod Files (Percy Jackson and the Olymp... ... 38.000000\n", "1782 The Leftovers ... 34.000000\n", "1783 The Midnight Palace (Niebla, #2) ... 38.000000\n", "1784 White Noise ... 40.000000\n", "1785 Dark Triumph (His Fair Assassin, #2) ... 36.000000\n", "1786 A Million Suns (Across the Universe, #2) ... 35.000000\n", "1787 Galápagos ... 39.000000\n", "1788 The Ghost Bride ... 34.000000\n", "1789 Enduring Love ... 40.000000\n", "1790 Howards End ... 42.000000\n", "1791 Ulysses ... 40.000000\n", "1792 Alienated (Alienated, #1) ... 35.000000\n", "1793 Cerulean Sins (Anita Blake, Vampire Hunter, #11) ... 33.000000\n", "1794 Icefire (The Last Dragon Chronicles, #2) ... 36.000000\n", "1795 Life of Pi ... 49.000000\n", "1796 Big Fish ... 43.000000\n", "1797 The Reckoning (Darkest Powers, #3) ... 38.000000\n", "1798 Kidnapped (David Balfour, #1) ... 45.000000\n", "1799 The Field Guide (The Spiderwick Chronicles, #1) ... 36.000000\n", "1800 Gone (Wake, #3) ... 38.000000\n", "1801 The Circle ... 42.000000\n", "1802 Captive Prince: Volume Two (Captive Prince, #2) ... 31.000000\n", "1803 High Fidelity ... 42.000000\n", "1804 Blood Promise (Vampire Academy, #4) ... 45.000000\n", "1805 The Best of H.P. Lovecraft: Bloodcurdling Tale... ... 38.000000\n", "1806 Vampire Mountain (Cirque Du Freak, #4) ... 37.000000\n", "1807 The Bell Jar ... 38.000000\n", "1808 The Perks of Being a Wallflower ... 46.000000\n", "1809 Caraval ... 37.000000\n", "1810 Doomsday Book (Oxford Time Travel, #1) ... 42.000000\n", "1811 Magic and Other Misdemeanors (The Sisters Grim... ... 36.000000\n", "1812 The Seeing Stone (The Spiderwick Chronicles, #2) ... 37.000000\n", "1813 In Watermelon Sugar ... 35.000000\n", "1814 White Teeth ... 43.000000\n", "1815 Max (Maximum Ride, #5) ... 41.000000\n", "1816 This World We Live In (Last Survivors, #3) ... 35.000000\n", "1817 Our Mutual Friend ... 34.000000\n", "1818 The Strain (The Strain Trilogy, #1) ... 32.000000\n", "1819 Talon (Talon, #1) ... 37.000000\n", "1820 The Call of Cthulhu and Other Weird Stories ... 28.000000\n", "1821 A Lick of Frost (Merry Gentry, #6) ... 31.000000\n", "1822 Wondrous Strange (Wondrous Strange, #1) ... 31.000000\n", "1823 The Fall (The Strain Trilogy, #2) ... 38.000000\n", "1824 The Rose Garden ... 35.000000\n", "1825 A Deepness in the Sky (Zones of Thought, #2) ... 43.000000\n", "1826 The Gift (Witch & Wizard, #2) ... 37.000000\n", "1827 A Ring of Endless Light (Austin Family, #4) ... 35.000000\n", "1828 The Fireman ... 38.000000\n", "1829 The Grapes of Wrath ... 43.000000\n", "1830 The Road ... 46.000000\n", "1831 A New Hope (Star Wars: Novelizations #4) ... 43.000000\n", "1832 Till We Have Faces ... 42.000000\n", "1833 The Phantom Tollbooth ... 40.000000\n", "1834 Tropic of Capricorn ... 40.000000\n", "1835 Last Sacrifice (Vampire Academy, #6) ... 45.000000\n", "1836 Hunters of the Dusk (Cirque Du Freak, #7) ... 38.000000\n", "1837 The Force Awakens (Star Wars) ... 42.000000\n", "1838 Big Sur ... 41.000000\n", "1839 Princess Academy (Princess Academy, #1) ... 39.000000\n", "1840 Atlas Shrugged ... 45.000000\n", "1841 The French Lieutenant's Woman ... 41.000000\n", "1842 The Fifth Dominion (Imajica Part #1/2) ... 18.000000\n", "1843 The Hunger Pains: A Parody ... 36.000000\n", "1844 The Last of the Mohicans (The Leatherstocking ... ... 46.000000\n", "1845 Betrayed (House of Night, #2) ... 39.000000\n", "1846 Wildwood Dancing (Wildwood, #1) ... 38.000000\n", "1847 The Historian ... 40.000000\n", "1848 The Return of the Native ... 39.000000\n", "1849 Variant (Variant, #1) ... 32.000000\n", "1850 Cress (The Lunar Chronicles, #3) ... 39.000000\n", "1851 The Metamorphosis ... 42.000000\n", "1852 The Good Soldier ... 37.000000\n", "1853 Lament: The Faerie Queen's Deception (Books of... ... 32.000000\n", "1854 The Last Policeman (The Last Policeman, #1) ... 32.000000\n", "1855 To the Lighthouse ... 46.000000\n", "1856 The Problem Child (The Sisters Grimm, #3) ... 35.000000\n", "1857 Garden Spells (Waverley Family, #1) ... 41.000000\n", "1858 Far from the Madding Crowd ... 42.000000\n", "1859 Infinite Jest ... 42.000000\n", "1860 Confessions of an Ugly Stepsister ... 45.000000\n", "1861 All Quiet on the Western Front ... 44.000000\n", "1862 Martin Chuzzlewit ... 41.000000\n", "1863 Vision in Silver (The Others, #3) ... 34.000000\n", "1864 Mariana ... 34.000000\n", "1865 Frostbite (Vampire Academy, #2) ... 45.000000\n", "1866 Lost Souls ... 37.000000\n", "1867 The Killing Dance (Anita Blake, Vampire Hunter... ... 34.000000\n", "1868 Shirley ... 38.000000\n", "1869 Saturday ... 38.000000\n", "1870 The Da Vinci Code (Robert Langdon, #2) ... 48.000000\n", "1871 Magic Bleeds (Kate Daniels, #4) ... 37.000000\n", "1872 Circus of the Damned (Anita Blake, Vampire Hun... ... 33.000000\n", "1873 Across the Universe (Across the Universe, #1) ... 36.000000\n", "1874 A Thousand Pieces of You (Firebird, #1) ... 40.000000\n", "1875 The Complete Tales and Poems ... 39.000000\n", "1876 Once Upon a Crime (The Sisters Grimm, #4) ... 36.000000\n", "1877 Swann's Way (In Search of Lost Time, #1) ... 41.000000\n", "1878 Personal Demon (Women of the Otherworld, #8) ... 33.000000\n", "1879 Warm Bodies (Warm Bodies, #1) ... 32.000000\n", "1880 Evermore (The Immortals, #1) ... 37.000000\n", "1881 Villette ... 41.000000\n", "1882 The Adventures of Huckleberry Finn ... 43.000000\n", "1883 Witch & Wizard (Witch & Wizard, #1) ... 36.000000\n", "1884 The Adventures of Sherlock Holmes ... 45.000000\n", "1885 The Portrait of a Lady ... 41.000000\n", "1886 Naked Lunch ... 36.000000\n", "1887 Candide ... 38.000000\n", "1888 The Ironwood Tree (The Spiderwick Chronicles, #4) ... 36.000000\n", "1889 Wolf Brother (Chronicles of Ancient Darkness, #1) ... 35.000000\n", "1890 The Strange and Beautiful Sorrows of Ava Lavender ... 36.000000\n", "1891 Dodger ... 37.000000\n", "1892 Obsidian Butterfly (Anita Blake, Vampire Hunte... ... 35.000000\n", "1893 Earth Abides ... 42.000000\n", "1894 Sometimes a Great Notion ... 37.000000\n", "1895 The Thief Lord ... 34.000000\n", "1896 Rant ... 43.000000\n", "1897 The Iron Knight (The Iron Fey, #4) ... 40.000000\n", "1898 Beauty: A Retelling of the Story of Beauty and... ... 46.000000\n", "1899 Kitty and the Midnight Hour (Kitty Norville #1) ... 33.000000\n", "1900 Moll Flanders ... 40.000000\n", "1901 Chosen (House of Night, #3) ... 38.000000\n", "1902 The Last Town (Wayward Pines, #3) ... 33.000000\n", "1903 Percy Jackson & the Olympians: The Ultimate G... ... 32.000000\n", "1904 The Rainbow ... 39.000000\n", "1905 The Shadow of the Wind (The Cemetery of Forgot... ... 48.000000\n", "1906 The History of Tom Jones, a Foundling ... 40.000000\n", "1907 Meg (MEG, #1) ... 33.000000\n", "1908 Insatiable (Insatiable, #1) ... 35.000000\n", "1909 Hard Times ... 41.000000\n", "1910 Invisible Cities ... 38.000000\n", "1911 To Have and Have Not ... 37.000000\n", "1912 Fang (Maximum Ride, #6) ... 40.000000\n", "1913 River Marked (Mercy Thompson, #6) ... 36.000000\n", "1914 Cry Wolf (Alpha & Omega, #1) ... 39.000000\n", "1915 The Little Prince ... 47.000000\n", "1916 Marked in Flesh (The Others, #4) ... 32.000000\n", "1917 Carrie ... 47.000000\n", "1918 The Stupidest Angel: A Heartwarming Tale of Ch... ... 34.000000\n", "1919 Zone One ... 33.000000\n", "1920 Proper Gauge (Wool, #2) ... 34.000000\n", "1921 Griffin and Sabine (Griffin & Sabine #1) ... 37.000000\n", "1922 Magic Rises (Kate Daniels, #6) ... 35.000000\n", "1923 Gemina (The Illuminae Files, #2) ... 34.000000\n", "1924 The Castle ... 39.000000\n", "1925 The Curious Case of Benjamin Button ... 37.000000\n", "1926 Fade (Wake, #2) ... 38.000000\n", "1927 The Scarlet Pimpernel ... 49.000000\n", "1928 The People of Sparks (Book of Ember, #2) ... 36.000000\n", "1929 The Hammer of Thor (Magnus Chase and the Gods ... ... 37.000000\n", "1930 The Awakening and Selected Stories ... 42.000000\n", "1931 The Shelters of Stone (Earth's Children, #5) ... 43.000000\n", "1932 Dream Dark (Caster Chronicles, #2.5) ... 32.000000\n", "1933 Tiger's Quest (The Tiger Saga, #2) ... 42.000000\n", "1934 Way Station ... 39.000000\n", "1935 Wake (Watersong #1) ... 36.000000\n", "1936 2BR02B ... 32.000000\n", "1937 Star Wars - Episode I: The Phantom Menace ... 46.000000\n", "1938 Abandon (Abandon, #1) ... 34.000000\n", "1939 The Tenant of Wildfell Hall ... 40.000000\n", "1940 Women in Love (Brangwen Family, #2) ... 39.000000\n", "1941 Unwind (Unwind, #1) ... 39.000000\n", "1942 The Crow Road ... 37.000000\n", "1943 The Initiation / The Captive Part I (The Secre... ... 39.000000\n", "1944 Steppenwolf ... 42.000000\n", "1945 Etiquette & Espionage (Finishing School, #1) ... 33.000000\n", "1946 Fatherland ... 40.000000\n", "1947 The Glass Bead Game ... 44.000000\n", "1948 Mr. Penumbra's 24-Hour Bookstore (Mr. Penumbra... ... 43.000000\n", "1949 Burnt Offerings (Anita Blake, Vampire Hunter, #7) ... 32.000000\n", "1950 Swallowing Darkness (Merry Gentry, #7) ... 31.000000\n", "1951 Mother Night ... 44.000000\n", "1952 Clean Sweep (Innkeeper Chronicles, #1) ... 34.000000\n", "1953 On Love ... 37.000000\n", "1954 The Rose & the Dagger (The Wrath & the Dawn, #2) ... 33.000000\n", "1955 American Psycho ... 46.000000\n", "1956 The Plot Against America ... 35.000000\n", "1957 A Leaf on the Wind of All Hallows (Outlander, ... ... 30.000000\n", "1958 Sherlock Holmes: The Complete Novels and Stori... ... 46.000000\n", "1959 Crescendo (Hush, Hush, #2) ... 41.000000\n", "1960 Killers of the Dawn (Cirque Du Freak, #9) ... 37.000000\n", "1961 Alice's Adventures in Wonderland & Other Stories ... 43.000000\n", "1962 Unspoken (The Lynburn Legacy, #1) ... 32.000000\n", "1963 Micah (Anita Blake, Vampire Hunter, #13) ... 32.000000\n", "1964 Night World, No. 1 (Night World, #1-3) ... 40.000000\n", "1965 Jitterbug Perfume ... 40.000000\n", "1966 1Q84 BOOK 3 (1Q84, #3) ... 39.000000\n", "1967 Spirit Bound (Vampire Academy, #5) ... 44.000000\n", "1968 Affliction (Anita Blake, Vampire Hunter #22) ... 31.000000\n", "1969 The Ground Beneath Her Feet ... 36.000000\n", "1970 Piano/Vocal/Guitar Sheet Music: The Chronicles... ... 20.000000\n", "1971 Dead in the Family (Sookie Stackhouse, #10) ... 35.000000\n", "1972 Written on the Body ... 39.000000\n", "1973 Claimed By Shadow (Cassandra Palmer, #2) ... 37.000000\n", "1974 Burmese Days ... 39.000000\n", "1975 The Passion ... 37.000000\n", "1976 World Without End (The Kingsbridge Series, #2) ... 47.000000\n", "1977 The Hidden Oracle (The Trials of Apollo, #1) ... 38.000000\n", "1978 Double Identity ... 36.000000\n", "1979 Wayward (Wayward Pines, #2) ... 33.000000\n", "1980 Hamlet ... 42.000000\n", "1981 Magic Bites (Kate Daniels, #1) ... 36.000000\n", "1982 The Vampire Prince (Cirque Du Freak, #6) ... 38.000000\n", "1983 The Mayor of Casterbridge ... 41.000000\n", "1984 Bloody Bones (Anita Blake, Vampire Hunter #5) ... 32.000000\n", "1985 The 100 (The 100, #1) ... 40.000000\n", "1986 The Hunger Games: Official Illustrated Movie C... ... 36.000000\n", "1987 The Complete Works of H.P. Lovecraft ... 34.000000\n", "1988 Frost Burned (Mercy Thompson, #7) ... 35.000000\n", "1989 Beloved ... 40.000000\n", "1990 The Namesake ... 35.000000\n", "1991 Shōgun (Asian Saga, #1) ... 51.000000\n", "1992 Treasure Island ... 42.000000\n", "1993 The Painted Veil ... 44.000000\n", "1994 Kafka on the Shore ... 45.000000\n", "1995 Magic Strikes (Kate Daniels, #3) ... 37.000000\n", "1996 This Present Darkness (Darkness, #1) ... 44.000000\n", "1997 The Power and the Glory ... 35.000000\n", "1998 Grimm's Fairy Tales ... 42.000000\n", "1999 Tunnels (Tunnels, #1) ... 38.000000\n", "2000 The Winner's Crime (The Winner's Trilogy, #2) ... 39.000000\n", "2001 The Screaming Staircase (Lockwood & Co., #1) ... 31.000000\n", "2002 Visions of Heat (Psy-Changeling #2) ... 35.000000\n", "2003 Hourglass (Hourglass, #1) ... 27.000000\n", "2004 The Kite Runner ... 47.000000\n", "2005 Poison Princess (The Arcana Chronicles, #1) ... 40.000000\n", "2006 Momo ... 43.000000\n", "2007 The Call of the Wild ... 43.000000\n", "2008 The Robber Bride ... 45.000000\n", "2009 Dead Reckoning (Sookie Stackhouse, #11) ... 33.000000\n", "2010 How Green Was My Valley ... 44.000000\n", "2011 Silas Marner ... 42.000000\n", "2012 The Death of Ivan Ilych ... 38.000000\n", "2013 Into the Still Blue (Under the Never Sky, #3) ... 37.000000\n", "2014 Mercy Blade (Jane Yellowrock, #3) ... 33.000000\n", "2015 The Valley of Horses (Earth's Children, #2) ... 47.000000\n", "2016 Wings (Wings, #1) ... 35.000000\n", "2017 The Divine Comedy ... 39.000000\n", "2018 Iced (Fever, #6) ... 38.000000\n", "2019 The Terror ... 40.000000\n", "2020 The Arabian Nights ... 41.000000\n", "2021 Skellig (Skellig, #1) ... 35.000000\n", "2022 Bloodlines (Bloodlines, #1) ... 43.000000\n", "2023 The Elite (The Selection, #2) ... 42.000000\n", "2024 Opal (Lux, #3) ... 38.000000\n", "2025 The Magical Worlds of Harry Potter: A Treasury... ... 35.000000\n", "2026 Fool ... 40.000000\n", "2027 Onyx (Lux, #2) ... 38.000000\n", "2028 Grave Secret (Harper Connelly, #4) ... 34.000000\n", "2029 Succubus Shadows (Georgina Kincaid, #5) ... 37.000000\n", "2030 Odd Thomas (Odd Thomas, #1) ... 42.000000\n", "2031 Le Morte d'Arthur: King Arthur and the Legends... ... 39.000000\n", "2032 Dead Heat (Alpha & Omega #4) ... 29.000000\n", "2033 Right Ho, Jeeves (Jeeves, #6) ... 44.000000\n", "2034 number9dream ... 39.000000\n", "2035 Fire Touched (Mercy Thompson, #9) ... 31.000000\n", "2036 The Jewel (The Lone City, #1) ... 38.000000\n", "2037 The Alchemist ... 48.000000\n", "2038 Graduation Day (The Testing, #3) ... 35.000000\n", "2039 The Last Command ... 45.000000\n", "2040 Peter and the Shadow Thieves (Peter and the St... ... 38.000000\n", "2041 Gravity's Rainbow ... 38.000000\n", "2042 The Twilight Saga: The Official Illustrated Gu... ... 35.000000\n", "2043 Thirst No. 3: The Eternal Dawn (Thirst, #3) ... 38.000000\n", "2044 Speaker for the Dead (Ender's Saga, #2) ... 43.000000\n", "2045 Hush, Hush (Hush, Hush, #1) ... 42.000000\n", "2046 Witches of East End (The Beauchamp Family, #1) ... 37.000000\n", "2047 Beowulf ... 40.000000\n", "2048 Storm Born (Dark Swan #1) ... 34.000000\n", "2049 Marked (House of Night, #1) ... 38.000000\n", "2050 Avalon High ... 35.000000\n", "2051 Middlemarch ... 45.000000\n", "2052 The Dead and the Gone (Last Survivors, #2) ... 35.000000\n", "2053 The Feast of All Saints ... 36.000000\n", "2054 Nevermore (Maximum Ride, #8) ... 39.000000\n", "2055 A Prayer for Owen Meany ... 45.000000\n", "2056 The Assassin and the Desert (Throne of Glass, ... ... 31.000000\n", "2057 A Portrait of the Artist as a Young Man ... 42.000000\n", "2058 The Comfort of Strangers ... 35.000000\n", "2059 A Christmas Carol and Other Christmas Writings ... 42.000000\n", "2060 The Wrath of Mulgarath (The Spiderwick Chronic... ... 35.000000\n", "2061 The Woodlanders ... 36.000000\n", "2062 Thirst No. 1: The Last Vampire, Black Blood, a... ... 37.000000\n", "2063 Captain Blood ... 44.000000\n", "2064 The Bonfire of the Vanities ... 40.000000\n", "2065 Innocence ... 38.000000\n", "2066 Dust & Decay (Rot & Ruin, #2) ... 39.000000\n", "2067 The Pillars of the Earth (The Kingsbridge Seri... ... 48.000000\n", "2068 Bleak House ... 42.000000\n", "2069 Magic Burns (Kate Daniels, #2) ... 36.000000\n", "2070 The Serpent of Venice (The Fool, #2) ... 39.000000\n", "2071 The Golden Lily (Bloodlines, #2) ... 38.000000\n", "2072 Rabbit Redux (Rabbit Angstrom #2) ... 33.000000\n", "2073 The Dog Stars ... 39.000000\n", "2074 Rosemary's Baby ... 41.000000\n", "2075 Cat's Eye ... 42.000000\n", "2076 Obsidian (Lux, #1) ... 37.000000\n", "2077 Fairest (The Lunar Chronicles, #3.5) ... 36.000000\n", "2078 Silence (Hush, Hush, #3) ... 39.000000\n", "2079 The Magus ... 44.000000\n", "2080 Burned (Fever, #7) ... 33.000000\n", "2081 Burned (House of Night, #7) ... 37.000000\n", "2082 The Staff of Serapis (Percy Jackson & Kane Chr... ... 30.000000\n", "2083 Darkest Powers Trilogy (Darkest Powers, #1-3) ... 34.000000\n", "2084 Fallen (Fallen, #1) ... 40.000000\n", "2085 Gone (Gone, #1) ... 41.000000\n", "2086 Jude the Obscure ... 44.000000\n", "2087 A Farewell to Arms ... 44.000000\n", "2088 Macbeth ... 40.000000\n", "2089 The Laughing Corpse (Anita Blake, Vampire Hunt... ... 32.000000\n", "2090 A Court of Wings and Ruin (A Court of Thorns a... ... 36.000000\n", "2091 On Beauty ... 41.000000\n", "2092 Halo: The Flood ... 37.000000\n", "2093 Succubus Dreams (Georgina Kincaid, #3) ... 36.000000\n", "2094 Fire Star (The Last Dragon Chronicles, #3) ... 36.000000\n", "2095 On the Beach ... 45.000000\n", "2096 The Name of the Star (Shades of London, #1) ... 31.000000\n", "2097 Odd and the Frost Giants ... 32.000000\n", "2098 Infinity (Chronicles of Nick, #1) ... 39.000000\n", "2099 The Hound of the Baskervilles ... 44.000000\n", "2100 Lord Jim ... 42.000000\n", "2101 Winter's Passage (Iron Fey, #1.5) ... 28.000000\n", "2102 I Capture the Castle ... 47.000000\n", "2103 The Goose Girl (The Books of Bayern, #1) ... 38.000000\n", "2104 The Madman’s Daughter (The Madman’s Daught... ... 32.000000\n", "2105 Queen Song (Red Queen, #0.1) ... 29.000000\n", "2106 Rainbows End ... 33.000000\n", "2107 Succubus Blues (Georgina Kincaid, #1) ... 36.000000\n", "2108 The Crying of Lot 49 ... 40.000000\n", "2109 The Siren ... 32.000000\n", "2110 Things Fall Apart (The African Trilogy, #1) ... 40.000000\n", "2111 The Raven King (The Raven Cycle, #4) ... 34.000000\n", "2112 Thirst No. 2: Phantom, Evil Thirst, and Creatu... ... 41.000000\n", "2113 Burn for Me (Hidden Legacy, #1) ... 34.000000\n", "2114 A Separate Peace ... 37.000000\n", "2115 Regeneration (Regeneration, #1) ... 36.000000\n", "2116 Home (Gilead, #2) ... 39.000000\n", "2117 The Capture (Guardians of Ga'Hoole, #1) ... 34.000000\n", "2118 Blue Moon (Anita Blake, Vampire Hunter, #8) ... 31.000000\n", "2119 The Dangerous Days of Daniel X (Daniel X, #1) ... 37.000000\n", "2120 The Lottery ... 37.000000\n", "2121 Half Magic (Tales of Magic, #1) ... 32.000000\n", "2122 Lost Stars (Star Wars: Journey to the Force Aw... ... 40.000000\n", "2123 The Assassin and the Pirate Lord (Throne of Gl... ... 33.000000\n", "2124 The House of Mirth ... 42.000000\n", "2125 Deadlocked (Sookie Stackhouse, #12) ... 32.000000\n", "2126 The Lost Hero (The Heroes of Olympus, #1) ... 42.000000\n", "2127 Ship Breaker (Ship Breaker, #1) ... 33.000000\n", "2128 Veronika Decides to Die ... 41.000000\n", "2129 The Enemy (The Enemy, #1) ... 39.000000\n", "2130 Strange Candy (Anita Blake, Vampire Hunter #0.5) ... 30.000000\n", "2131 Prodigy (Legend, #2) ... 46.000000\n", "2132 The Rats (Rats, #1) ... 39.000000\n", "2133 Spells (Wings, #2) ... 35.000000\n", "2134 King's Cage (Red Queen, #3) ... 40.000000\n", "2135 Blindness ... 44.000000\n", "2136 Shatter Me (Shatter Me, #1) ... 43.000000\n", "2137 Agnes Grey ... 37.000000\n", "2138 Tom's Midnight Garden ... 37.000000\n", "2139 Starters (Starters, #1) ... 36.000000\n", "2140 The Last Star (The 5th Wave, #3) ... 37.000000\n", "2141 The Pilgrim's Progress ... 44.000000\n", "2142 The Book Thief ... 50.000000\n", "2143 The Raven and other poems ... 35.000000\n", "2144 Magic Shifts (Kate Daniels, #8) ... 31.000000\n", "2145 The Monk ... 38.000000\n", "2146 Matched (Matched, #1) ... 39.000000\n", "2147 Her Fearful Symmetry ... 36.000000\n", "2148 Tempted (House of Night, #6) ... 35.000000\n", "2149 The Everafter War (The Sisters Grimm, #7) ... 35.000000\n", "2150 Welcome to the Monkey House ... 46.000000\n", "2151 The Einstein Prophecy ... 34.000000\n", "2152 Shadows (Lux, #0.5) ... 33.000000\n", "2153 Hunted (House of Night, #5) ... 37.000000\n", "2154 The Turn of the Screw ... 39.000000\n", "2155 Angel (Maximum Ride, #7) ... 39.000000\n", "2156 A Stroke of Midnight (Merry Gentry, #4) ... 30.000000\n", "2157 The One (The Selection, #3) ... 39.000000\n", "2158 Wildwood (Wildwood Chronicles, #1) ... 38.000000\n", "2159 Rabbit, Run (Rabbit Angstrom #1) ... 41.000000\n", "2160 Finale (Hush, Hush, #4) ... 42.000000\n", "2161 The Complete Sherlock Holmes ... 52.000000\n", "2162 Gunmetal Magic (Kate Daniels, #5.5) ... 32.000000\n", "2163 Masquerade (Blue Bloods, #2) ... 35.000000\n", "2164 The Book of Laughter and Forgetting ... 34.000000\n", "2165 The Indigo Spell (Bloodlines, #3) ... 39.000000\n", "2166 Inferno (The Divine Comedy #1) ... 40.000000\n", "2167 A Wild Sheep Chase (The Rat, #3) ... 38.000000\n", "2168 Darkest Mercy (Wicked Lovely, #5) ... 32.000000\n", "2169 Demons ... 32.000000\n", "2170 Caressed by Ice (Psy-Changeling #3) ... 35.000000\n", "2171 A Touch of Dead (Sookie Stackhouse, #4.1, #4.3... ... 30.000000\n", "2172 Sexing the Cherry ... 33.000000\n", "2173 The Canterbury Tales ... 32.000000\n", "2174 V. ... 33.000000\n", "2175 Of Human Bondage ... 43.000000\n", "2176 Percy Jackson and the Sword of Hades (Percy Ja... ... 28.000000\n", "2177 The Sound and the Fury ... 38.000000\n", "2178 The Awakening (The Vampire Diaries, #1) ... 38.000000\n", "2179 Glimmerglass (Faeriewalker, #1) ... 31.000000\n", "2180 The House of the Seven Gables ... 38.000000\n", "2181 Foucault's Pendulum ... 39.000000\n", "2182 Sons of Destiny (Cirque Du Freak, #12) ... 36.000000\n", "2183 Mirror Mirror ... 42.000000\n", "2184 Peter and the Starcatchers (Peter and the Star... ... 39.000000\n", "2185 The Complete Grimm's Fairy Tales ... 44.000000\n", "2186 The Divergent Series 2-Book Collection (Diverg... ... 27.000000\n", "2187 Shadows over Innsmouth ... 21.000000\n", "2188 Casino Royale (James Bond, #1) ... 44.000000\n", "2189 Blue Bloods (Blue Bloods, #1) ... 36.000000\n", "2190 Requiem for a Dream ... 32.000000\n", "2191 Hit List (Anita Blake, Vampire Hunter #20) ... 31.000000\n", "2192 Divine Misdemeanors (Merry Gentry, #8) ... 28.000000\n", "2193 The Forsyte Saga (The Forsyte Chronicles, #1-3) ... 42.000000\n", "2194 The Art of Fielding ... 37.000000\n", "2195 Among the Impostors (Shadow Children, #2) ... 31.000000\n", "2196 The Blind Owl ... 26.000000\n", "2197 The Eight (The Eight #1) ... 44.000000\n", "2198 Lord of Misrule (The Morganville Vampires, #5) ... 39.000000\n", "2199 The Archived (The Archived, #1) ... 23.000000\n", "2200 Pnin ... 36.000000\n", "2201 The Buddha of Suburbia ... 32.000000\n", "2202 Left Behind (Left Behind, #1) ... 43.000000\n", "2203 A Christmas Carol, The Chimes and The Cricket ... ... 36.000000\n", "2204 Five Children and It (Five Children, #1) ... 43.000000\n", "2205 The Fiery Heart (Bloodlines, #4) ... 39.000000\n", "2206 Palace of Stone (Princess Academy, #2) ... 33.000000\n", "2207 Love in the Time of Cholera ... 41.000000\n", "2208 Heart of Darkness and Selected Short Fiction ... 38.000000\n", "2209 Labyrinths: Selected Stories and Other Writings ... 36.000000\n", "2210 Lightning ... 43.000000\n", "2211 Grave Surprise (Harper Connelly, #2) ... 33.000000\n", "2212 Five Weeks in a Balloon (Extraordinary Voyages... ... 37.000000\n", "2213 A Confederacy of Dunces ... 44.000000\n", "2214 Sputnik Sweetheart ... 34.000000\n", "2215 The Girl Who Was on Fire: Your Favorite Author... ... 34.000000\n", "2216 Light (Gone, #6) ... 35.000000\n", "2217 Doctor Zhivago ... 43.000000\n", "2218 The Lake of Souls (Cirque Du Freak, #10) ... 39.000000\n", "2219 The Fury / Dark Reunion (The Vampire Diaries, ... ... 34.000000\n", "2220 The Lunatic Cafe (Anita Blake, Vampire Hunter #4) ... 30.000000\n", "2221 Found (The Missing, #1) ... 30.000000\n", "2222 Incubus Dreams (Anita Blake, Vampire Hunter, #12) ... 30.000000\n", "2223 A Room of One's Own ... 39.000000\n", "2224 The Castle in the Attic (The Castle in the Att... ... 33.000000\n", "2225 Embrace the Night (Cassandra Palmer, #3) ... 31.000000\n", "2226 Let the Right One In ... 38.000000\n", "2227 Daniel Deronda ... 36.000000\n", "2228 Flowers in the Attic (Dollanganger, #1) ... 47.000000\n", "2229 Amerika ... 37.000000\n", "2230 Half Bad (The Half Bad Trilogy, #1) ... 38.000000\n", "2231 Cranford ... 39.000000\n", "2232 The Struggle (The Vampire Diaries, #2) ... 39.000000\n", "2233 Danse Macabre (Anita Blake, Vampire Hunter, #14) ... 29.000000\n", "2234 Small Island ... 32.000000\n", "2235 Lucky Jim ... 36.000000\n", "2236 Jailbird ... 39.000000\n", "2237 Feast of Fools (The Morganville Vampires, #4) ... 39.000000\n", "2238 The Time Keeper ... 44.000000\n", "2239 Between the Lines (Between the Lines, #1) ... 21.500000\n", "2240 Between the Lines (Between the Lines, #1) ... 21.500000\n", "2241 Out of Africa ... 34.000000\n", "2242 East ... 37.000000\n", "2243 Middlesex ... 40.000000\n", "2244 Flirt (Anita Blake, Vampire Hunter #18) ... 29.000000\n", "2245 Romeo and Juliet ... 38.000000\n", "2246 Sons and Lovers ... 37.000000\n", "2247 The Transfer (Divergent, #0.1) ... 33.000000\n", "2248 The Wolf Gift (The Wolf Gift Chronicles, #1) ... 35.000000\n", "2249 Ben-Hur: A Tale of the Christ ... 38.000000\n", "2250 The Curious Incident of the Dog in the Night-Time ... 31.000000\n", "2251 Winter (The Lunar Chronicles, #4) ... 37.000000\n", "2252 Fifth Business ... 38.000000\n", "2253 Legend (Legend, #1) ... 39.000000\n", "2254 A Court of Thorns and Roses (A Court of Thorns... ... 40.000000\n", "2255 Sacré Bleu: A Comedy d'Art ... 37.000000\n", "2256 Jinx ... 36.000000\n", "2257 Underworld ... 40.000000\n", "2258 Into the Wild (Warriors, #1) ... 38.000000\n", "2259 Vampire Academy (Vampire Academy, #1) ... 21.000000\n", "2260 Carry on, Jeeves (Jeeves, #3) ... 42.000000\n", "2261 The Forest of Hands and Teeth (The Forest of H... ... 35.000000\n", "2262 King Arthur and His Knights: Selected Tales ... 29.000000\n", "2263 UnDivided (Unwind, #4) ... 40.000000\n", "2264 The Pit and the Pendulum ... 33.000000\n", "2265 The Castle of Otranto ... 36.000000\n", "2266 Timbuktu ... 36.000000\n", "2267 Origin (Lux, #4) ... 37.000000\n", "2268 Oranges Are Not the Only Fruit ... 34.000000\n", "2269 The Calling (Endgame, #1) ... 40.000000\n", "2270 Clockwork Princess (The Infernal Devices, #3) ... 42.000000\n", "2271 Hogwarts: An Incomplete and Unreliable Guide (... ... 28.000000\n", "2272 The Plague ... 38.000000\n", "2273 The Reader ... 42.000000\n", "2274 The Mill on the Floss ... 38.000000\n", "2275 A Court of Mist and Fury (A Court of Thorns an... ... 34.000000\n", "2276 The Selection (The Selection, #1) ... 42.000000\n", "2277 The Moonstone ... 40.000000\n", "2278 A Home at the End of the World ... 34.000000\n", "2279 1Q84 BOOK 2 (1Q84, #2) ... 38.000000\n", "2280 Molly Moon's Incredible Book of Hypnotism (Mol... ... 38.000000\n", "2281 Sophie's Choice ... 41.000000\n", "2282 A Shadow of Light (A Shade of Vampire, #4) ... 30.000000\n", "2283 Piercing the Darkness (Darkness, #2) ... 41.000000\n", "2284 Shadows of the Empire (Star Wars) ... 41.000000\n", "2285 Defiance (Defiance #1) ... 34.000000\n", "2286 The Last Girl (The Dominion Trilogy, #1) ... 31.000000\n", "2287 Succubus on Top (Georgina Kincaid, #2) ... 35.000000\n", "2288 Fear of Flying ... 37.000000\n", "2289 Look Homeward, Angel ... 34.000000\n", "2290 James Potter and the Hall of Elders' Crossing ... ... 28.000000\n", "2291 Opposition (Lux, #5) ... 30.000000\n", "2292 Short Stories from Hogwarts of Power, Politics... ... 27.000000\n", "2293 Grave Witch (Alex Craft, #1) ... 31.000000\n", "2294 Fairy Tales from the Brothers Grimm: A New Eng... ... 28.000000\n", "2295 The 39 Steps (Richard Hannay, #1) ... 40.000000\n", "2296 East of Eden ... 48.000000\n", "2297 The Darkest Part of the Forest ... 25.000000\n", "2298 All the Pretty Horses (The Border Trilogy, #1) ... 36.000000\n", "2299 The Complete Stories and Poems ... 21.500000\n", "2300 The Complete Stories and Poems ... 21.500000\n", "2301 Pure (Pure, #1) ... 30.000000\n", "2302 The Giver (The Giver, #1) ... 20.000000\n", "2303 Magic Slays (Kate Daniels, #5) ... 35.000000\n", "2304 Tennis Shoes Among the Nephites (Tennis Shoes,... ... 34.000000\n", "2305 The Wrath and the Dawn (The Wrath and the Dawn... ... 38.000000\n", "2306 The Secret Agent ... 38.000000\n", "2307 The Summoning (Darkest Powers, #1) ... 36.000000\n", "2308 Ignite Me (Shatter Me, #3) ... 41.000000\n", "2309 Shakespeare's Sonnets ... 38.000000\n", "2310 A Modest Proposal and Other Satirical Works ... 29.000000\n", "2311 Brideshead Revisited: The Sacred and Profane M... ... 43.000000\n", "2312 A Modest Proposal ... 30.000000\n", "2313 Slave to Sensation (Psy-Changeling #1) ... 35.000000\n", "2314 Illusions (Wings, #3) ... 33.000000\n", "2315 One Day ... 47.000000\n", "2316 The Devil and Miss Prym (On the Seventh Day, #3) ... 36.000000\n", "2317 Fight Club ... 48.000000\n", "2318 Mary Barton ... 36.000000\n", "2319 Curse the Dawn (Cassandra Palmer, #4) ... 37.000000\n", "2320 The End of Mr. Y ... 31.000000\n", "2321 The Prophet of Yonwood (Book of Ember, #3) ... 34.000000\n", "2322 The Book of Illusions ... 30.000000\n", "2323 Adam Bede ... 37.000000\n", "2324 1Q84 #1-2 (1Q84, #1-2) ... 37.000000\n", "2325 Good Faeries/Bad Faeries ... 25.000000\n", "2326 The Murder of Roger Ackroyd (Hercule Poirot, #4) ... 42.000000\n", "2327 The Raven ... 37.000000\n", "2328 The Girl Who Chased the Moon ... 36.000000\n", "2329 Three Men in a Boat (Three Men, #1) ... 44.000000\n", "2330 The School for Good and Evil (The School for G... ... 39.000000\n", "2331 Cry, the Beloved Country ... 40.000000\n", "2332 The Fallen and Leviathan (The Fallen, #1-2) ... 36.000000\n", "2333 The Mortal Instruments (The Mortal Instruments... ... 28.000000\n", "2334 Anne Rice's The Vampire Lestat: A Graphic Novel ... 29.000000\n", "2335 Raise High the Roof Beam, Carpenters & Seymour... ... 42.000000\n", "2336 Contest ... 39.000000\n", "2337 The Thirteenth Tale ... 44.000000\n", "2338 My Sister's Keeper ... 41.000000\n", "2339 Midnight Alley (The Morganville Vampires, #3) ... 40.000000\n", "2340 Little Dorrit ... 41.000000\n", "2341 The Brothers Karamazov ... 40.000000\n", "2342 The Diamond of Darkhold (Book of Ember, #4) ... 31.000000\n", "2343 The Calling (Darkness Rising, #2) ... 33.000000\n", "2344 Defiance (Significance, #3) ... 29.000000\n", "2345 The Moon and Sixpence ... 42.000000\n", "2346 The Beautiful and Damned ... 46.000000\n", "2347 The Monsters of Templeton ... 35.000000\n", "2348 The Fall of the House of Usher ... 30.000000\n", "2349 Happily Ever After (The Selection, #0.4, 0.5, ... ... 40.000000\n", "2350 Wide Sargasso Sea ... 35.000000\n", "2351 Pastoralia ... 31.000000\n", "2352 Running Out of Time ... 28.000000\n", "2353 Tiger's Voyage (The Tiger Saga, #3) ... 39.000000\n", "2354 Zoo ... 40.000000\n", "2355 The Prisoner of Zenda ... 42.000000\n", "2356 The Red Tent ... 33.000000\n", "2357 Moon Palace ... 33.000000\n", "2358 The Girl in the Steel Corset (Steampunk Chroni... ... 24.000000\n", "2359 Wildest Dreams (Fantasyland, #1) ... 33.000000\n", "2360 For One More Day ... 44.000000\n", "2361 Crewel (Crewel World, #1) ... 32.000000\n", "2362 Othello ... 37.000000\n", "2363 Hero ... 29.000000\n", "2364 An Artist of the Floating World ... 35.000000\n", "2365 Blood Cross (Jane Yellowrock, #2) ... 31.000000\n", "2366 This Side of Paradise ... 45.000000\n", "2367 Kiss the Dead (Anita Blake, Vampire Hunter #21) ... 32.000000\n", "2368 The Electric Kool-Aid Acid Test ... 29.000000\n", "2369 The Fountains of Paradise ... 38.000000\n", "2370 Norse Mythology ... 36.000000\n", "2371 The Van Alen Legacy (Blue Bloods, #4) ... 35.000000\n", "2372 Path of Destruction (Star Wars: Darth Bane, #1) ... 44.000000\n", "2373 Glamorama ... 34.000000\n", "2374 The Ruby Circle (Bloodlines, #6) ... 36.000000\n", "2375 Percy Jackson and the Olympians Boxed Set (Per... ... 39.000000\n", "2376 Kim ... 40.000000\n", "2377 The Man Who Was Thursday: A Nightmare ... 39.000000\n", "2378 Tiger's Curse (The Tiger Saga, #1) ... 45.000000\n", "2379 The Moor's Last Sigh ... 35.000000\n", "2380 City of the Beasts (Eagle and Jaguar, #1) ... 39.000000\n", "2381 Story of the Eye ... 32.000000\n", "2382 Book of a Thousand Days ... 35.000000\n", "2383 Carrion Comfort ... 41.000000\n", "2384 The Little Sisters of Eluria (The Dark Tower, ... ... 31.000000\n", "2385 The Talisman (The Talisman, #1) ... 48.000000\n", "2386 Dead Poets Society ... 38.000000\n", "2387 Shadowland (The Immortals, #3) ... 37.000000\n", "2388 The World of Divergent: The Path to Allegiant ... ... 31.000000\n", "2389 Charlie and the Great Glass Elevator (Charlie ... ... 43.000000\n", "2390 The Yiddish Policemen's Union ... 26.000000\n", "2391 In The Afterlight (The Darkest Minds, #3) ... 40.000000\n", "2392 Cosmicomics ... 33.000000\n", "2393 Blackout (All Clear, #1) ... 41.000000\n", "2394 Deadeye Dick ... 36.000000\n", "2395 Jonathan Livingston Seagull ... 43.000000\n", "2396 The Old Man and the Sea ... 44.000000\n", "2397 The Body Finder (The Body Finder, #1) ... 31.000000\n", "2398 Blue Moon (The Immortals, #2) ... 34.000000\n", "2399 Skin ... 42.000000\n", "2400 Invitation to a Beheading ... 41.000000\n", "2401 The Longest Ride ... 43.000000\n", "2402 Revolutionary Road ... 46.000000\n", "2403 Bel Canto ... 39.000000\n", "2404 Rot & Ruin (Rot & Ruin, #1) ... 39.000000\n", "2405 The Rest of Us Just Live Here ... 32.000000\n", "2406 How to Train Your Dragon (How to Train Your Dr... ... 39.000000\n", "2407 Swan Song ... 42.000000\n", "2408 True Grit ... 45.000000\n", "2409 Under the Never Sky (Under the Never Sky, #1) ... 38.000000\n", "2410 Night World, No. 3 (Night World, #7-9) ... 38.000000\n", "2411 The Stranger ... 23.500000\n", "2412 The Stranger ... 23.500000\n", "2413 Love Story (Love Story, #1) ... 38.000000\n", "2414 A Moveable Feast ... 36.000000\n", "2415 The Secret Garden ... 46.000000\n", "2416 Dead Souls ... 34.000000\n", "2417 The Jungle Book ... 46.000000\n", "2418 Carpe Corpus (The Morganville Vampires, #6) ... 38.000000\n", "2419 Mine to Possess (Psy-Changeling #4) ... 34.000000\n", "2420 Absalom, Absalom! ... 39.000000\n", "2421 Jessica's Guide to Dating on the Dark Side (Je... ... 34.000000\n", "2422 Endless Knight (The Arcana Chronicles, #2) ... 39.000000\n", "2423 The Son of Sobek (Percy Jackson & Kane Chronic... ... 29.000000\n", "2424 Blood Noir (Anita Blake, Vampire Hunter #16) ... 29.000000\n", "2425 California ... 33.000000\n", "2426 Damned (Damned, #1) ... 43.000000\n", "2427 Girlfriend in a Coma ... 39.000000\n", "2428 Naïve. Super ... 35.000000\n", "2429 The Lost Prince (The Iron Fey: Call of the For... ... 31.000000\n", "2430 Revelations (Blue Bloods, #3) ... 35.000000\n", "2431 The Haunted (The Hollow, #2) ... 33.000000\n", "2432 Landline ... 39.000000\n", "2433 Bruiser ... 31.000000\n", "2434 Surfacing ... 35.000000\n", "2435 Shadow Souls (The Vampire Diaries: The Return,... ... 41.000000\n", "2436 Dorothy Must Die (Dorothy Must Die, #1) ... 38.000000\n", "2437 Taken at Dusk (Shadow Falls, #3) ... 35.000000\n", "2438 Excavation ... 38.000000\n", "2439 The Case of Charles Dexter Ward ... 37.000000\n", "2440 The Lovely Bones ... 44.000000\n", "2441 The Inimitable Jeeves (Jeeves, #2) ... 40.000000\n", "2442 The Strange Library ... 31.000000\n", "2443 Frostbitten (Women of the Otherworld, #10) ... 35.000000\n", "2444 The Poisonwood Bible ... 43.000000\n", "2445 Summer of Night ... 37.000000\n", "2446 The Pale Horseman (The Saxon Stories, #2) ... 38.000000\n", "2447 The Retribution of Mara Dyer (Mara Dyer, #3) ... 33.000000\n", "2448 White Fang ... 45.000000\n", "2449 The Hunger Games Tribute Guide ... 34.000000\n", "2450 Delta of Venus ... 38.000000\n", "2451 Of Triton (The Syrena Legacy, #2) ... 36.000000\n", "2452 Altered (Altered, #1) ... 36.000000\n", "2453 The Harlequin (Anita Blake, Vampire Hunter #15) ... 29.000000\n", "2454 The Soulkeepers (The Soulkeepers, #1) ... 30.000000\n", "2455 Islands in the Stream ... 42.000000\n", "2456 Grasshopper Jungle ... 26.000000\n", "2457 One Foot in the Grave (Night Huntress, #2) ... 39.000000\n", "2458 The Merry Adventures of Robin Hood ... 43.000000\n", "2459 City of Heavenly Fire (The Mortal Instruments,... ... 41.000000\n", "2460 Quo Vadis ... 34.000000\n", "2461 The Doors of Perception & Heaven and Hell ... 40.000000\n", "2462 Unless ... 26.000000\n", "2463 This Book Is Not Good for You (Secret, #3) ... 39.000000\n", "2464 The World of the Hunger Games (Hunger Games Tr... ... 33.000000\n", "2465 The Assassin and the Underworld (Throne of Gla... ... 31.000000\n", "2466 The Shock of the Fall ... 38.000000\n", "2467 The Idiot ... 41.000000\n", "2468 Skin Trade (Anita Blake, Vampire Hunter #17) ... 30.000000\n", "2469 A Short History of Tractors in Ukrainian ... 34.000000\n", "2470 The Dead-Tossed Waves (The Forest of Hands and... ... 35.000000\n", "2471 Peter and the Secret of Rundoon (Peter and the... ... 40.000000\n", "2472 Salmon Fishing in the Yemen ... 38.000000\n", "2473 Serafina and the Black Cloak (Serafina, #1) ... 28.000000\n", "2474 The Traitor (Divergent, #0.4) ... 32.000000\n", "2475 The Three (The Three, #1) ... 39.000000\n", "2476 Torment (Fallen, #2) ... 40.000000\n", "2477 The Assassin and the Empire (Throne of Glass, ... ... 31.000000\n", "2478 The Morganville Vampires, Volume 1 (The Morgan... ... 30.000000\n", "2479 Savvy (Savvy, #1) ... 30.000000\n", "2480 Noughts & Crosses (Noughts & Crosses, #1) ... 40.000000\n", "2481 La Mécanique du cœur ... 42.000000\n", "2482 UnWholly (Unwind, #2) ... 37.000000\n", "2483 Invisible ... 19.000000\n", "2484 Invisible ... 19.000000\n", "2485 The Bridges of Madison County ... 42.000000\n", "2486 Silver Shadows (Bloodlines, #5) ... 35.000000\n", "2487 Super Sad True Love Story ... 34.000000\n", "2488 Fingersmith ... 36.000000\n", "2489 Skinwalker (Jane Yellowrock, #1) ... 35.000000\n", "2490 Ella Minnow Pea: A Novel in Letters ... 34.000000\n", "2491 Sword Song (The Saxon Stories, #4) ... 40.000000\n", "2492 Inside Out (Insider, #1) ... 33.000000\n", "2493 Spider's Bite (Elemental Assassin, #1) ... 34.000000\n", "2494 The Joke ... 32.000000\n", "2495 The Faerie Queene ... 29.000000\n", "2496 Nausea ... 38.000000\n", "2497 Thorn Queen (Dark Swan, #2) ... 36.000000\n", "2498 The Double ... 36.000000\n", "2499 Cruel Beauty (Cruel Beauty Universe, #1) ... 32.000000\n", "2500 Lockdown (Escape from Furnace, #1) ... 38.000000\n", "2501 The Woman in White ... 40.000000\n", "2502 The Physick Book of Deliverance Dane ... 31.000000\n", "2503 Alias Grace ... 40.000000\n", "2504 Aftermath (Star Wars: Aftermath, #1) ... 40.000000\n", "2505 Pinocchio ... 19.000000\n", "2506 Pinocchio ... 19.000000\n", "2507 Letters to a Young Poet ... 37.000000\n", "2508 Don't Breathe a Word ... 33.000000\n", "2509 Drop City ... 33.000000\n", "2510 The Green Mile ... 50.000000\n", "2511 Never Fade (The Darkest Minds, #2) ... 41.000000\n", "2512 We the Living ... 43.000000\n", "2513 Forever Odd (Odd Thomas, #2) ... 37.000000\n", "2514 The Lord of the Rings Sketchbook ... 29.000000\n", "2515 Wisdom (My Blood Approves, #4) ... 31.000000\n", "2516 Fairest ... 37.000000\n", "2517 Here be Dragons (Welsh Princes, #1) ... 40.000000\n", "2518 Day 21 (The 100, #2) ... 37.000000\n", "2519 The Phantom of the Opera ... 45.000000\n", "2520 The Secret Life of Bees ... 42.000000\n", "2521 The Last Kingdom (The Saxon Stories, #1) ... 41.000000\n", "2522 The Declaration (The Declaration, #1) ... 36.000000\n", "2523 Double Star ... 40.000000\n", "2524 Subterranean ... 38.000000\n", "2525 Chocolat (Chocolat, #1) ... 43.000000\n", "2526 Lady Midnight (The Dark Artifices, #1) ... 37.000000\n", "2527 The Maze of Bones (The 39 Clues, #1) ... 35.000000\n", "2528 Perfect Match ... 41.000000\n", "2529 The Complete Sherlock Holmes, Vol 2 ... 44.000000\n", "2530 Cabal ... 36.000000\n", "2531 Stoner ... 39.000000\n", "2532 Suite Française ... 35.000000\n", "2533 Night World, No. 2 (Night World, #4-6) ... 38.000000\n", "2534 The Improbable Adventures of Sherlock Holmes ... 32.000000\n", "2535 If I Stay (If I Stay, #1) ... 40.000000\n", "2536 The Iliad ... 42.000000\n", "2537 Waiting for Godot ... 34.000000\n", "2538 Pale Fire ... 37.000000\n", "2539 Shakespeare's Romeo and Juliet ... 20.000000\n", "2540 Starter for Ten ... 41.000000\n", "2541 City of Glass (The New York Trilogy, #1) ... 33.000000\n", "2542 Vampire Academy Collection (Vampire Academy, #... ... 33.000000\n", "2543 Spark (Elemental, #2) ... 32.000000\n", "2544 Numbers (Numbers, #1) ... 37.000000\n", "2545 The Gathering (Darkness Rising, #1) ... 35.000000\n", "2546 Feverborn (Fever, #8) ... 29.000000\n", "2547 Among the Betrayed (Shadow Children, #3) ... 29.000000\n", "2548 Misguided Angel (Blue Bloods, #5) ... 35.000000\n", "2549 The God of Small Things ... 38.000000\n", "2550 Harry Potter: Film Wizardry ... 39.000000\n", "2551 The Corrections ... 41.000000\n", "2552 The Dead of Night (Tomorrow, #2) ... 42.000000\n", "2553 Life After Life ... 41.000000\n", "2554 I Am the Messenger ... 46.000000\n", "2555 The Call of the Wild, White Fang and Other Sto... ... 35.000000\n", "2556 The Elementary Particles ... 32.000000\n", "2557 Halfway to the Grave (Night Huntress, #1) ... 36.000000\n", "2558 The Crimson Petal and the White ... 42.000000\n", "2559 Invisible Man ... 39.000000\n", "2560 The Joy Luck Club ... 38.000000\n", "2561 Fade Out (The Morganville Vampires, #7) ... 37.000000\n", "2562 The Mysterious Benedict Society and the Prison... ... 40.000000\n", "2563 The Human Stain (The American Trilogy, #3) ... 35.000000\n", "2564 Like Water for Chocolate ... 37.000000\n", "2565 Rapture (Fallen, #4) ... 39.000000\n", "2566 The New York Trilogy ... 37.000000\n", "2567 Tropic of Cancer ... 37.000000\n", "2568 Henry V ... 35.000000\n", "2569 The Chronicles of Narnia - The Lion, the Witch... ... 20.000000\n", "2570 Once Upon a Marigold (Upon a Marigold, #1) ... 36.000000\n", "2571 King Henry IV, Part 1 (Wars of the Roses, #2) ... 33.000000\n", "2572 Love, Rosie ... 46.000000\n", "2573 Dear John ... 45.000000\n", "2574 The Pledge (The Pledge, #1) ... 32.000000\n", "2575 The Winner's Kiss (The Winner's Trilogy, #3) ... 35.000000\n", "2576 A Thousand Splendid Suns ... 44.000000\n", "2577 Unraveling (Unraveling, #1) ... 34.000000\n", "2578 The Prime of Miss Jean Brodie ... 35.000000\n", "2579 Money ... 37.000000\n", "2580 One Day in the Life of Ivan Denisovich ... 34.000000\n", "2581 Through the Ever Night (Under the Never Sky, #2) ... 37.000000\n", "2582 Divine Secrets of the Ya-Ya Sisterhood ... 37.000000\n", "2583 The Shining Girls ... 34.000000\n", "2584 Charlotte's Web ... 35.000000\n", "2585 The Damnation Game ... 37.000000\n", "2586 The Crown (The Selection, #5) ... 34.000000\n", "2587 Valhalla Rising (Dirk Pitt, #16) ... 32.000000\n", "2588 Choke ... 36.000000\n", "2589 Wicked (A Wicked Saga, #1) ... 34.000000\n", "2590 Tortilla Flat ... 40.000000\n", "2591 Absent In The Spring ... 31.000000\n", "2592 Blackwood Farm (The Vampire Chronicles, #9) ... 35.000000\n", "2593 Among the Hidden (Shadow Children, #1) ... 28.000000\n", "2594 Paradise Lost ... 40.000000\n", "2595 The Rising (Darkness Rising, #3) ... 33.000000\n", "2596 The Book of Disquiet ... 34.000000\n", "2597 Watchers ... 43.000000\n", "2598 The Land of Painted Caves (Earth's Children, #6) ... 39.000000\n", "2599 Death of a Salesman ... 32.000000\n", "2600 Specter of the Past (Star Wars: The Hand of Th... ... 42.000000\n", "2601 Richard III ... 37.000000\n", "2602 At Grave's End (Night Huntress, #3) ... 37.000000\n", "2603 The Boy in the Striped Pajamas ... 45.000000\n", "2604 Sun and Moon, Ice and Snow ... 30.000000\n", "2605 Cry to Heaven ... 37.000000\n", "2606 The Snows of Kilimanjaro and Other Stories ... 35.000000\n", "2607 Franz Kafka's The Castle (Dramatization) ... 28.000000\n", "2608 The Egg ... 29.000000\n", "2609 New Moon: The Complete Illustrated Movie Compa... ... 31.000000\n", "2610 The Fairy-Tale Detectives (The Sisters Grimm, #1) ... 34.000000\n", "2611 The Son (Divergent, #0.3) ... 33.000000\n", "2612 Eclipse: The Complete Illustrated Movie Compan... ... 30.000000\n", "2613 Coraline (Illustrated/Graphic Novel Edition) ... 31.000000\n", "2614 The Five People You Meet in Heaven ... 28.000000\n", "2615 The Lottery and Other Stories ... 34.000000\n", "2616 Partials (Partials Sequence, #1) ... 34.000000\n", "2617 Giovanni's Room ... 36.000000\n", "2618 A Countess Below Stairs ... 40.000000\n", "2619 Austerlitz ... 31.000000\n", "2620 The Bad Beginning (A Series of Unfortunate Eve... ... 43.000000\n", "2621 Tiger's Destiny (The Tiger Saga, #4) ... 36.000000\n", "2622 Altar of Eden ... 31.000000\n", "2623 Tiger Lily ... 36.000000\n", "2624 The Enchanted Wood (The Faraway Tree, #1) ... 36.000000\n", "2625 Daisy Miller ... 31.000000\n", "2626 Wise Blood ... 38.000000\n", "2627 Vanish (Firelight, #2) ... 37.000000\n", "2628 Valley of the Dolls ... 34.000000\n", "2629 The Winter of Our Discontent ... 38.000000\n", "2630 Doctor Sleep (The Shining, #2) ... 41.000000\n", "2631 Stone Cold Touch (The Dark Elements, #2) ... 35.000000\n", "2632 Shoeless Joe ... 39.000000\n", "2633 Tuesdays with Morrie ... 41.000000\n", "2634 The Dead Girls' Dance (The Morganville Vampire... ... 37.000000\n", "2635 Manuscript Found in Accra ... 42.000000\n", "2636 The Fall of the House of Usher and Other Tales ... 31.000000\n", "2637 Fall of Giants (The Century Trilogy, #1) ... 44.000000\n", "2638 The Selection Stories: The Prince & The Guard ... ... 39.000000\n", "2639 Lucinda's Secret (The Spiderwick Chronicles, #3) ... 24.000000\n", "2640 Half of a Yellow Sun ... 36.000000\n", "2641 Some Girls Bite (Chicagoland Vampires, #1) ... 36.000000\n", "2642 Notes from Underground, White Nights, The Drea... ... 36.000000\n", "2643 Friday Night Bites (Chicagoland Vampires, #2) ... 36.000000\n", "2644 Prized (Birthmarked, #2) ... 33.000000\n", "2645 Homo Faber ... 31.000000\n", "2646 The Ruins ... 42.000000\n", "2647 Ethan Frome and Other Short Fiction ... 23.000000\n", "2648 Deep Fathom ... 34.000000\n", "2649 Rebel Belle (Rebel Belle, #1) ... 34.000000\n", "2650 The Golden Notebook ... 40.000000\n", "2651 The Magic Mountain ... 34.000000\n", "2652 Rise of the Governor (The Walking Dead #1) ... 39.000000\n", "2653 Underworld (Abandon, #2) ... 29.000000\n", "2654 The Lady of the Rivers (The Plantagenet and Tu... ... 41.000000\n", "2655 Their Eyes Were Watching God ... 40.000000\n", "2656 The Unbecoming of Mara Dyer (Mara Dyer, #1) ... 34.000000\n", "2657 Brother Odd (Odd Thomas, #3) ... 38.000000\n", "2658 Percy Jackson's Greek Gods (A Percy Jackson an... ... 41.000000\n", "2659 Sir Gawain and the Green Knight ... 38.000000\n", "2660 Touch of Frost (Mythos Academy, #1) ... 35.000000\n", "2661 Babbitt ... 36.000000\n", "2662 The Art of War ... 34.000000\n", "2663 The Evolution of Mara Dyer (Mara Dyer, #2) ... 39.000000\n", "2664 Gateway (Heechee Saga, #1) ... 41.000000\n", "2665 The Black Arrow ... 42.000000\n", "2666 Destined for an Early Grave (Night Huntress, #4) ... 38.000000\n", "2667 As I Lay Dying ... 36.000000\n", "2668 The Things They Carried ... 39.000000\n", "2669 Heartless ... 36.000000\n", "2670 Venom (Elemental Assassin, #3) ... 33.000000\n", "2671 The Dark Tower: The Gunslinger Born ... 36.000000\n", "2672 Runaway (Airhead, #3) ... 39.000000\n", "2673 The Importance of Being Earnest ... 40.000000\n", "2674 Blood Canticle (The Vampire Chronicles, #10) ... 33.000000\n", "2675 My Soul to Take (Soul Screamers, #1) ... 34.000000\n", "2676 Independent Study (The Testing, #2) ... 34.000000\n", "2677 Libra ... 35.000000\n", "2678 Passion (Fallen, #3) ... 38.000000\n", "2679 The Old Curiosity Shop ... 40.000000\n", "2680 Significance (Significance, #1) ... 32.000000\n", "2681 Tipping the Velvet ... 34.000000\n", "2682 The Girl Who Loved Tom Gordon ... 33.000000\n", "2683 The Talented Mr. Ripley (Ripley, #1) ... 38.000000\n", "2684 Styxx (Dark-Hunter, #22) ... 42.000000\n", "2685 Beastly (Beastly, #1; Kendra Chronicles, #1) ... 38.000000\n", "2686 Awake at Dawn (Shadow Falls, #2) ... 35.000000\n", "2687 Villa Incognito ... 33.000000\n", "2688 Baltasar and Blimunda ... 34.000000\n", "2689 The Immortal Rules (Blood of Eden, #1) ... 37.000000\n", "2690 Paris ... 40.000000\n", "2691 Delirium (Delirium, #1) ... 38.000000\n", "2692 Branded by Fire (Psy-Changeling #6) ... 32.000000\n", "2693 Magic Binds (Kate Daniels, #9) ... 27.000000\n", "2694 Flutter (My Blood Approves, #3) ... 28.000000\n", "2695 Julius Caesar ... 36.000000\n", "2696 The Wicked Will Rise (Dorothy Must Die, #2) ... 37.000000\n", "2697 Zorba the Greek ... 43.000000\n", "2698 A Killing Frost (Tomorrow, #3) ... 41.000000\n", "2699 Wither (The Chemical Garden, #1) ... 37.000000\n", "2700 Wolf in White Van ... 36.000000\n", "2701 Looking for Alaska ... 44.000000\n", "2702 Unravel Me (Shatter Me, #2) ... 42.000000\n", "2703 Predestined (Existence Trilogy, #2) ... 33.000000\n", "2704 The Fire (Witch & Wizard, #3) ... 35.000000\n", "2705 Dark Reunion (The Vampire Diaries, #4) ... 38.000000\n", "2706 The Testing (The Testing, #1) ... 35.000000\n", "2707 Knife Edge (Noughts & Crosses, #2) ... 34.000000\n", "2708 Saint Odd (Odd Thomas, #7) ... 34.000000\n", "2709 Among the Brave (Shadow Children, #5) ... 32.000000\n", "2710 Jamaica Inn ... 40.000000\n", "2711 Saint (Paradise, #2) ... 36.000000\n", "2712 Extremely Loud and Incredibly Close ... 47.000000\n", "2713 Princess of the Midnight Ball (The Princesses ... ... 32.000000\n", "2714 Falling Man ... 32.000000\n", "2715 The Witches ... 41.000000\n", "2716 The Gargoyle ... 40.000000\n", "2717 Undead and Unwed (Undead, #1) ... 34.000000\n", "2718 Love Medicine ... 29.000000\n", "2719 S. ... 36.000000\n", "2720 Chess Story ... 33.000000\n", "2721 Exodus ... 41.000000\n", "2722 The Bane Chronicles ... 38.000000\n", "2723 If You're Reading This, It's Too Late (Secret,... ... 42.000000\n", "2724 Scarlett ... 44.000000\n", "2725 Pirate Latitudes ... 37.000000\n", "2726 Everlasting (The Immortals, #6) ... 32.000000\n", "2727 One Second After (After, #1) ... 39.000000\n", "2728 A Blaze of Sun (A Shade of Vampire, #5) ... 30.000000\n", "2729 The Bookseller ... 32.000000\n", "2730 Dark Witch (The Cousins O'Dwyer Trilogy, #1) ... 34.000000\n", "2731 The Other Side of Dawn (Tomorrow, #7) ... 40.000000\n", "2732 Winter Solstice ... 36.000000\n", "2733 Odd Hours (Odd Thomas, #4) ... 36.000000\n", "2734 The Complete Works ... 36.000000\n", "2735 Notes from Underground ... 41.000000\n", "2736 The Iliad/The Odyssey ... 38.000000\n", "2737 Utopia ... 40.000000\n", "2738 Rita Hayworth and Shawshank Redemption: A Stor... ... 36.000000\n", "2739 Fortunately, the Milk ... 32.000000\n", "2740 Touch the Dark (Cassandra Palmer, #1) ... 34.000000\n", "2741 Ghost Town (The Morganville Vampires, #9) ... 36.000000\n", "2742 What I Loved ... 25.000000\n", "2743 Starcrossed (Starcrossed, #1) ... 29.000000\n", "2744 Teardrop (Teardrop, #1) ... 37.000000\n", "2745 House of Sand and Fog ... 38.000000\n", "2746 Slated (Slated, #1) ... 32.000000\n", "2747 Rosencrantz and Guildenstern Are Dead ... 35.000000\n", "2748 Among the Enemy (Shadow Children, #6) ... 33.000000\n", "2749 The Lucky One ... 42.000000\n", "2750 Paranormalcy (Paranormalcy, #1) ... 32.000000\n", "2751 Princess of Glass (The Princesses of Westfalin... ... 33.000000\n", "2752 Tenth Grade Bleeds (The Chronicles of Vladimir... ... 32.000000\n", "2753 The Night Is for Hunting (Tomorrow, #6) ... 41.000000\n", "2754 Glass Houses (The Morganville Vampires, #1) ... 35.000000\n", "2755 Darkness, Be My Friend (Tomorrow, #4) ... 41.000000\n", "2756 Ender's Game, Volume 2: Command School ... 21.000000\n", "2757 Airhead (Airhead, #1) ... 37.000000\n", "2758 Twice Bitten (Chicagoland Vampires, #3) ... 33.000000\n", "2759 God Bless You, Dr. Kevorkian ... 35.000000\n", "2760 Book of Shadows (Sweep, #1) ... 24.000000\n", "2761 Being Nikki (Airhead, #2) ... 38.000000\n", "2762 Night (The Night Trilogy #1) ... 42.000000\n", "2763 Sweet Peril (Sweet, #2) ... 36.000000\n", "2764 White Hot Kiss (The Dark Elements, #1) ... 35.000000\n", "2765 The Sugar Queen ... 38.000000\n", "2766 Angels & Demons (Robert Langdon, #1) ... 47.000000\n", "2767 Of Poseidon (The Syrena Legacy, #1) ... 34.000000\n", "2768 Terms of Endearment ... 29.000000\n", "2769 The Crucible ... 32.000000\n", "2770 The Horse Whisperer ... 40.000000\n", "2771 Dubliners ... 45.000000\n", "2772 Harry Potter: A Pop-Up Book: Based on the Film... ... 20.000000\n", "2773 Blood Magick (The Cousins O'Dwyer Trilogy, #3) ... 32.000000\n", "2774 Heretic (The Grail Quest, #3) ... 38.000000\n", "2775 Story of O (Story of O #1) ... 32.000000\n", "2776 Mary Poppins (Mary Poppins, #1) ... 43.000000\n", "2777 Go Ask Alice ... 40.000000\n", "2778 A Monster Calls ... 33.000000\n", "2779 The Dresden Files: Storm Front, Volume 1- Th... ... 23.000000\n", "2780 Hallowed (Unearthly, #2) ... 33.000000\n", "2781 The Devil's Arithmetic ... 32.000000\n", "2782 The Tail of Emily Windsnap (Emily Windsnap, #1) ... 31.000000\n", "2783 A Little Princess ... 43.000000\n", "2784 The Angel's Game (The Cemetery of Forgotten Bo... ... 39.000000\n", "2785 Complete Works of Oscar Wilde ... 38.000000\n", "2786 Showdown (Paradise, #1) ... 39.000000\n", "2787 The Island ... 20.500000\n", "2788 The Island ... 20.500000\n", "2789 The Notebook (The Notebook, #1) ... 46.000000\n", "2790 Revival ... 41.000000\n", "2791 Once a Runner ... 42.000000\n", "2792 Ignorance ... 30.000000\n", "2793 Awakened (House of Night, #8) ... 33.000000\n", "2794 Bambi ... 19.000000\n", "2795 Bambi ... 19.000000\n", "2796 Rich Man, Poor Man ... 36.000000\n", "2797 The Call of the Wild/White Fang ... 38.000000\n", "2798 Pivot Point (Pivot Point, #1) ... 30.000000\n", "2799 Anna Dressed in Blood (Anna, #1) ... 35.000000\n", "2800 Acheron (Dark-Hunter #14) ... 38.000000\n", "2801 The Elegance of the Hedgehog ... 28.000000\n", "2802 Les Liaisons dangereuses ... 37.000000\n", "2803 The Space Between (Outlander, #7.5) ... 29.000000\n", "2804 Reboot (Reboot, #1) ... 34.000000\n", "2805 Hunger ... 30.000000\n", "2806 Grave Dance (Alex Craft, #2) ... 30.000000\n", "2807 A Castle of Sand (A Shade of Vampire, #3) ... 29.000000\n", "2808 Tales From the Hood (The Sisters Grimm, #6) ... 36.000000\n", "2809 What's Eating Gilbert Grape ... 35.000000\n", "2810 Desires of the Dead (The Body Finder, #2) ... 31.000000\n", "2811 Harry Potter and the Chamber of Secrets: Sheet... ... 21.000000\n", "2812 Kiss of Death (The Morganville Vampires, #8) ... 37.000000\n", "2813 The Uplift War (The Uplift Saga, #3) ... 35.000000\n", "2814 The White Queen (The Plantagenet and Tudor Nov... ... 41.000000\n", "2815 About a Boy ... 40.000000\n", "2816 Pygmalion ... 35.000000\n", "2817 Beautiful You ... 38.000000\n", "2818 Dream Chaser (Dark-Hunter #13, Dream-Hunter #3) ... 35.000000\n", "2819 A Handful of Dust ... 34.000000\n", "2820 The Dharma Bums ... 39.000000\n", "2821 A Midsummer Night's Dream ... 43.000000\n", "2822 The Power of One (The Power of One, #1) ... 46.000000\n", "2823 Fragments (Partials Sequence, #2) ... 39.000000\n", "2824 Whispers at Moonrise (Shadow Falls, #4) ... 33.000000\n", "2825 Girl Online (Girl Online, #1) ... 37.000000\n", "2826 Ark Angel (Alex Rider, #6) ... 39.000000\n", "2827 The Metamorphosis and Other Stories ... 43.000000\n", "2828 A Series of Unfortunate Events Box: The Comple... ... 38.000000\n", "2829 Snakehead (Alex Rider, #7) ... 41.000000\n", "2830 Archangel's Kiss (Guild Hunter, #2) ... 38.000000\n", "2831 Bite Club (The Morganville Vampires, #10) ... 36.000000\n", "2832 UnSouled (Unwind, #3) ... 38.000000\n", "2833 Vampire Academy: The Ultimate Guide (Vampire A... ... 33.000000\n", "2834 One Silent Night (Dark-Hunter #15) ... 32.000000\n", "2835 Death in Venice ... 35.000000\n", "2836 I Am the Cheese ... 33.000000\n", "2837 Firelight (Firelight, #1) ... 36.000000\n", "2838 Incarnate (Newsoul, #1) ... 33.000000\n", "2839 Journey to the End of the Night ... 29.000000\n", "2840 Last Breath (The Morganville Vampires, #11) ... 38.000000\n", "2841 Crossed (Matched, #2) ... 38.000000\n", "2842 A Streetcar Named Desire ... 32.000000\n", "2843 Smilla's Sense of Snow ... 32.000000\n", "2844 Bridget Jones's Diary (Bridget Jones, #1) ... 44.000000\n", "2845 Monument 14 (Monument 14, #1) ... 36.000000\n", "2846 The Remains of the Day ... 45.000000\n", "2847 Black Swan Green ... 41.000000\n", "2848 The Hollow (The Hollow, #1) ... 34.000000\n", "2849 King Rat (Asian Saga, #4) ... 44.000000\n", "2850 Hidden (Firelight, #3) ... 36.000000\n", "2851 The Temple of My Familiar ... 35.000000\n", "2852 The Miniaturist ... 39.000000\n", "2853 Birthmarked (Birthmarked, #1) ... 32.000000\n", "2854 Airframe ... 38.000000\n", "2855 Seabiscuit: An American Legend ... 36.000000\n", "2856 The Demigod Diaries ... 37.000000\n", "2857 The Maltese Falcon ... 40.000000\n", "2858 Alice in Zombieland (White Rabbit Chronicles, #1) ... 37.000000\n", "2859 Mrs. Frisby and the Rats of NIMH (Rats of NIMH... ... 34.000000\n", "2860 Tomorrow, When the War Began (Tomorrow, #1) ... 41.000000\n", "2861 Boy's Life ... 38.000000\n", "2862 The Age of Innocence ... 41.000000\n", "2863 Sister Carrie ... 32.000000\n", "2864 Bones of the Hills (Conqueror, #3) ... 34.000000\n", "2865 The Bean Trees (Greer Family, #1) ... 44.000000\n", "2866 Bullet (Anita Blake, Vampire Hunter #19) ... 29.000000\n", "2867 Another Roadside Attraction ... 39.000000\n", "2868 Fierce Invalids Home from Hot Climates ... 39.000000\n", "2869 The Heir (The Selection, #4) ... 35.000000\n", "2870 The Prince of Mist (Niebla, #1) ... 39.000000\n", "2871 Leaves of Grass ... 34.000000\n", "2872 Free Four: Tobias Tells the Divergent Knife-Th... ... 30.000000\n", "2873 Inferno (Robert Langdon, #4) ... 43.000000\n", "2874 The Shadowhunter's Codex ... 34.000000\n", "2875 The Autumn of the Patriarch ... 33.000000\n", "2876 Lord Loss (The Demonata, #1) ... 38.000000\n", "2877 Prodigal Son (Dean Koontz's Frankenstein, #1) ... 36.000000\n", "2878 Eagle Strike (Alex Rider, #4) ... 41.000000\n", "2879 My Ántonia ... 42.000000\n", "2880 The Dark Highlander (Highlander, #5) ... 35.000000\n", "2881 Ceaseless (Existence Trilogy, #3) ... 30.000000\n", "2882 Lullaby ... 38.000000\n", "2883 The Fault in Our Stars ... 41.000000\n", "2884 Revolution ... 35.000000\n", "2885 Any Human Heart ... 38.000000\n", "2886 First Frost (Waverley Family, #2) ... 27.000000\n", "2887 Waiting for the Barbarians ... 34.000000\n", "2888 The Lover ... 32.000000\n", "2889 Safe Haven ... 41.000000\n", "2890 Vampire Kisses: The Beginning (Vampire Kisses,... ... 32.000000\n", "2891 Lost in Time (Blue Bloods, #6) ... 32.000000\n", "2892 The Choice ... 41.000000\n", "2893 The Wedding (The Notebook, #2) ... 41.000000\n", "2894 Among the Barons (Shadow Children, #4) ... 31.000000\n", "2895 The Nose ... 30.000000\n", "2896 The Reluctant Fundamentalist ... 33.000000\n", "2897 H.I.V.E. Higher Institute of Villainous Educat... ... 33.000000\n", "2898 Eleventh Grade Burns (The Chronicles of Vladim... ... 35.000000\n", "2899 Shopgirl ... 38.000000\n", "2900 A Girl of the Limberlost (Limberlost, #2) ... 36.000000\n", "2901 Patient Zero (Joe Ledger, #1) ... 35.000000\n", "2902 Entwined ... 36.000000\n", "2903 Tinker, Tailor, Soldier, Spy ... 41.000000\n", "2904 Johnny Got His Gun ... 39.000000\n", "2905 Web of Lies (Elemental Assassin, #2) ... 35.000000\n", "2906 Girl of Nightmares (Anna, #2) ... 34.000000\n", "2907 This is Where I Leave You ... 35.000000\n", "2908 Deeply Odd (Odd Thomas, #6) ... 36.000000\n", "2909 Rogue Squadron (Star Wars: X-Wing, #1) ... 36.000000\n", "2910 Angelfall (Penryn & the End of Days, #1) ... 35.000000\n", "2911 Platform ... 27.000000\n", "2912 Stuart Little ... 32.000000\n", "2913 The Thin Man ... 36.000000\n", "2914 P.S. I Love You ... 45.000000\n", "2915 The Enchanted ... 33.000000\n", "2916 The 101 Dalmatians (The Hundred and One Dalmat... ... 42.000000\n", "2917 Silk ... 31.000000\n", "2918 After the Quake ... 31.000000\n", "2919 Chosen at Nightfall (Shadow Falls, #5) ... 32.000000\n", "2920 Forrest Gump (Forrest Gump, #1) ... 44.000000\n", "2921 The Oath ... 38.000000\n", "2922 Twelfth Grade Kills (The Chronicles of Vladimi... ... 36.000000\n", "2923 The Subterraneans ... 31.000000\n", "2924 The Comedy of Errors ... 35.000000\n", "2925 Day by Day Armageddon (Day by Day Armageddon,#1) ... 34.000000\n", "2926 My Cousin Rachel ... 40.000000\n", "2927 Passing ... 30.000000\n", "2928 The Best of Me ... 42.000000\n", "2929 UR ... 30.000000\n", "2930 Play It as It Lays ... 26.000000\n", "2931 Lorna Doone ... 41.000000\n", "2932 The Lord of the Rings: The Return of the King:... ... 23.000000\n", "2933 Dark Magic (Dark, #4) ... 36.000000\n", "2934 Caim ... 33.000000\n", "2935 Everbound (Everneath, #2) ... 29.000000\n", "2936 Little Children ... 38.000000\n", "2937 Sweet Reckoning (Sweet, #3) ... 34.000000\n", "2938 September ... 35.000000\n", "2939 Kitchen ... 33.000000\n", "2940 Enclave (Razorland, #1) ... 34.000000\n", "2941 Rebecca of Sunnybrook Farm ... 32.000000\n", "2942 Bite Me If You Can (Argeneau #6) ... 32.000000\n", "2943 Kissed by an Angel/The Power of Love/Soulmates... ... 39.000000\n", "2944 Heart of a Dog ... 40.000000\n", "2945 Destined (Wings, #4) ... 31.000000\n", "2946 Born at Midnight (Shadow Falls, #1) ... 35.000000\n", "2947 The Long Walk ... 42.000000\n", "2948 The Amazing Adventures of Kavalier & Clay ... 40.000000\n", "2949 Dreamless (Starcrossed, #2) ... 35.000000\n", "2950 London ... 38.000000\n", "2951 Cold Comfort Farm ... 38.000000\n", "2952 Howl and Other Poems ... 30.000000\n", "2953 Solar ... 32.000000\n", "2954 The History of Love ... 39.000000\n", "2955 Undead and Unemployed (Undead, #2) ... 29.000000\n", "2956 After (After, #1) ... 42.000000\n", "2957 And the Mountains Echoed ... 40.000000\n", "2958 A Game of Thrones: Comic Book, Issue 1 ... 28.000000\n", "2959 The Initiate (Divergent, #0.2) ... 31.000000\n", "2960 Amazonia ... 38.000000\n", "2961 The Blind Assassin ... 44.000000\n", "2962 The Mysteries of Pittsburgh ... 38.000000\n", "2963 Coming Home ... 39.000000\n", "2964 Stiff: The Curious Lives of Human Cadavers ... 30.000000\n", "2965 Carter Beats the Devil ... 34.000000\n", "2966 Half-Blood (Covenant, #1) ... 34.000000\n", "2967 State of Fear ... 37.000000\n", "2968 The Golden Dynasty (Fantasyland, #2) ... 32.000000\n", "2969 The Leopard ... 31.000000\n", "2970 First Shift: Legacy (Shift, #1) ... 30.000000\n", "2971 Our Man in Havana ... 37.000000\n", "2972 The Name of This Book Is Secret (Secret, #1) ... 40.000000\n", "2973 Gargantua and Pantagruel ... 31.000000\n", "2974 Christine ... 36.000000\n", "2975 Pygmalion and Three Other Plays ... 31.000000\n", "2976 After We Collided (After, #2) ... 41.000000\n", "2977 Jaws ... 40.000000\n", "2978 Ham on Rye ... 39.000000\n", "2979 Crossing to Safety ... 37.000000\n", "2980 Nightshade (Nightshade #1; Nightshade World #4) ... 34.000000\n", "2981 The Hotel New Hampshire ... 41.000000\n", "2982 The Book of Joe ... 34.000000\n", "2983 Unearthly (Unearthly, #1) ... 32.000000\n", "2984 Gentlemen of the Road ... 35.000000\n", "2985 Murder Must Advertise (Lord Peter Wimsey, #10) ... 35.000000\n", "2986 The Time of My Life ... 34.000000\n", "2987 The Naked and the Dead ... 28.000000\n", "2988 How I Live Now ... 35.000000\n", "2989 Nightfall (The Vampire Diaries: The Return, #1) ... 37.000000\n", "2990 Dark Flame (The Immortals, #4) ... 35.000000\n", "2991 Inescapable (The Premonition, #1) ... 34.000000\n", "2992 The Emperor's Code (The 39 Clues, #8) ... 32.000000\n", "2993 Aesop's Fables ... 32.000000\n", "2994 Succubus Heat (Georgina Kincaid, #4) ... 37.000000\n", "2995 Song of Solomon ... 34.000000\n", "2996 Herzog ... 28.000000\n", "2997 The Chosen ... 41.000000\n", "2998 Norwegian Wood ... 43.000000\n", "2999 The Hostile Hospital (A Series of Unfortunate ... ... 42.000000\n", "3000 The Queen (The Selection, #0.4) ... 30.000000\n", "3001 The Children's Book ... 37.000000\n", "3002 Ficciones ... 33.000000\n", "3003 The Nanny Diaries (Nanny, #1) ... 31.000000\n", "3004 The Sorrows of Young Werther ... 34.000000\n", "3005 Trust No One (The 39 Clues: Cahills vs. Vesper... ... 29.000000\n", "3006 Angel (Angel, #1) ... 36.000000\n", "3007 Broken Monsters ... 31.000000\n", "3008 Vision of the Future (Star Wars: The Hand of T... ... 37.000000\n", "3009 The Canterville Ghost ... 36.000000\n", "3010 Scorpia (Alex Rider, #5) ... 40.000000\n", "3011 The Garden of Eden ... 36.000000\n", "3012 Drink Deep (Chicagoland Vampires, #5) ... 31.000000\n", "3013 The Code of the Woosters (Jeeves, #7) ... 36.000000\n", "3014 White Oleander ... 43.000000\n", "3015 The Eternity Cure (Blood of Eden, #2) ... 38.000000\n", "3016 Heaven (Halo, #3) ... 33.000000\n", "3017 The Vile Village (A Series of Unfortunate Even... ... 42.000000\n", "3018 Ice Hunt ... 34.000000\n", "3019 Kiss of Frost (Mythos Academy, #2) ... 36.000000\n", "3020 Love Is a Dog from Hell ... 39.000000\n", "3021 Carrie / 'Salem's Lot / The Shining ... 20.000000\n", "3022 The Red and the Black ... 33.000000\n", "3023 Splintered (Splintered, #1) ... 39.000000\n", "3024 Origins (The Vampire Diaries: Stefan's Diaries... ... 33.000000\n", "3025 Thérèse Raquin ... 33.000000\n", "3026 I Am Not A Serial Killer (John Cleaver, #1) ... 38.000000\n", "3027 The Boys from Brazil ... 37.000000\n", "3028 The Pickwick Papers ... 38.000000\n", "3029 The Forgotten Garden ... 40.000000\n", "3030 A Gate at the Stairs ... 28.000000\n", "3031 Billy Budd, Sailor ... 29.000000\n", "3032 Housekeeping ... 40.000000\n", "3033 Fugitive Pieces ... 31.000000\n", "3034 Illusions: The Adventures of a Reluctant Messiah ... 39.000000\n", "3035 Stars Above (The Lunar Chronicles, #4.5) ... 31.000000\n", "3036 Sentinel (Covenant, #5) ... 33.000000\n", "3037 Ragtime ... 39.000000\n", "3038 Silence ... 31.000000\n", "3039 The Winter Sea (Slains, #1) ... 36.000000\n", "3040 The Children Act ... 32.000000\n", "3041 Everything That Rises Must Converge: Stories ... 32.000000\n", "3042 Twelfth Night ... 41.000000\n", "3043 Still Life with Woodpecker ... 40.000000\n", "3044 On the Prowl (Alpha & Omega, #0.5) ... 32.000000\n", "3045 Even Cowgirls Get the Blues ... 34.000000\n", "3046 The Archer's Tale (The Grail Quest, #1) ... 36.000000\n", "3047 Jealousy (Strange Angels, #3) ... 33.000000\n", "3048 Champion (Legend, #3) ... 39.000000\n", "3049 A Shade of Blood (A Shade of Vampire, #2) ... 28.000000\n", "3050 The Sleeper and the Spindle ... 36.000000\n", "3051 Stormbreaker (Alex Rider, #1) ... 39.000000\n", "3052 Demian. Die Geschichte von Emil Sinclairs Jugend ... 39.000000\n", "3053 Seize the Night (Dark-Hunter #6) ... 37.000000\n", "3054 Fate (My Blood Approves, #2) ... 27.000000\n", "3055 A Brief History of Time ... 39.000000\n", "3056 The Hellbound Heart ... 37.000000\n", "3057 A Single Man ... 38.000000\n", "3058 Paper Towns ... 35.000000\n", "3059 The Dark and Hollow Places (The Forest of Hand... ... 34.000000\n", "3060 Matilda ... 42.000000\n", "3061 Anne of the Island (Anne of Green Gables, #3) ... 44.000000\n", "3062 Fangirl ... 40.000000\n", "3063 Vampire Academy Box Set (Vampire Academy, #1-4) ... 23.000000\n", "3064 The Spy Who Came In from the Cold ... 40.000000\n", "3065 The Fury (The Vampire Diaries, #3) ... 38.000000\n", "3066 Birdsong ... 39.000000\n", "3067 A God in Ruins ... 37.000000\n", "3068 Daddy-Long-Legs (Daddy-Long-Legs, #1) ... 40.000000\n", "3069 Main Street ... 33.000000\n", "3070 Nights in Rodanthe ... 39.000000\n", "3071 Where She Went (If I Stay, #2) ... 38.000000\n", "3072 The Professor ... 40.000000\n", "3073 The Memoirs of Sherlock Holmes ... 34.000000\n", "3074 Accordance (Significance, #2) ... 31.000000\n", "3075 L'Écume des jours ... 34.000000\n", "3076 The First Phone Call from Heaven ... 37.000000\n", "3077 The Ersatz Elevator (A Series of Unfortunate E... ... 42.000000\n", "3078 It's Kind of a Funny Story ... 40.000000\n", "3079 The Postman Always Rings Twice ... 33.000000\n", "3080 When God Was a Rabbit ... 40.000000\n", "3081 Before I Fall ... 40.000000\n", "3082 Night Pleasures (Dark-Hunter, #1) ... 37.000000\n", "3083 Speak ... 38.000000\n", "3084 Bright Lights, Big City ... 35.000000\n", "3085 The Last Picture Show ... 36.000000\n", "3086 The Kreutzer Sonata ... 31.000000\n", "3087 Native Son ... 35.000000\n", "3088 Wicked Business (Lizzy & Diesel, #2) ... 33.000000\n", "3089 An American Tragedy ... 32.000000\n", "3090 Ishmael:A Novel ... 41.000000\n", "3091 The Indian in the Cupboard (The Indian in the ... ... 29.000000\n", "3092 War Horse (War Horse, #1) ... 41.000000\n", "3093 Marina ... 39.000000\n", "3094 The Mysterious Benedict Society and the Perilo... ... 41.000000\n", "3095 Unhinged (Splintered, #2) ... 39.000000\n", "3096 Get Shorty (Chili Palmer, #1) ... 32.000000\n", "3097 The Wings of the Dove ... 33.000000\n", "3098 Lady Susan ... 35.000000\n", "3099 Ordinary People ... 38.000000\n", "3100 Blood Red Road (Dust Lands, #1) ... 38.000000\n", "3101 The Pagan Lord (The Saxon Stories, #7) ... 34.000000\n", "3102 The Grim Grotto (A Series of Unfortunate Event... ... 43.000000\n", "3103 Walden & Civil Disobedience ... 29.000000\n", "3104 Fantasy Lover (Dark-Hunterverse #1) ... 38.000000\n", "3105 Girl with a Pearl Earring ... 42.000000\n", "3106 All the Bright Places ... 36.000000\n", "3107 The Ruby in the Smoke (Sally Lockhart, #1) ... 38.000000\n", "3108 The Remaining (The Remaining, #1) ... 32.000000\n", "3109 The Bar Code Tattoo (Bar Code, #1) ... 33.000000\n", "3110 Shantaram ... 42.000000\n", "3111 The Replacement ... 32.000000\n", "3112 The Marriage Plot ... 34.000000\n", "3113 Ash ... 28.000000\n", "3114 Undead and Unappreciated (Undead, #3) ... 31.000000\n", "3115 Out of Sight, Out of Time (Gallagher Girls, #5) ... 35.000000\n", "3116 The Bluest Eye ... 38.000000\n", "3117 Going Bovine ... 32.000000\n", "3118 The Color Purple ... 32.000000\n", "3119 The Heart of the Matter ... 34.000000\n", "3120 Room ... 40.000000\n", "3121 What Really Happened in Peru (The Bane Chronic... ... 30.000000\n", "3122 Fall on Your Knees ... 37.000000\n", "3123 Capital ... 34.000000\n", "3124 Play of Passion (Psy-Changeling #9) ... 32.000000\n", "3125 CivilWarLand in Bad Decline ... 33.000000\n", "3126 The Visitation ... 37.000000\n", "3127 The Magic Strings of Frankie Presto ... 35.000000\n", "3128 If I Die (Soul Screamers, #5) ... 33.000000\n", "3129 Entice (Need, #3) ... 31.000000\n", "3130 The Prisoner of Heaven (The Cemetery of Forgot... ... 34.000000\n", "3131 The Legend of Sleepy Hollow (Graphic Novel) ... 32.000000\n", "3132 The Complete Fairy Tales ... 31.000000\n", "3133 Darkness ... 31.000000\n", "3134 The Guard (The Selection, #2.5) ... 30.000000\n", "3135 Summer Sisters ... 45.000000\n", "3136 Nevermore (Nevermore, #1) ... 30.000000\n", "3137 The Mysterious Benedict Society (The Mysteriou... ... 39.000000\n", "3138 Master and Commander ... 44.000000\n", "3139 Angels and Demons / The Da Vinci Code (Robert ... ... 28.000000\n", "3140 The Bloody Chamber and Other Stories ... 33.000000\n", "3141 Skeleton Key (Alex Rider, #3) ... 40.000000\n", "3142 The Silver Linings Playbook ... 41.000000\n", "3143 Bay of Sighs (The Guardians Trilogy, #2) ... 31.000000\n", "3144 Defiance (Strange Angels, #4) ... 34.000000\n", "3145 Helter Skelter: The True Story of the Manson M... ... 35.000000\n", "3146 'Salem's Lot ... 24.500000\n", "3147 'Salem's Lot ... 24.500000\n", "3148 Hostage to Pleasure (Psy-Changeling, #5) ... 33.000000\n", "3149 Anne of Green Gables (Anne of Green Gables, #1) ... 44.000000\n", "3150 Promised (Birthmarked, #3) ... 33.000000\n", "3151 2666 ... 35.000000\n", "3152 Balzac and the Little Chinese Seamstress ... 30.000000\n", "3153 Bloody Jack (Bloody Jack, #1) ... 38.000000\n", "3154 Perfect ... 24.500000\n", "3155 Perfect ... 24.500000\n", "3156 The Last Song ... 43.000000\n", "3157 Eleanor & Park ... 38.000000\n", "3158 The Happy Prince ... 35.000000\n", "3159 First Drop of Crimson (Night Huntress World, #1) ... 35.000000\n", "3160 As the Crow Flies ... 42.000000\n", "3161 Kiss of Snow (Psy-Changeling #10) ... 32.000000\n", "3162 My Man Jeeves (Jeeves, #1) ... 34.000000\n", "3163 Down and Out in Paris and London ... 38.000000\n", "3164 Blood Brothers (Sign of Seven, #1) ... 35.000000\n", "3165 Labor Day ... 33.000000\n", "3166 Pure (Covenant, #2) ... 32.000000\n", "3167 Storm (Elemental, #1) ... 22.000000\n", "3168 Harry Potter Page to Screen: The Complete Film... ... 38.000000\n", "3169 Tribulation Force (Left Behind, #2) ... 35.000000\n", "3170 Wonder Boys ... 39.000000\n", "3171 The Black Dahlia (L.A. Quartet, #1) ... 34.000000\n", "3172 I'd Tell You I Love You, But Then I'd Have to ... ... 40.000000\n", "3173 The King (Black Dagger Brotherhood, #12) ... 34.000000\n", "3174 Rumors (Luxe, #2) ... 38.000000\n", "3175 Books of Blood: Volume One (Books of Blood #1) ... 35.000000\n", "3176 Die for Me (Revenants, #1) ... 33.000000\n", "3177 The Wolves of Willoughby Chase (The Wolves Chr... ... 31.000000\n", "3178 Metamorphoses ... 29.000000\n", "3179 Pippi Longstocking ... 35.000000\n", "3180 Harvesting the Heart ... 36.000000\n", "3181 Independence (Significance, #4) ... 31.000000\n", "3182 Third Grave Dead Ahead (Charley Davidson, #3) ... 33.000000\n", "3183 Eternal Kiss of Darkness (Night Huntress World... ... 35.000000\n", "3184 Fury (New Species, #1) ... 26.000000\n", "3185 The Other Boleyn Girl (The Plantagenet and Tud... ... 45.000000\n", "3186 Burning For Revenge (Tomorrow, #5) ... 39.000000\n", "3187 The Burning Land (The Saxon Stories, #5) ... 34.000000\n", "3188 The Penultimate Peril (A Series of Unfortunate... ... 44.000000\n", "3189 The Far Pavilions ... 44.000000\n", "3190 Three Comrades ... 35.000000\n", "3191 Dances with Wolves (Dances with Wolves, #1) ... 41.000000\n", "3192 The Tenth Circle ... 41.000000\n", "3193 Lords of the North (The Saxon Stories, #3) ... 36.000000\n", "3194 The Melancholy Death of Oyster Boy and Other S... ... 39.000000\n", "3195 My Blood Approves (My Blood Approves, #1) ... 29.000000\n", "3196 The Pearl ... 41.000000\n", "3197 Eugene Onegin ... 29.000000\n", "3198 Cujo ... 40.000000\n", "3199 The Magician's Elephant ... 32.000000\n", "3200 Nana (Les Rougon-Macquart, #9) ... 35.000000\n", "3201 Destined (House of Night, #9) ... 35.000000\n", "3202 Bone Gap ... 25.000000\n", "3203 At Home in Mitford (Mitford Years, #1) ... 39.000000\n", "3204 Genghis: Birth of an Empire (Conqueror, #1) ... 37.000000\n", "3205 Brida ... 41.000000\n", "3206 Handle with Care ... 40.000000\n", "3207 The Wind in the Willows ... 42.000000\n", "3208 Black Dawn (The Morganville Vampires, #12) ... 36.000000\n", "3209 A Long Way Down ... 39.000000\n", "3210 Deadly Little Secret (Touch, #1) ... 32.000000\n", "3211 The Thousand Autumns of Jacob de Zoet ... 42.000000\n", "3212 The Secret Diary of Adrian Mole, Aged 13 3/4 ... ... 37.000000\n", "3213 Dream Warrior (Dream-Hunter #4; Dark-Hunter #17) ... 33.000000\n", "3214 Encyclopedia Brown, Boy Detective (Encyclopedi... ... 20.000000\n", "3215 The Girl with No Shadow (Chocolat, #2) ... 38.000000\n", "3216 Dean Koontz's Frankenstein, Volume 1: Prodigal... ... 24.000000\n", "3217 Bad Girls Don't Die (Bad Girls Don't Die, #1) ... 32.000000\n", "3218 Hidden (House of Night, #10) ... 34.000000\n", "3219 Apollyon (Covenant, #4) ... 35.000000\n", "3220 Bird Box ... 35.000000\n", "3221 Leaving Time ... 31.000000\n", "3222 City of Thieves ... 41.000000\n", "3223 The Rime of the Ancient Mariner ... 32.000000\n", "3224 Morrigan's Cross (Circle Trilogy, #1) ... 39.000000\n", "3225 Sense & Sensibility (The Austen Project, #1) ... 33.000000\n", "3226 84, Charing Cross Road ... 34.000000\n", "3227 The Recruit (Cherub, #1) ... 33.000000\n", "3228 Nobody's Fool ... 39.000000\n", "3229 My Soul to Save (Soul Screamers, #2) ... 34.000000\n", "3230 Captivate (Need, #2) ... 32.000000\n", "3231 Death of Kings (The Saxon Stories, #6) ... 34.000000\n", "3232 Ross Poldark (Poldark, #1) ... 41.000000\n", "3233 Post Captain (Aubrey/Maturin, #2) ... 40.000000\n", "3234 Startide Rising (The Uplift Saga, #2) ... 35.000000\n", "3235 Pulp ... 35.000000\n", "3236 Dragon Actually (Dragon Kin, #1) ... 30.000000\n", "3237 A Heartbreaking Work of Staggering Genius ... 37.000000\n", "3238 The Solitaire Mystery: A Novel About Family an... ... 39.000000\n", "3239 The Remnant (Left Behind, #10) ... 37.000000\n", "3240 Babe: The Gallant Pig ... 23.000000\n", "3241 Hex Hall (Hex Hall, #1) ... 31.000000\n", "3242 Darth Plagueis ... 42.000000\n", "3243 Point Blank (Alex Rider, #2) ... 37.000000\n", "3244 I Know Why the Caged Bird Sings ... 39.000000\n", "3245 Dark Desire (Dark, #2) ... 34.000000\n", "3246 When the Emperor Was Divine ... 28.000000\n", "3247 Memoirs of an Imaginary Friend ... 39.000000\n", "3248 Storm Warning (The 39 Clues, #9) ... 29.000000\n", "3249 Desolation Angels ... 33.000000\n", "3250 Skinny Legs and All ... 36.000000\n", "3251 Only Time Will Tell (The Clifton Chronicles, #1) ... 33.000000\n", "3252 The Tin Drum ... 35.000000\n", "3253 The Killer Inside Me ... 33.000000\n", "3254 Hollowland (The Hollows, #1) ... 30.000000\n", "3255 Stargirl (Stargirl, #1) ... 38.000000\n", "3256 The Program (The Program, #1) ... 37.000000\n", "3257 Post Office ... 37.000000\n", "3258 Incendiary ... 38.000000\n", "3259 The Slippery Slope (A Series of Unfortunate Ev... ... 42.000000\n", "3260 Straight Man ... 37.000000\n", "3261 The Miserable Mill (A Series of Unfortunate Ev... ... 41.000000\n", "3262 Rilla of Ingleside (Anne of Green Gables, #8) ... 42.000000\n", "3263 The Reptile Room (A Series of Unfortunate Even... ... 42.000000\n", "3264 Blackberry Wine ... 35.000000\n", "3265 The Love Song of Miss Queenie Hennessy (Harold... ... 35.000000\n", "3266 The Carnivorous Carnival (A Series of Unfortun... ... 41.000000\n", "3267 World After (Penryn & the End of Days, #2) ... 37.000000\n", "3268 Bagombo Snuff Box ... 37.000000\n", "3269 The Cuckoo's Calling (Cormoran Strike, #1) ... 39.000000\n", "3270 Women ... 40.000000\n", "3271 Ashley Bell ... 32.000000\n", "3272 The Storied Life of A.J. Fikry ... 32.000000\n", "3273 Audrey Rose ... 24.000000\n", "3274 Freedom ... 39.000000\n", "3275 How to Marry a Millionaire Vampire (Love at St... ... 30.000000\n", "3276 Smiley's People ... 37.000000\n", "3277 The Yellow Wall-Paper ... 31.000000\n", "3278 The Dead ... 37.000000\n", "3279 The Catastrophic History of You and Me ... 27.000000\n", "3280 The Island of the Day Before ... 31.000000\n", "3281 Still Alice ... 37.000000\n", "3282 Black Beauty ... 41.000000\n", "3283 Mrs. Mike (Mrs. Mike, #1) ... 40.000000\n", "3284 The King in Yellow and Other Horror Stories ... 33.000000\n", "3285 The Sea Wolf ... 42.000000\n", "3286 Winter of the World (The Century Trilogy #2) ... 42.000000\n", "3287 Shatterproof (The 39 Clues: Cahills vs. Vesper... ... 31.000000\n", "3288 Hades (Halo, #2) ... 36.000000\n", "3289 The Miraculous Journey of Edward Tulane ... 37.000000\n", "3290 Passion Unleashed (Demonica #3) ... 33.000000\n", "3291 The Moon Is Down ... 39.000000\n", "3292 The Prince and the Pauper ... 36.000000\n", "3293 Redeemed (House of Night, #12) ... 33.000000\n", "3294 Upon the Midnight Clear (Dark-Hunter #12, Drea... ... 33.000000\n", "3295 The Naturals (The Naturals, #1) ... 33.000000\n", "3296 The Fortress of Solitude ... 29.000000\n", "3297 Full Moon Rising (Riley Jenson Guardian #1) ... 33.000000\n", "3298 Into the Gauntlet (The 39 Clues, #10) ... 35.000000\n", "3299 Oracle Night ... 29.000000\n", "3300 George's Marvellous Medicine ... 40.000000\n", "3301 Once Burned (Night Prince, #1) ... 35.000000\n", "3302 Night Embrace (Dark-Hunter #2) ... 35.000000\n", "3303 Angel Fire (Angel, #2) ... 36.000000\n", "3304 The Goddess Test (Goddess Test, #1) ... 31.000000\n", "3305 First Grave on the Right (Charley Davidson, #1) ... 33.000000\n", "3306 Pay It Forward ... 40.000000\n", "3307 Reached (Matched, #3) ... 35.000000\n", "3308 The Yearling ... 30.000000\n", "3309 The Swiss Family Robinson ... 40.000000\n", "3310 The BFG ... 37.000000\n", "3311 A Place Called Here ... 38.000000\n", "3312 The Prince (The Selection, #0.5) ... 30.000000\n", "3313 Porno ... 35.000000\n", "3314 Ninth Grade Slays (The Chronicles of Vladimir ... ... 34.000000\n", "3315 A River Runs Through It and Other Stories ... 38.000000\n", "3316 Message in a Bottle ... 40.000000\n", "3317 After We Fell (After, #3) ... 37.000000\n", "3318 All the Light We Cannot See ... 42.000000\n", "3319 Of Love and Shadows ... 29.000000\n", "3320 The Winter Rose (The Tea Rose, #2) ... 39.000000\n", "3321 Cheaper by the Dozen ... 39.000000\n", "3322 The Death and Life of Charlie St. Cloud ... 37.000000\n", "3323 Memórias Póstumas de Brás Cubas ... 32.000000\n", "3324 Slam ... 36.000000\n", "3325 A Dog's Purpose (A Dog's Purpose, #1) ... 39.000000\n", "3326 Stars of Fortune (The Guardians Trilogy, #1) ... 32.000000\n", "3327 Evernight (Evernight, #1) ... 33.000000\n", "3328 Night World: The Ultimate Fan Guide ... 19.000000\n", "3329 Pandora / Vittorio the Vampire (New Tales of t... ... 26.000000\n", "3330 Crank (Crank, #1) ... 38.000000\n", "3331 The Hour I First Believed ... 40.000000\n", "3332 Bel-Ami ... 34.000000\n", "3333 Retribution (Dark-Hunter, #19) ... 32.000000\n", "3334 A Knight in Shining Armor ... 41.000000\n", "3335 Mutiny on the Bounty (The Bounty Trilogy, #1) ... 28.000000\n", "3336 Nicolae (Left Behind, #3) ... 35.000000\n", "3337 Close Your Eyes, Hold Hands ... 32.000000\n", "3338 Obsession ... 33.000000\n", "3339 Glorious Appearing: The End of Days (Left Behi... ... 35.000000\n", "3340 Invisible Monsters ... 34.000000\n", "3341 The Little Match Girl ... 21.000000\n", "3342 A Man in Full ... 35.000000\n", "3343 Finding Nemo ... 21.000000\n", "3344 The Devil in the White City: Murder, Magic, an... ... 31.000000\n", "3345 Wives and Daughters ... 39.000000\n", "3346 Who's Afraid of Virginia Woolf? ... 30.000000\n", "3347 The Unusual Suspects (The Sisters Grimm, #2) ... 36.000000\n", "3348 The Shadowy Horses ... 30.000000\n", "3349 Anna and the French Kiss (Anna and the French ... ... 38.000000\n", "3350 The End (A Series of Unfortunate Events, #13) ... 44.000000\n", "3351 Invincible (Chronicles of Nick, #2) ... 35.000000\n", "3352 If You Could See Me Now ... 40.000000\n", "3353 Attachments ... 37.000000\n", "3354 Spell of the Highlander (Highlander, #7) ... 32.000000\n", "3355 A Fine Balance ... 37.000000\n", "3356 The Adventures of Tom Sawyer ... 40.000000\n", "3357 Vampires are Forever (Argeneau #8) ... 32.000000\n", "3358 Elixir (Covenant, #3.5) ... 30.000000\n", "3359 Sharpe's Tiger (Sharpe, #1) ... 36.000000\n", "3360 Vagabond (The Grail Quest, #2) ... 36.000000\n", "3361 A Shade of Vampire (A Shade of Vampire, #1) ... 28.000000\n", "3362 The Wide Window (A Series of Unfortunate Event... ... 41.000000\n", "3363 Faust ... 38.000000\n", "3364 Dark Prince (Dark, #1) ... 34.000000\n", "3365 Embrace (The Violet Eden Chapters, #1) ... 31.000000\n", "3366 The Decline and Fall of the Roman Empire ... 32.000000\n", "3367 A King's Ransom (The 39 Clues: Cahills vs. Ves... ... 31.000000\n", "3368 Confessions of a Shopaholic (Shopaholic, #1) ... 41.000000\n", "3369 Thirteen Reasons Why ... 39.000000\n", "3370 The Constant Princess (The Plantagenet and Tud... ... 40.000000\n", "3371 Anne of Avonlea (Anne of Green Gables, #2) ... 41.000000\n", "3372 The Big Sleep (Philip Marlowe, #1) ... 36.000000\n", "3373 The Revenant ... 35.000000\n", "3374 Genghis: Lords of the Bow (Conqueror, #2) ... 34.000000\n", "3375 Indebted (The Premonition, #3) ... 34.000000\n", "3376 The Lost Wife ... 34.000000\n", "3377 Single White Vampire (Argeneau #3) ... 36.000000\n", "3378 The Yellow Wallpaper and Other Stories ... 31.000000\n", "3379 A Study in Scarlet ... 39.000000\n", "3380 The Red Queen (The Plantagenet and Tudor Novel... ... 39.000000\n", "3381 The Bookman’s Tale ... 33.000000\n", "3382 A Dangerous Path (Warriors, #5) ... 36.000000\n", "3383 Sweet Evil (Sweet, #1) ... 34.000000\n", "3384 The American Heiress ... 33.000000\n", "3385 Under the Volcano ... 37.000000\n", "3386 Everneath (Everneath, #1) ... 31.000000\n", "3387 The Price of Salt ... 35.000000\n", "3388 Collected Fictions ... 34.000000\n", "3389 House ... 40.000000\n", "3390 Arcadia ... 23.000000\n", "3391 Arcadia ... 23.000000\n", "3392 How to Build a Girl ... 37.000000\n", "3393 Infamous (Chronicles of Nick, #3) ... 36.000000\n", "3394 The Frog Princess (Tales of the Frog Princess,... ... 34.000000\n", "3395 Esio Trot ... 33.000000\n", "3396 Stray (Shifters, #1) ... 37.000000\n", "3397 The Sicilian ... 41.000000\n", "3398 Devil May Cry (Dark-Hunter, #11) ... 36.000000\n", "3399 Betrayals (Strange Angels, #2) ... 34.000000\n", "3400 We Are Called to Rise ... 28.000000\n", "3401 The Life and Opinions of Tristram Shandy, Gent... ... 31.000000\n", "3402 The Rum Diary ... 40.000000\n", "3403 We Have Always Lived in the Castle ... 36.000000\n", "3404 Colorless Tsukuru Tazaki and His Years of Pilg... ... 37.000000\n", "3405 Funny Girl ... 31.000000\n", "3406 Angela's Ashes (Frank McCourt, #1) ... 40.000000\n", "3407 Fried Green Tomatoes at the Whistle Stop Cafe ... 42.000000\n", "3408 Murder on the Orient Express (Hercule Poirot, ... ... 44.000000\n", "3409 Twice Tempted (Night Prince, #2) ... 37.000000\n", "3410 Sula ... 36.000000\n", "3411 Captains Courageous ... 42.000000\n", "3412 Buddenbrooks: The Decline of a Family ... 34.000000\n", "3413 Little Men (Little Women, #2) ... 38.000000\n", "3414 At First Sight (Jeremy Marsh & Lexie Darnell, #2) ... 39.000000\n", "3415 A Hologram for the King ... 32.000000\n", "3416 Goddess (Starcrossed, #3) ... 37.000000\n", "3417 Lamb: The Gospel According to Biff, Christ's C... ... 41.000000\n", "3418 Four Great Tragedies: Hamlet / Othello / King ... ... 21.000000\n", "3419 Dance Dance Dance (The Rat, #4) ... 38.000000\n", "3420 Afterlife (Evernight, #4) ... 32.000000\n", "3421 How to Be Good ... 37.000000\n", "3422 Purgatorio (The Divine Comedy, #2) ... 35.000000\n", "3423 The Miracle Worker ... 27.000000\n", "3424 Until I Die (Revenants, #2) ... 32.000000\n", "3425 The Commitments ... 33.000000\n", "3426 Robin Hood, The Prince of Thieves ... 28.000000\n", "3427 Fahrenheit 451: The Authorized Adaptation ... 32.000000\n", "3428 Beyond the Grave (The 39 Clues #4) ... 31.000000\n", "3429 Dispatches ... 28.000000\n", "3430 A Grimm Warning (The Land of Stories, #3) ... 41.000000\n", "3431 The Nightingale ... 34.000000\n", "3432 My Name Is Asher Lev ... 36.000000\n", "3433 The Orchid House ... 34.000000\n", "3434 That Was Then, This Is Now ... 32.000000\n", "3435 Crocodile Tears (Alex Rider, #8) ... 35.000000\n", "3436 The Robe ... 37.000000\n", "3437 James and the Giant Peach ... 37.000000\n", "3438 Girl, Interrupted ... 33.000000\n", "3439 Vampires in the Lemon Grove ... 33.000000\n", "3440 Diary ... 37.000000\n", "3441 Hector and the Search for Happiness ... 38.000000\n", "3442 Welcome to Shadowhunter Academy (Tales from th... ... 30.000000\n", "3443 The Wishing Spell (The Land of Stories, #1) ... 40.000000\n", "3444 Glass (Crank, #2) ... 34.000000\n", "3445 Eloise ... 18.000000\n", "3446 Roots: The Saga of an American Family ... 45.000000\n", "3447 The Girl You Left Behind ... 34.000000\n", "3448 The Viper's Nest (39 Clues, #7) ... 30.000000\n", "3449 Peace Like a River ... 41.000000\n", "3450 After You (Me Before You, #2) ... 36.000000\n", "3451 Before I Die ... 37.000000\n", "3452 The Diary of a Young Girl ... 31.000000\n", "3453 Edge of Eternity (The Century Trilogy, #3) ... 41.000000\n", "3454 The Prophet ... 43.000000\n", "3455 The Fog ... 32.000000\n", "3456 The Unabridged Journals of Sylvia Plath ... 31.000000\n", "3457 Notes of a Dirty Old Man ... 29.000000\n", "3458 King Lear ... 39.000000\n", "3459 Beyond Exile (Day by Day Armageddon,# 2) ... 32.000000\n", "3460 The Origin of Species ... 36.000000\n", "3461 Isla and the Happily Ever After (Anna and the ... ... 33.000000\n", "3462 Revealed (House of Night, #11) ... 34.000000\n", "3463 The Oath of the Vayuputras (Shiva Trilogy, #3) ... 37.000000\n", "3464 Pretty Little Liars (Pretty Little Liars, #1) ... 37.000000\n", "3465 The Man in the Iron Mask (The D'Artagnan Roman... ... 41.000000\n", "3466 One True Thing ... 35.000000\n", "3467 Sarum: The Novel of England ... 39.000000\n", "3468 Rose in Bloom (Eight Cousins, #2) ... 36.000000\n", "3469 The Physician (Cole Family Trilogy, #1) ... 39.000000\n", "3470 Envy (Luxe, #3) ... 37.000000\n", "3471 Twenties Girl ... 38.000000\n", "3472 Ghostgirl (Ghostgirl, #1) ... 32.000000\n", "3473 Hourglass (Evernight, #3) ... 31.000000\n", "3474 Strange Angels (Strange Angels, #1) ... 32.000000\n", "3475 Dark Lover (Black Dagger Brotherhood, #1) ... 38.000000\n", "3476 Best Kept Secret (The Clifton Chronicles, #3) ... 32.000000\n", "3477 Midnight Rising (Midnight Breed, #4) ... 34.000000\n", "3478 Last Exit to Brooklyn ... 34.000000\n", "3479 The Woman in Black ... 39.000000\n", "3480 Dragon Bound (Elder Races, #1) ... 33.000000\n", "3481 Watchmen ... 40.000000\n", "3482 The Prince of Tides ... 42.000000\n", "3483 The Captive Part II / The Power (The Secret Ci... ... 31.000000\n", "3484 An Abundance of Katherines ... 40.000000\n", "3485 Microserfs ... 38.000000\n", "3486 Empire Falls ... 35.000000\n", "3487 Juliet ... 38.000000\n", "3488 The Club Dumas ... 32.000000\n", "3489 Change of Heart ... 37.000000\n", "3490 Night Road ... 37.000000\n", "3491 The Rosie Project (Don Tillman, #1) ... 36.000000\n", "3492 Destroy Me (Shatter Me, #1.5) ... 32.000000\n", "3493 Inherit the Wind ... 26.000000\n", "3494 Anne's House of Dreams (Anne of Green Gables, #5) ... 41.000000\n", "3495 The Luxe (Luxe, #1) ... 40.000000\n", "3496 The Dovekeepers ... 39.000000\n", "3497 The Magician's Assistant ... 34.000000\n", "3498 The Screwtape Letters ... 44.000000\n", "3499 Sailing Alone Around the Room: New and Selecte... ... 28.000000\n", "3500 The Dark Divine (The Dark Divine, #1) ... 27.000000\n", "3501 Azincourt ... 35.000000\n", "3502 Marked / Betrayed / Chosen / Untamed / Hunted ... ... 18.000000\n", "3503 Just Ella (The Palace Chronicles, #1) ... 32.000000\n", "3504 The World of Winnie-the-Pooh (Winnie-the-Pooh,... ... 35.000000\n", "3505 Sybil: The Classic True Story of a Woman Posse... ... 26.000000\n", "3506 Rumble Fish ... 32.000000\n", "3507 The Darkest Hour (Warriors, #6) ... 37.000000\n", "3508 City of Night (Dean Koontz's Frankenstein, #2) ... 36.000000\n", "3509 One ... 32.000000\n", "3510 UnEnchanted (An Unfortunate Fairy Tale, #1) ... 29.000000\n", "3511 The Uncommon Reader ... 30.000000\n", "3512 The Descendants ... 34.000000\n", "3513 The Mistress of Spices ... 30.000000\n", "3514 Dark Gold (Dark, #3) ... 33.000000\n", "3515 Orphan Train ... 34.000000\n", "3516 Holes (Holes, #1) ... 36.000000\n", "3517 O Pioneers! ... 37.000000\n", "3518 Bridget Jones: The Edge of Reason (Bridget Jon... ... 43.000000\n", "3519 Brick Lane ... 27.000000\n", "3520 Will Grayson, Will Grayson ... 39.000000\n", "3521 The Source ... 40.000000\n", "3522 Odd Apocalypse (Odd Thomas, #5) ... 35.000000\n", "3523 Into the Wild ... 45.000000\n", "3524 The Road to the Dark Tower: Exploring Stephen ... ... 21.000000\n", "3525 R is for Ricochet (Kinsey Millhone, #18) ... 28.000000\n", "3526 The Summer Garden (The Bronze Horseman, #3) ... 40.000000\n", "3527 The Twilight Saga Breaking Dawn Part 1: The Of... ... 25.000000\n", "3528 Splendor (Luxe, #4) ... 35.000000\n", "3529 Breathe (Breathe, #1) ... 30.000000\n", "3530 Dom Casmurro ... 26.000000\n", "3531 Burned (Burned, #1) ... 36.000000\n", "3532 Bad Moon Rising (Dark-Hunter #18; Were-Hunter ... ... 36.000000\n", "3533 Thanks for the Memories ... 38.000000\n", "3534 The Gift ... 21.000000\n", "3535 The Gift ... 21.000000\n", "3536 Code Name Verity (Code Name Verity, #1) ... 37.000000\n", "3537 See Me ... 36.000000\n", "3538 Angels' Blood (Guild Hunter, #1) ... 37.000000\n", "3539 Need (Need, #1) ... 32.000000\n", "3540 Truth and Beauty ... 26.000000\n", "3541 Forest of Secrets (Warriors, #3) ... 39.000000\n", "3542 Intuition (The Premonition, #2) ... 32.000000\n", "3543 Possession ... 42.000000\n", "3544 Sons of Fortune ... 35.000000\n", "3545 Buffy the Vampire Slayer: The Long Way Home (S... ... 34.000000\n", "3546 The Complete Poems ... 17.500000\n", "3547 The Complete Poems ... 17.500000\n", "3548 A Town Like Alice ... 39.000000\n", "3549 The Help ... 42.000000\n", "3550 The Summer I Turned Pretty Trilogy: The Summer... ... 34.000000\n", "3551 The Danish Girl ... 37.000000\n", "3552 The Kingmaker's Daughter (The Plantagenet and ... ... 37.000000\n", "3553 Ashes (Ashes Trilogy, #1) ... 35.000000\n", "3554 My Soul to Keep (Soul Screamers, #3) ... 32.000000\n", "3555 Filth ... 37.000000\n", "3556 Paint it Black ... 39.000000\n", "3557 Spell Bound (Hex Hall, #3) ... 28.000000\n", "3558 Jazz ... 37.000000\n", "3559 Eva Luna ... 29.000000\n", "3560 Panic (Panic, #1) ... 35.000000\n", "3561 Half Asleep in Frog Pajamas ... 34.000000\n", "3562 Twilight Director's Notebook : The Story of Ho... ... 29.000000\n", "3563 Winnie-the-Pooh (Winnie-the-Pooh, #1) ... 40.000000\n", "3564 The Song of Achilles ... 43.000000\n", "3565 Not a Penny More, Not a Penny Less ... 37.000000\n", "3566 Me and Earl and the Dying Girl ... 33.000000\n", "3567 Factotum ... 34.000000\n", "3568 You Slay Me (Aisling Grey #1) ... 33.000000\n", "3569 The Hundred-Year-Old Man Who Climbed Out of th... ... 38.000000\n", "3570 Gone Girl ... 37.000000\n", "3571 Love Bites (Argeneau #2) ... 33.000000\n", "3572 The Austere Academy (A Series of Unfortunate E... ... 40.000000\n", "3573 Cosmos ... 33.000000\n", "3574 A Man Without a Country ... 39.000000\n", "3575 Plainsong (Plainsong, #1) ... 40.000000\n", "3576 P.S. I Still Love You (To All the Boys I've Lo... ... 35.000000\n", "3577 Don't Judge a Girl by Her Cover (Gallagher Gir... ... 38.000000\n", "3578 Airport ... 35.000000\n", "3579 Special Topics in Calamity Physics ... 42.000000\n", "3580 Apollyon (Left Behind, #5) ... 35.000000\n", "3581 Horde (Razorland, #3) ... 37.000000\n", "3582 When I Found You ... 32.000000\n", "3583 Incendiary (The Premonition, #4) ... 32.000000\n", "3584 Wicked Appetite (Lizzy & Diesel, #1) ... 32.000000\n", "3585 Second Grave on the Left (Charley Davidson, #2) ... 33.000000\n", "3586 Something Blue (Darcy & Rachel, #2) ... 41.000000\n", "3587 The Art of Racing in the Rain ... 38.000000\n", "3588 The Jungle Books ... 39.000000\n", "3589 Relic (Pendergast, #1) ... 36.000000\n", "3590 Sunset (Warriors: The New Prophecy, #6) ... 34.000000\n", "3591 Gates of Fire: An Epic Novel of the Battle of ... ... 42.000000\n", "3592 Eighth Grade Bites (The Chronicles of Vladimir... ... 34.000000\n", "3593 Bee Season ... 34.000000\n", "3594 Rising Storm (Warriors, #4) ... 37.000000\n", "3595 Lady Audley's Secret ... 32.000000\n", "3596 The Immortal Highlander (Highlander, #6) ... 33.000000\n", "3597 Bright Shiny Morning ... 30.000000\n", "3598 What If?: Serious Scientific Answers to Absurd... ... 33.000000\n", "3599 How the Grinch Stole Christmas! ... 27.000000\n", "3600 The Book of Tomorrow ... 37.000000\n", "3601 Wild Swans: Three Daughters of China ... 36.000000\n", "3602 The Worst Witch (Worst Witch, #1) ... 35.000000\n", "3603 The Complete Novels ... 31.000000\n", "3604 Eventide (Plainsong, #2) ... 38.000000\n", "3605 Petals on the Wind (Dollanganger, #2) ... 39.000000\n", "3606 Cross My Heart and Hope to Spy (Gallagher Girl... ... 39.000000\n", "3607 Deity (Covenant, #3) ... 34.000000\n", "3608 One Hundred Names ... 36.000000\n", "3609 The Millennium Trilogy (Millennium Trilogy, #1-3) ... 40.000000\n", "3610 The Secret Keeper ... 37.000000\n", "3611 Antony and Cleopatra ... 37.000000\n", "3612 The Blood of Flowers ... 34.000000\n", "3613 This Lullaby ... 38.000000\n", "3614 Darkness at Noon ... 36.000000\n", "3615 Hamlet: Screenplay, Introduction And Film Diary ... 31.000000\n", "3616 Brief Lives (The Sandman #7) ... 39.000000\n", "3617 Rainbow Valley (Anne of Green Gables, #7) ... 41.000000\n", "3618 Charlie and the Chocolate Factory (Charlie Buc... ... 40.000000\n", "3619 The Universe Versus Alex Woods ... 36.000000\n", "3620 Can You Keep a Secret? ... 40.000000\n", "3621 Elizabeth Is Missing ... 35.000000\n", "3622 Nine Stories ... 31.000000\n", "3623 The Storyteller ... 35.000000\n", "3624 Black Ice ... 37.000000\n", "3625 The Dream Hunter (Dark-Hunter #10, Dream-Hunte... ... 35.000000\n", "3626 Unleash the Night (Dark Hunter, #8; Were-Hunte... ... 35.000000\n", "3627 The Brothers K ... 38.000000\n", "3628 Austenland (Austenland, #1) ... 37.000000\n", "3629 Confessions of a Murder Suspect (Confessions, #1) ... 38.000000\n", "3630 درخت زیبای Ù\n", "ن ... 33.000000\n", "3631 Glue ... 30.000000\n", "3632 The Guernsey Literary and Potato Peel Pie Society ... 41.000000\n", "3633 Jedi Search (Star Wars: The Jedi Academy Trilo... ... 35.000000\n", "3634 Daughter of Fortune ... 32.000000\n", "3635 Maurice ... 35.000000\n", "3636 Warlock (Ancient Egypt, #3) ... 38.000000\n", "3637 The Future of Us ... 30.000000\n", "3638 The Girl Who Came Home ... 28.000000\n", "3639 The Rules of Attraction ... 36.000000\n", "3640 The Tempest ... 29.000000\n", "3641 I, Claudius (Claudius, #1) ... 43.000000\n", "3642 A Walk to Remember ... 36.000000\n", "3643 Rebel Heart (Dust Lands, #2) ... 38.000000\n", "3644 Bonjour tristesse ... 30.000000\n", "3645 Driving Miss Daisy ... 20.000000\n", "3646 Essential Tales and Poems ... 31.000000\n", "3647 Corelli's Mandolin ... 34.000000\n", "3648 The Dead of Night (The 39 Clues: Cahills vs. V... ... 30.000000\n", "3649 Second Helpings (Jessica Darling, #2) ... 39.000000\n", "3650 American Pastoral (The American Trilogy, #1) ... 42.000000\n", "3651 Marathon Man ... 23.000000\n", "3652 When the Wind Blows (When the Wind Blows, #1) ... 35.000000\n", "3653 Juliet, Naked ... 34.000000\n", "3654 A Hero of Our Time ... 32.000000\n", "3655 The Fallen Star (Fallen Star, #1) ... 29.000000\n", "3656 Songbook ... 26.000000\n", "3657 Fathers and Sons ... 31.000000\n", "3658 The Running Man ... 38.000000\n", "3659 Day of Doom (The 39 Clues: Cahills vs. Vespers... ... 28.000000\n", "3660 The Bhagavad Gita ... 27.000000\n", "3661 Hard Bitten (Chicagoland Vampires, #4) ... 31.000000\n", "3662 Anne Rice's The Tale of the Body Thief (A Grap... ... 22.000000\n", "3663 Shadow's Claim (Immortals After Dark, #13; The... ... 30.000000\n", "3664 The Shadows (Black Dagger Brotherhood, #13) ... 31.000000\n", "3665 Endlessly (Paranormalcy, #3) ... 29.000000\n", "3666 Shadow Spell (The Cousins O'Dwyer Trilogy, #2) ... 33.000000\n", "3667 To Tame a Highland Warrior (Highlander, #2) ... 33.000000\n", "3668 Me Before You (Me Before You, #1) ... 32.000000\n", "3669 Go Set a Watchman ... 39.000000\n", "3670 My Soul to Steal (Soul Screamers, #4) ... 30.000000\n", "3671 Moonrise (Warriors: The New Prophecy, #2) ... 34.000000\n", "3672 Supernaturally (Paranormalcy, #2) ... 29.000000\n", "3673 Water for Elephants ... 35.000000\n", "3674 The Face on the Milk Carton (Janie Johnson, #1) ... 33.000000\n", "3675 Magic Breaks (Kate Daniels, #7) ... 32.000000\n", "3676 Eight Cousins (Eight Cousins, #1) ... 36.000000\n", "3677 In Too Deep (The 39 Clues, #6) ... 32.000000\n", "3678 Mercy ... 38.000000\n", "3679 Fracture Me (Shatter Me, #2.5) ... 28.000000\n", "3680 The Short Stories ... 23.000000\n", "3681 Firefly Lane (Firefly Lane, #1) ... 38.000000\n", "3682 The Underworld (Fallen Star, #2) ... 28.000000\n", "3683 The Museum of Extraordinary Things ... 34.000000\n", "3684 Dance with the Devil (Dark-Hunter #3) ... 37.000000\n", "3685 The Snow Child ... 29.000000\n", "3686 Binge ... 33.000000\n", "3687 Scorpia Rising (Alex Rider #9) ... 36.000000\n", "3688 Dance with a Vampire (Vampire Kisses, #4) ... 33.000000\n", "3689 The Swan Thieves ... 37.000000\n", "3690 Ballet Shoes (Shoes, #1) ... 37.000000\n", "3691 Holidays on Ice ... 30.000000\n", "3692 The King's Curse (The Plantagenet and Tudor No... ... 34.000000\n", "3693 Arch of Triumph: A Novel of a Man Without a Co... ... 36.000000\n", "3694 The Story of My Life ... 33.000000\n", "3695 The Red Pony ... 36.000000\n", "3696 Aztec (Aztec, #1) ... 40.000000\n", "3697 The Autograph Man ... 34.000000\n", "3698 Demonglass (Hex Hall, #2) ... 28.000000\n", "3699 Private Peaceful ... 31.000000\n", "3700 The Truth About Forever ... 39.000000\n", "3701 Wolfsbane (Nightshade #2; Nightshade World #5) ... 33.000000\n", "3702 Danny the Champion of the World ... 39.000000\n", "3703 Armageddon: The Cosmic Battle of the Ages (Lef... ... 35.000000\n", "3704 The Blue Castle ... 38.000000\n", "3705 Lola and the Boy Next Door (Anna and the Frenc... ... 36.000000\n", "3706 The Legend of Sleepy Hollow ... 34.000000\n", "3707 The Spectacular Now ... 35.000000\n", "3708 Nick & Norah's Infinite Playlist ... 36.000000\n", "3709 Scarecrow (Shane Schofield, #3) ... 38.000000\n", "3710 Tyrannosaur Canyon (Wyman Ford #1) ... 33.000000\n", "3711 Lock and Key ... 39.000000\n", "3712 Silver Bay ... 31.000000\n", "3713 Eugénie Grandet ... 27.000000\n", "3714 Soul Harvest: The World Takes Sides (Left Behi... ... 32.000000\n", "3715 The Judas Strain (Sigma Force, #4) ... 36.000000\n", "3716 The Shipping News ... 38.000000\n", "3717 My Grandmother Asked Me to Tell You She's Sorry ... 38.000000\n", "3718 National Velvet ... 28.000000\n", "3719 The Book of Speculation ... 31.000000\n", "3720 Big Little Lies ... 29.000000\n", "3721 Vampireville (Vampire Kisses, #3) ... 31.000000\n", "3722 All-American Girl (All-American Girl, #1) ... 39.000000\n", "3723 Revenge Wears Prada: The Devil Returns (The De... ... 38.000000\n", "3724 On the Bright Side, I'm Now the Girlfriend of ... ... 35.000000\n", "3725 And Then There Were None ... 44.000000\n", "3726 Endure (Need, #4) ... 27.000000\n", "3727 The House at Riverton ... 38.000000\n", "3728 Shopaholic to the Stars (Shopaholic, #7) ... 34.000000\n", "3729 Assassins (Left Behind, #6) ... 34.000000\n", "3730 The Life List ... 33.000000\n", "3731 Saint Maybe ... 34.000000\n", "3732 After Dark ... 36.000000\n", "3733 If There Be Thorns (Dollanganger, #3) ... 37.000000\n", "3734 QB VII ... 35.000000\n", "3735 Schindler's List ... 39.000000\n", "3736 Area 7 (Shane Schofield, #2) ... 38.000000\n", "3737 She's Come Undone ... 42.000000\n", "3738 Vampire, Interrupted (Argeneau #9) ... 34.000000\n", "3739 Sisterhood Everlasting (Sisterhood, #5) ... 34.000000\n", "3740 Stella Bain ... 29.000000\n", "3741 Vampire Kisses (Vampire Kisses, #1) ... 33.000000\n", "3742 The Orange Girl ... 36.000000\n", "3743 Q & A ... 43.000000\n", "3744 Kiss of the Night (Dark-Hunter, #4) ... 36.000000\n", "3745 The Fuck-Up ... 32.000000\n", "3746 Lake in the Clouds (Wilderness, #3) ... 32.000000\n", "3747 The Versions of Us ... 33.000000\n", "3748 Old Possum's Book of Practical Cats ... 32.000000\n", "3749 NW ... 35.000000\n", "3750 The Mind Readers (Mind Readers, #1) ... 28.000000\n", "3751 Kissing Coffins (Vampire Kisses, #2) ... 33.000000\n", "3752 Deep Storm (Jeremy Logan, #1) ... 33.000000\n", "3753 Animal Dreams ... 38.000000\n", "3754 The Darkest Kiss (Lords of the Underworld #2) ... 34.000000\n", "3755 Article 5 (Article 5, #1) ... 33.000000\n", "3756 Noble House (Asian Saga, #5) ... 43.000000\n", "3757 The Water-Method Man ... 27.000000\n", "3758 Astonish Me ... 24.000000\n", "3759 The Hours ... 42.000000\n", "3760 A Place Called Freedom ... 35.000000\n", "3761 An Old-Fashioned Girl ... 31.000000\n", "3762 Nineteen Minutes ... 38.000000\n", "3763 The DUFF: Designated Ugly Fat Friend ... 36.000000\n", "3764 The Accidental Tourist ... 40.000000\n", "3765 United We Spy (Gallagher Girls, #6) ... 34.000000\n", "3766 Only the Good Spy Young (Gallagher Girls, #4) ... 36.000000\n", "3767 Raised by Wolves (Raised by Wolves, #1) ... 33.000000\n", "3768 Sea Glass ... 32.000000\n", "3769 A Bite to Remember (Argeneau #5) ... 30.000000\n", "3770 Trinity ... 36.000000\n", "3771 The Coffin Club (Vampire Kisses, #5) ... 33.000000\n", "3772 Stargazer (Evernight, #2) ... 33.000000\n", "3773 End of Days (Penryn & the End of Days, #3) ... 36.000000\n", "3774 The Unlikely Pilgrimage of Harold Fry (Harold ... ... 36.000000\n", "3775 Existence (Existence Trilogy, #1) ... 30.000000\n", "3776 November 9 ... 37.000000\n", "3777 Love Anthony ... 31.000000\n", "3778 The Bloodletter's Daughter: A Novel of Old Boh... ... 27.000000\n", "3779 The Girl Who Played with Fire (Millennium, #2) ... 41.000000\n", "3780 The Pact ... 21.500000\n", "3781 The Pact ... 21.500000\n", "3782 The Absolute Sandman, Volume One ... 32.000000\n", "3783 The Girl Who Saved the King of Sweden ... 37.000000\n", "3784 The Inn at Rose Harbor (Rose Harbor #1) ... 30.000000\n", "3785 Captains and the Kings ... 32.000000\n", "3786 The Railway Children ... 41.000000\n", "3787 Little Mercies ... 32.000000\n", "3788 South of the Border, West of the Sun ... 36.000000\n", "3789 The Agony and the Ecstasy ... 41.000000\n", "3790 Glengarry Glen Ross ... 28.000000\n", "3791 Kane and Abel (Kane and Abel, #1) ... 45.000000\n", "3792 Ethics ... 20.000000\n", "3793 My Lady Jane (The Lady Janies, #1) ... 31.000000\n", "3794 Hopeless (Hopeless, #1) ... 33.000000\n", "3795 Forsaken (The Demon Trappers, #1) ... 28.000000\n", "3796 Dead and Alive (Dean Koontz's Frankenstein, #3) ... 35.000000\n", "3797 The Eye of God (Sigma Force #9) ... 37.000000\n", "3798 River God (Ancient Egypt, #1) ... 40.000000\n", "3799 Bloodrose (Nightshade #3; Nightshade World #6) ... 33.000000\n", "3800 Fever (The Chemical Garden, #2) ... 32.000000\n", "3801 My Best Friend's Girl ... 35.000000\n", "3802 Keep Quiet ... 31.000000\n", "3803 The Great Train Robbery ... 36.000000\n", "3804 Now We Are Six (Winnie-the-Pooh, #4) ... 36.000000\n", "3805 Go Tell It on the Mountain ... 34.000000\n", "3806 Fables and Reflections (The Sandman #6) ... 36.000000\n", "3807 Love Walked In ... 41.000000\n", "3808 13 Gifts (Willow Falls, #3) ... 34.000000\n", "3809 The Sunne in Splendour ... 38.000000\n", "3810 A Week in Winter ... 31.000000\n", "3811 Indignation ... 34.000000\n", "3812 Nice Girls Don't Have Fangs (Jane Jameson, #1) ... 31.000000\n", "3813 Garden of Shadows (Dollanganger, #5) ... 40.000000\n", "3814 The Post-Birthday World ... 34.000000\n", "3815 Undead and Unreturnable (Undead, #4) ... 31.000000\n", "3816 The Tea Rose (The Tea Rose, #1) ... 43.000000\n", "3817 A Woman of Substance (Emma Harte Saga #1) ... 35.000000\n", "3818 Be Careful What You Wish For (The Clifton Chro... ... 32.000000\n", "3819 Calico Joe ... 33.000000\n", "3820 The Indwelling (Left Behind, #7) ... 34.000000\n", "3821 No Country for Old Men ... 40.000000\n", "3822 No One Writes to the Colonel and Other Stories ... 29.000000\n", "3823 Kiss of the Highlander (Highlander, #4) ... 34.000000\n", "3824 The Valkyries ... 34.000000\n", "3825 Into the Wilderness (Wilderness, #1) ... 39.000000\n", "3826 Falling Under (Falling Under, #1) ... 28.000000\n", "3827 One Plus One ... 32.000000\n", "3828 First Among Equals ... 33.000000\n", "3829 Flipped ... 37.000000\n", "3830 Cold Sassy Tree ... 41.000000\n", "3831 A Widow for One Year ... 40.000000\n", "3832 Archangel's Consort (Guild Hunter, #3) ... 36.000000\n", "3833 Vector Prime (Star Wars: The New Jedi Order, #1) ... 40.000000\n", "3834 The Lord God Made Them All ... 44.000000\n", "3835 A Bend in the Road ... 37.000000\n", "3836 The Folk of the Faraway Tree (The Faraway Tree... ... 32.000000\n", "3837 Nothing ... 27.000000\n", "3838 Sloppy Firsts (Jessica Darling, #1) ... 37.000000\n", "3839 Travels with Charley: In Search of America ... 41.000000\n", "3840 Selected Stories ... 19.500000\n", "3841 Selected Stories ... 19.500000\n", "3842 Mightier Than the Sword (The Clifton Chronicle... ... 32.000000\n", "3843 War and Remembrance (The Henry Family, #2) ... 43.000000\n", "3844 The Lost Saint (The Dark Divine, #2) ... 31.000000\n", "3845 Beyond the Highland Mist (Highlander, #1) ... 33.000000\n", "3846 A Northern Light ... 34.000000\n", "3847 A Game of You (The Sandman #5) ... 36.000000\n", "3848 Forgotten ... 30.000000\n", "3849 Tatiana and Alexander (The Bronze Horseman, #2) ... 36.000000\n", "3850 Take Me with You ... 30.000000\n", "3851 Wicked (Pretty Little Liars, #5) ... 36.000000\n", "3852 Mad About the Boy (Bridget Jones, #3) ... 34.000000\n", "3853 Blood Kiss (Black Dagger Legacy, #1) ... 30.000000\n", "3854 The Story of Doctor Dolittle (Doctor Dolittle,... ... 38.000000\n", "3855 Blood Rites (The Grey Wolves, #2) ... 29.000000\n", "3856 A Constellation of Vital Phenomena ... 33.000000\n", "3857 The Second Sex ... 26.000000\n", "3858 Forever Amber ... 38.000000\n", "3859 Bridge to Terabithia ... 38.000000\n", "3860 The Princess Diaries (The Princess Diaries, #1) ... 37.000000\n", "3861 Death With Interruptions ... 38.000000\n", "3862 S is for Silence (Kinsey Millhone, #19) ... 27.000000\n", "3863 Fallen in Love (Fallen, #3.5) ... 34.000000\n", "3864 The Doll's House (The Sandman #2) ... 37.000000\n", "3865 The Keep (Adversary Cycle, #1) ... 33.000000\n", "3866 Twilight and History ... 19.000000\n", "3867 Shalimar the Clown ... 36.000000\n", "3868 Smack ... 28.000000\n", "3869 Magic Hour ... 32.000000\n", "3870 Jo's Boys (Little Women, #3) ... 36.000000\n", "3871 Heist Society (Heist Society, #1) ... 36.000000\n", "3872 The Zombie Room ... 28.000000\n", "3873 Naked in Death (In Death, #1) ... 36.000000\n", "3874 The Sins of the Father (The Clifton Chronicles... ... 34.000000\n", "3875 Falling into Place ... 32.000000\n", "3876 Between Shades of Gray ... 33.000000\n", "3877 Ice Station (Shane Schofield, #1) ... 42.000000\n", "3878 The Second Summer of the Sisterhood (Sisterhoo... ... 39.000000\n", "3879 Who Moved My Cheese? ... 31.000000\n", "3880 Rocket Boys (Coalwood #1) ... 41.000000\n", "3881 Circling the Sun ... 30.000000\n", "3882 Friday Night Lights: A Town, a Team, and a Dream ... 34.000000\n", "3883 A Scandal in Bohemia (The Adventures of Sherlo... ... 33.000000\n", "3884 A Dog's Journey (A Dog's Purpose, #2) ... 39.000000\n", "3885 Asylum (Asylum, #1) ... 35.000000\n", "3886 Mila 18 ... 37.000000\n", "3887 The Bad Place ... 38.000000\n", "3888 Sever (The Chemical Garden, #3) ... 34.000000\n", "3889 Digital Fortress ... 39.000000\n", "3890 Forever . . . ... 33.000000\n", "3891 Trojan Odyssey (Dirk Pitt, #17) ... 34.000000\n", "3892 Dark Side of the Moon (Dark-Hunter #9, Were-Hu... ... 32.000000\n", "3893 Dynasty of Evil (Star Wars: Darth Bane, #3) ... 39.000000\n", "3894 Five Quarters of the Orange ... 35.000000\n", "3895 Stolen: A Letter to My Captor ... 37.000000\n", "3896 The Manchurian Candidate (Movie Tie-In Edition) ... 33.000000\n", "3897 Plain Truth ... 27.000000\n", "3898 The Sandman: Endless Nights ... 36.000000\n", "3899 Jacob (Nightwalkers, #1) ... 35.000000\n", "3900 The Tell-Tale Heart ... 34.000000\n", "3901 The Winter's Tale ... 36.000000\n", "3902 The Immortals Boxed Set (The Immortals, #1-3) ... 20.000000\n", "3903 No Mercy (Dark-Hunter #18, Were-Hunter, #5) ... 29.000000\n", "3904 A Case of Need ... 28.000000\n", "3905 A Quick Bite (Argeneau #1) ... 30.000000\n", "3906 A Little Life ... 36.000000\n", "3907 The Magic Finger (Young Puffin Developing Reader) ... 33.000000\n", "3908 The Gift of the Magi ... 33.000000\n", "3909 His Last Bow: 8 Stories ... 40.000000\n", "3910 The Complete Tales and Poems of Winnie-the-Poo... ... 36.000000\n", "3911 Mythology: Timeless Tales of Gods and Heroes ... 41.000000\n", "3912 Atlantis Found (Dirk Pitt, #15) ... 35.000000\n", "3913 Good Wives (Little Women, #1.5) ... 39.000000\n", "3914 Sixth Grave on the Edge (Charley Davidson, #6) ... 30.000000\n", "3915 204 Rosewood Lane (Cedar Cove, #2) ... 28.000000\n", "3916 Purity ... 35.000000\n", "3917 Breaking Point (Tom Clancy's Net Force, #4) ... 20.000000\n", "3918 It's Not Summer Without You (Summer, #2) ... 37.000000\n", "3919 Eve (Eve, #1) ... 34.000000\n", "3920 The Ice Queen ... 37.000000\n", "3921 Heart-Shaped Box ... 36.000000\n", "3922 Os Maias ... 29.000000\n", "3923 The Giraffe and the Pelly and Me ... 36.000000\n", "3924 Just Listen ... 39.000000\n", "3925 Who Could That Be at This Hour? (All the Wrong... ... 38.000000\n", "3926 A Spot of Bother ... 37.000000\n", "3927 Girl at War ... 32.000000\n", "3928 Sundays at Tiffany's ... 41.000000\n", "3929 Sepulchre (Languedoc, #2) ... 38.000000\n", "3930 True Believer (Jeremy Marsh & Lexie Darnell, #1) ... 36.000000\n", "3931 Night Star (The Immortals, #5) ... 26.000000\n", "3932 The Elephant Tree ... 28.000000\n", "3933 The Winds of War (The Henry Family, #1) ... 36.000000\n", "3934 The Haunting of Hill House ... 38.000000\n", "3935 Cometh the Hour (The Clifton Chronicles, #6) ... 28.000000\n", "3936 The Vision (Fallen Star, #3) ... 29.000000\n", "3937 The Little Mermaid ... 17.500000\n", "3938 The Little Mermaid ... 17.500000\n", "3939 At the Water's Edge ... 31.000000\n", "3940 Lover Mine (Black Dagger Brotherhood, #8) ... 36.000000\n", "3941 This Side of the Grave (Night Huntress, #5) ... 34.000000\n", "3942 Fourth of July Creek ... 31.000000\n", "3943 The Glass Lake ... 36.000000\n", "3944 The House We Grew Up In ... 31.000000\n", "3945 Immortality ... 35.000000\n", "3946 My Sweet Audrina (Audrina, #1) ... 38.000000\n", "3947 Pleasure of a Dark Prince (Immortals After Dar... ... 33.000000\n", "3948 The Dogs of Babel ... 31.000000\n", "3949 Wedding Night ... 33.000000\n", "3950 Longbourn ... 35.000000\n", "3951 The Woman Who Stole My Life ... 31.000000\n", "3952 Midnight (The Vampire Diaries: The Return, #3) ... 35.000000\n", "3953 The Dice Man ... 32.000000\n", "3954 The Virgin's Lover (The Plantagenet and Tudor ... ... 38.000000\n", "3955 Second Glance ... 35.000000\n", "3956 The Monkey Wrench Gang (Monkey Wrench Gang, #1) ... 36.000000\n", "3957 Lullabies ... 34.000000\n", "3958 Books of Blood: Volumes One to Three (Books of... ... 34.000000\n", "3959 New York ... 37.000000\n", "3960 The Sign of Four ... 37.000000\n", "3961 Falling Angels ... 37.000000\n", "3962 A Dangerous Fortune ... 38.000000\n", "3963 Impulse (Impulse, #1) ... 35.000000\n", "3964 Billions & Billions: Thoughts on Life and Deat... ... 24.000000\n", "3965 Hawaii ... 38.000000\n", "3966 The Story of B: An Adventure of the Mind and S... ... 32.000000\n", "3967 Nutshell ... 31.000000\n", "3968 Anne of Ingleside (Anne of Green Gables, #6) ... 37.000000\n", "3969 Lover Eternal (Black Dagger Brotherhood, #2) ... 36.000000\n", "3970 Where the Red Fern Grows ... 35.000000\n", "3971 Black House (The Talisman, #2) ... 41.000000\n", "3972 The Year of Secret Assignments (Ashbury/Brookf... ... 34.000000\n", "3973 Kaleidoscope ... 32.000000\n", "3974 The Virgin Blue ... 37.000000\n", "3975 The Carrie Diaries (The Carrie Diaries, #1) ... 36.000000\n", "3976 Intertwined (Intertwined, #1) ... 31.000000\n", "3977 Vanishing Acts ... 35.000000\n", "3978 The Savage Detectives ... 32.000000\n", "3979 Mini Shopaholic (Shopaholic, #6) ... 35.000000\n", "3980 The Blood Gospel (The Order of the Sanguines, #1) ... 36.000000\n", "3981 The Heart is a Lonely Hunter ... 44.000000\n", "3982 The Sisterhood of the Traveling Pants (Sisterh... ... 35.000000\n", "3983 Much Ado About Nothing ... 38.000000\n", "3984 The Secret Life of Violet Grant ... 26.000000\n", "3985 In Our Time ... 37.000000\n", "3986 Boundless (Unearthly, #3) ... 31.000000\n", "3987 The Silkworm (Cormoran Strike, #2) ... 35.000000\n", "3988 The Odyssey ... 39.000000\n", "3989 My Life Next Door ... 36.000000\n", "3990 Homage to Catalonia ... 38.000000\n", "3991 Boy, Snow, Bird ... 31.000000\n", "3992 The Last Letter from Your Lover ... 36.000000\n", "3993 Dinner at the Homesick Restaurant ... 35.000000\n", "3994 Lone Wolf ... 37.000000\n", "3995 Wicked Deeds on a Winter's Night (Immortals Af... ... 34.000000\n", "3996 The Flight of Gemma Hardy ... 32.000000\n", "3997 Beaches ... 27.000000\n", "3998 Everyman ... 32.000000\n", "3999 The Hundred-Foot Journey ... 34.000000\n", "4000 The Dead Zone ... 40.000000\n", "4001 What Katy Did (Carr Family, #1) ... 33.000000\n", "4002 Lassie Come-Home ... 29.000000\n", "4003 Tell the Wolves I'm Home ... 35.000000\n", "4004 This Star Won't Go Out: The Life and Words of ... ... 36.000000\n", "4005 Washington Square ... 33.000000\n", "4006 Rule of Two (Star Wars: Darth Bane, #2) ... 40.000000\n", "4007 Fairest (An Unfortunate Fairy Tale, #2) ... 32.000000\n", "4008 The Sky Is Everywhere ... 33.000000\n", "4009 The Black Circle (The 39 Clues, #5) ... 32.000000\n", "4010 The Paying Guests ... 33.000000\n", "4011 Kiss of Crimson (Midnight Breed, #2) ... 33.000000\n", "4012 When You Reach Me ... 27.000000\n", "4013 One Last Thing Before I Go ... 31.000000\n", "4014 The Violets of March ... 33.000000\n", "4015 Taken by Midnight (Midnight Breed, #8) ... 32.000000\n", "4016 First Term at Malory Towers (Malory Towers, #1) ... 32.000000\n", "4017 Wait Till Helen Comes ... 31.000000\n", "4018 Kings Rising (Captive Prince, #3) ... 24.000000\n", "4019 The Great Divorce ... 42.000000\n", "4020 Then We Came to the End ... 36.000000\n", "4021 The Gatecrasher ... 38.000000\n", "4022 The Red Badge of Courage ... 40.000000\n", "4023 Beauty's Punishment (Sleeping Beauty, #2) ... 31.000000\n", "4024 Bloody Valentine (Blue Bloods, #5.5) ... 29.000000\n", "4025 Night Play (Dark-Hunter #5, Were-Hunter #1) ... 36.000000\n", "4026 Love, Stargirl (Stargirl, #2) ... 36.000000\n", "4027 Cell ... 44.000000\n", "4028 Lover Avenged (Black Dagger Brotherhood, #7) ... 35.000000\n", "4029 Year of Wonders ... 38.000000\n", "4030 The Bazaar of Bad Dreams ... 39.000000\n", "4031 Songs of the Humpback Whale ... 34.000000\n", "4032 The Black Stallion (The Black Stallion, #1) ... 31.000000\n", "4033 Preludes & Nocturnes (The Sandman #1) ... 37.000000\n", "4034 And Ladies of the Club ... 32.000000\n", "4035 Just One Drop (The Grey Wolves, #3) ... 30.000000\n", "4036 Shopaholic and Sister (Shopaholic, #4) ... 37.000000\n", "4037 Big Brother ... 31.000000\n", "4038 Forever in Blue: The Fourth Summer of the Sist... ... 36.000000\n", "4039 Champions of the Force (Star Wars: The Jedi Ac... ... 34.000000\n", "4040 Edenbrooke (Edenbrooke, #1) ... 41.000000\n", "4041 You Had Me At Hello ... 35.000000\n", "4042 Alice's Adventures in Wonderland: A Pop-Up Ada... ... 23.000000\n", "4043 Firestarter ... 41.000000\n", "4044 A Good Yarn (Blossom Street, #2) ... 28.000000\n", "4045 Requiem (Delirium, #3) ... 35.000000\n", "4046 The Long Goodbye (Philip Marlowe, #6) ... 34.000000\n", "4047 One Past Midnight: The Langoliers ... 33.000000\n", "4048 Ashes of Midnight (Midnight Breed, #6) ... 31.000000\n", "4049 Twilight and Philosophy: Vampires, Vegetarians... ... 17.000000\n", "4050 The Prague Cemetery ... 34.000000\n", "4051 The Lady of Shalott ... 26.000000\n", "4052 Me Talk Pretty One Day ... 35.000000\n", "4053 Possessing the Secret of Joy ... 25.000000\n", "4054 The Summer I Turned Pretty (Summer, #1) ... 37.000000\n", "4055 Apathy and Other Small Victories ... 26.000000\n", "4056 Dark Legend (Dark, #8) ... 32.000000\n", "4057 My Side of the Mountain (Mountain, #1) ... 33.000000\n", "4058 I'm with the Band: Confessions of a Groupie ... 19.000000\n", "4059 Doctors ... 34.000000\n", "4060 No Rest for the Wicked (Immortals After Dark #3) ... 34.000000\n", "4061 Minding Frankie ... 34.000000\n", "4062 Shopaholic Takes Manhattan (Shopaholic, #2) ... 38.000000\n", "4063 The Patron Saint of Liars ... 32.000000\n", "4064 Fifty Shades Freed (Fifty Shades, #3) ... 38.000000\n", "4065 Lies & the Lying Liars Who Tell Them: A Fair &... ... 20.000000\n", "4066 Matterhorn ... 35.000000\n", "4067 We Need to Talk About Kevin ... 39.000000\n", "4068 Lady Windermere's Fan ... 30.000000\n", "4069 The Story of a New Name (The Neapolitan Novels... ... 32.000000\n", "4070 The Guardian ... 38.000000\n", "4071 Marked / Betrayed / Chosen / Untamed (House of... ... 20.000000\n", "4072 Stay Out of the Basement (Goosebumps, #2) ... 31.000000\n", "4073 Save the Date ... 26.000000\n", "4074 Prodigal Summer ... 37.000000\n", "4075 Sharpe's Rifles (Sharpe, #6) ... 35.000000\n", "4076 The Thorn Birds ... 36.000000\n", "4077 The Importance of Being Earnest and Other Plays ... 35.000000\n", "4078 Amy & Roger's Epic Detour ... 32.000000\n", "4079 Deep Kiss of Winter (Includes: Immortals After... ... 28.000000\n", "4080 Mutant Message Down Under ... 34.000000\n", "4081 Then He Ate My Boy Entrancers (Confessions of ... ... 36.000000\n", "4082 The Ship of Brides ... 34.000000\n", "4083 Halo (Halo, #1) ... 34.000000\n", "4084 The Hypnotist's Love Story ... 31.000000\n", "4085 The Brothers Lionheart ... 35.000000\n", "4086 Home Front ... 32.000000\n", "4087 Survivor ... 38.000000\n", "4088 The Tommyknockers ... 39.000000\n", "4089 Started Early, Took My Dog (Jackson Brodie, #4) ... 34.000000\n", "4090 Pollyanna (Pollyanna, #1) ... 41.000000\n", "4091 Anne of Windy Poplars (Anne of Green Gables, #4) ... 38.000000\n", "4092 Moloka'i ... 38.000000\n", "4093 The Dirt: Confessions of the World's Most Noto... ... 21.000000\n", "4094 The Boleyn Inheritance (The Plantagenet and Tu... ... 32.000000\n", "4095 Songs of Innocence and of Experience ... 33.000000\n", "4096 Seventh Grave and No Body (Charley Davidson, #7) ... 29.000000\n", "4097 Shotgun Lovesongs ... 31.000000\n", "4098 The Masque of the Red Death ... 36.000000\n", "4099 Along for the Ride ... 29.000000\n", "4100 The Weird Sisters ... 32.000000\n", "4101 Euphoria ... 29.000000\n", "4102 The Crossing (The Border Trilogy, #2) ... 35.000000\n", "4103 What Was She Thinking? [Notes on a Scandal] ... 33.000000\n", "4104 Map of Bones (Sigma Force, #2) ... 39.000000\n", "4105 The Ladies' Room ... 22.000000\n", "4106 The White Princess (The Plantagenet and Tudor ... ... 31.000000\n", "4107 Ashfall (Ashfall, #1) ... 27.000000\n", "4108 Narcissus and Goldmund ... 34.000000\n", "4109 Fifth Grave Past the Light (Charley Davidson, #5) ... 31.000000\n", "4110 Dark Guardian (Dark, #9) ... 32.000000\n", "4111 Darth Vader and Son ... 27.000000\n", "4112 The Summer Before the War ... 29.000000\n", "4113 The Woman in the Dunes ... 35.000000\n", "4114 To Build a Fire ... 33.000000\n", "4115 Shades of Midnight (Midnight Breed, #7) ... 32.000000\n", "4116 The English Patient ... 42.000000\n", "4117 Going After Cacciato ... 31.000000\n", "4118 Sentimental Education ... 28.000000\n", "4119 The Paris Architect ... 30.000000\n", "4120 How to Fall in Love ... 36.000000\n", "4121 The Road Not Taken and Other Poems ... 29.000000\n", "4122 The Red Badge of Courage and Selected Short Fi... ... 29.000000\n", "4123 The Complete Anne of Green Gables Boxed Set (A... ... 30.000000\n", "4124 Heidi ... 38.000000\n", "4125 Too Loud a Solitude ... 31.000000\n", "4126 The First Four Years (Little House, #9) ... 30.000000\n", "4127 Nostromo ... 35.000000\n", "4128 A Son of the Circus ... 38.000000\n", "4129 The Darkest Pleasure (Lords of the Underworld #3) ... 34.000000\n", "4130 If I Stay Collection (If I Stay, #1-2) ... 25.000000\n", "4131 One Grave at a Time (Night Huntress, #6) ... 33.000000\n", "4132 Oz: The Wonderful Wizard of Oz ... 30.000000\n", "4133 The Beekeeper's Apprentice (Mary Russell, #1) ... 38.000000\n", "4134 Safe Harbour ... 28.000000\n", "4135 Little House in the Big Woods (Little House, #1) ... 34.000000\n", "4136 Snow ... 33.000000\n", "4137 The Morganville Vampires, Volume 3 (The Morgan... ... 26.000000\n", "4138 Bright Side (Bright Side, #1) ... 31.000000\n", "4139 Physics of the Future: How Science Will Shape ... ... 30.000000\n", "4140 The Girl with the Dragon Tattoo (Millennium, #1) ... 45.000000\n", "4141 Pale Blue Dot: A Vision of the Human Future in... ... 28.000000\n", "4142 Confess ... 37.000000\n", "4143 The Distant Hours ... 37.000000\n", "4144 I Wrote This For You ... 35.000000\n", "4145 The Invention of Hugo Cabret ... 33.000000\n", "4146 Cold Mountain ... 41.000000\n", "4147 Fiddler on the Roof ... 14.000000\n", "4148 Portnoy's Complaint ... 33.000000\n", "4149 Once (Eve, #2) ... 34.000000\n", "4150 Skipping Christmas ... 34.000000\n", "4151 Still Life with Bread Crumbs ... 28.000000\n", "4152 Never Have I Ever (The Lying Game, #2) ... 33.000000\n", "4153 Story of a Girl ... 30.000000\n", "4154 The Lover's Dictionary ... 34.000000\n", "4155 The Chocolate War (Chocolate War, #1) ... 33.000000\n", "4156 The Tell-Tale Heart and Other Writings ... 29.000000\n", "4157 The House at Pooh Corner (Winnie-the-Pooh, #2) ... 36.000000\n", "4158 A Work in Progress ... 32.000000\n", "4159 Requiem (Providence, #2) ... 31.000000\n", "4160 Something Borrowed (Darcy & Rachel, #1) ... 38.000000\n", "4161 Bloodlust (The Vampire Diaries: Stefan's Diari... ... 31.000000\n", "4162 The Red House ... 33.000000\n", "4163 Physics of the Impossible: A Scientific Explor... ... 28.000000\n", "4164 The Memory Keeper's Daughter ... 38.000000\n", "4165 Wideacre (The Wideacre Trilogy, #1) ... 36.000000\n", "4166 Fire and Ice (Warriors, #2) ... 31.000000\n", "4167 Rumour Has It ... 32.000000\n", "4168 Goddess Interrupted (Goddess Test, #2) ... 32.000000\n", "4169 Starlight (Warriors: The New Prophecy, #4) ... 33.000000\n", "4170 Two By Two ... 32.000000\n", "4171 Emily of New Moon (Emily, #1) ... 35.000000\n", "4172 Girls in Pants: The Third Summer of the Sister... ... 36.000000\n", "4173 Island of the Blue Dolphins (Island of the Blu... ... 36.000000\n", "4174 War Brides ... 32.000000\n", "4175 Fantastic Mr. Fox ... 37.000000\n", "4176 Unbelievable (Pretty Little Liars, #4) ... 35.000000\n", "4177 The Last Anniversary ... 30.000000\n", "4178 Hell House ... 40.000000\n", "4179 When Nietzsche Wept ... 33.000000\n", "4180 Inherent Vice ... 37.000000\n", "4181 Hollywood ... 31.000000\n", "4182 Shopaholic to the Rescue (Shopaholic, #8) ... 30.000000\n", "4183 Père Goriot ... 30.000000\n", "4184 Salem Falls ... 36.000000\n", "4185 Autobiography of a Face ... 19.000000\n", "4186 The Complete Clive Barker's The Great And Secr... ... 22.000000\n", "4187 My Life with the Walter Boys (My Life with the... ... 32.000000\n", "4188 Let It Snow: Three Holiday Romances ... 31.000000\n", "4189 The House on Mango Street ... 32.000000\n", "4190 The Glassblower ... 31.000000\n", "4191 If Tomorrow Comes (Tracy Whitney Series, #1) ... 43.000000\n", "4192 Season of Mists (The Sandman #4) ... 37.000000\n", "4193 Deep Six (Dirk Pitt, #7) ... 35.000000\n", "4194 Maximum Security (Cherub, #3) ... 34.000000\n", "4195 The Highlander's Touch (Highlander, #3) ... 33.000000\n", "4196 Big Girl Panties ... 29.000000\n", "4197 The Complete Short Stories ... 38.000000\n", "4198 Shopaholic & Baby (Shopaholic, #5) ... 38.000000\n", "4199 Uncommon Criminals (Heist Society, #2) ... 35.000000\n", "4200 Dreamland ... 34.000000\n", "4201 The Gnostic Gospels ... 20.000000\n", "4202 Lover Revealed (Black Dagger Brotherhood, #4) ... 34.000000\n", "4203 Finally (Willow Falls, #2) ... 31.000000\n", "4204 The Signature of All Things ... 32.000000\n", "4205 The Kindly Ones (The Sandman #9) ... 36.000000\n", "4206 The Darkest Passion (Lords of the Underworld #5) ... 33.000000\n", "4207 Lover Awakened (Black Dagger Brotherhood, #3) ... 35.000000\n", "4208 Slowness ... 29.000000\n", "4209 The River Why ... 35.000000\n", "4210 Midnight ... 38.000000\n", "4211 When We Were Very Young (Winnie-the-Pooh, #3) ... 34.000000\n", "4212 Perfect (Pretty Little Liars, #3) ... 35.000000\n", "4213 The Sight (Warriors: Power of Three, #1) ... 31.000000\n", "4214 The Imperfectionists ... 34.000000\n", "4215 A Beautiful Dark (A Beautiful Dark, #1) ... 28.000000\n", "4216 Remember Me? ... 38.000000\n", "4217 What She Left Behind ... 29.000000\n", "4218 Stone Mattress: Nine Tales ... 31.000000\n", "4219 Mornings in Jenin ... 32.000000\n", "4220 Sweet Tooth ... 33.000000\n", "4221 Back When We Were Grownups ... 35.000000\n", "4222 The Lady and the Unicorn ... 36.000000\n", "4223 Outpost (Razorland, #2) ... 33.000000\n", "4224 A Bear Called Paddington (Paddington, #1) ... 33.000000\n", "4225 Where the Heart Is ... 36.000000\n", "4226 A Tale Dark & Grimm (A Tale Dark & Grimm, #1) ... 28.000000\n", "4227 We Were Liars ... 26.000000\n", "4228 Five on a Treasure Island (Famous Five, #1) ... 34.000000\n", "4229 Leviathan ... 20.000000\n", "4230 Leviathan ... 20.000000\n", "4231 The Penderwicks on Gardam Street (The Penderwi... ... 34.000000\n", "4232 Tai-Pan (Asian Saga, #2) ... 41.000000\n", "4233 These Is My Words: The Diary of Sarah Agnes Pr... ... 36.000000\n", "4234 Three Wishes ... 28.000000\n", "4235 Ugly Love ... 37.000000\n", "4236 Tick Tock ... 38.000000\n", "4237 The Incredible Journey ... 30.000000\n", "4238 The Fall ... 39.000000\n", "4239 The Edible Woman ... 39.000000\n", "4240 Five Run Away Together (Famous Five, #3) ... 33.000000\n", "4241 Behind the Scenes at the Museum ... 38.000000\n", "4242 Under the Wide and Starry Sky ... 30.000000\n", "4243 The Night Sister ... 23.000000\n", "4244 Ariel ... 34.000000\n", "4245 White Girl Problems ... 34.000000\n", "4246 Us ... 35.000000\n", "4247 The Magic of Reality: How We Know What's Reall... ... 30.000000\n", "4248 Firestar's Quest (Warriors Super Edition, #1) ... 33.000000\n", "4249 Who Do You Love ... 30.000000\n", "4250 Angelfire (Angelfire, #1) ... 30.000000\n", "4251 The Enchantress of Florence ... 38.000000\n", "4252 The Beast (Black Dagger Brotherhood, #14) ... 28.000000\n", "4253 The Borrowers (The Borrowers, #1) ... 31.000000\n", "4254 Nancy Drew: #1-64 ... 24.000000\n", "4255 Don't Die, My Love ... 29.000000\n", "4256 The Darkest Whisper (Lords of the Underworld #4) ... 32.000000\n", "4257 The Truth According to Us ... 28.000000\n", "4258 Downtown Owl ... 32.000000\n", "4259 Someone Like You ... 37.000000\n", "4260 Vespers Rising (The 39 Clues, #11) ... 31.000000\n", "4261 Princess in Waiting (The Princess Diaries, #4) ... 36.000000\n", "4262 Midnight Awakening (Midnight Breed, #3) ... 34.000000\n", "4263 The Six Sacred Stones (Jack West Jr, #2) ... 38.000000\n", "4264 The Things We Do for Love ... 32.000000\n", "4265 Leaving Paradise (Leaving Paradise, #1) ... 36.000000\n", "4266 The Lying Game (The Lying Game, #1) ... 33.000000\n", "4267 This Is What Happy Looks Like (This is What Ha... ... 34.000000\n", "4268 Just So Stories ... 38.000000\n", "4269 The Perfume Collector ... 29.000000\n", "4270 Just One Year (Just One Day, #2) ... 33.000000\n", "4271 Twenty Wishes (Blossom Street, #5) ... 32.000000\n", "4272 Keeping Faith ... 37.000000\n", "4273 The Last Summer (of You and Me) ... 37.000000\n", "4274 Death by Black Hole - And Other Cosmic Quandaries ... 27.000000\n", "4275 Living History ... 25.000000\n", "4276 Veil of Midnight (Midnight Breed, #5) ... 33.000000\n", "4277 Winter Garden ... 34.000000\n", "4278 While My Sister Sleeps ... 29.000000\n", "4279 The Sword Thief (The 39 Clues, #3) ... 31.000000\n", "4280 Ronia, the Robber's Daughter ... 30.000000\n", "4281 Centennial ... 39.000000\n", "4282 Up from the Grave (Night Huntress, #7) ... 32.000000\n", "4283 Killer (Pretty Little Liars, #6) ... 34.000000\n", "4284 Reliquary (Pendergast, #2) ... 34.000000\n", "4285 Z: A Novel of Zelda Fitzgerald ... 34.000000\n", "4286 Midnight (Warriors: The New Prophecy, #1) ... 33.000000\n", "4287 The Silent Sister (Riley MacPherson, #1) ... 30.000000\n", "4288 Miles to Go (The Walk, #2) ... 29.000000\n", "4289 Maybe Not (Maybe, #1.5) ... 32.000000\n", "4290 Fallout (Crank, #3) ... 32.000000\n", "4291 The Medusa Plot (39 Clues: Cahills vs. Vespers... ... 30.000000\n", "4292 Beautiful Disaster (Beautiful, #1) ... 38.000000\n", "4293 The Given Day (Coughlin #1) ... 35.000000\n", "4294 Eternal Rider (Lords of Deliverance, #1, Demon... ... 34.000000\n", "4295 Orphan Number Eight ... 32.000000\n", "4296 On the Island (On the Island, #1) ... 34.000000\n", "4297 Whistling Past the Graveyard ... 31.000000\n", "4298 My Brilliant Friend (The Neapolitan Novels #1) ... 32.000000\n", "4299 44 Scotland Street (44 Scotland Street, #1) ... 36.000000\n", "4300 Light on Snow ... 32.000000\n", "4301 The Wonderful Story of Henry Sugar and Six More ... 29.000000\n", "4302 When We Were Orphans ... 39.000000\n", "4303 The Exorcist ... 41.000000\n", "4304 Tricks (Tricks, #1) ... 34.000000\n", "4305 The Sense of an Ending ... 33.000000\n", "4306 The Cobra Event ... 31.000000\n", "4307 Someday, Someday, Maybe ... 34.000000\n", "4308 The Darkest Secret (Lords of the Underworld #7) ... 33.000000\n", "4309 The Story of Beautiful Girl ... 34.000000\n", "4310 Stupeur et tremblements ... 25.000000\n", "4311 Sisterland ... 29.000000\n", "4312 Once We Were Brothers ... 33.000000\n", "4313 Dark Needs at Night's Edge (Immortals After Da... ... 34.000000\n", "4314 Princess in Love (The Princess Diaries, #3) ... 36.000000\n", "4315 Flawless (Pretty Little Liars, #2) ... 35.000000\n", "4316 I Never Promised You a Rose Garden ... 37.000000\n", "4317 Christy ... 37.000000\n", "4318 The Friday Night Knitting Club (Friday Night K... ... 36.000000\n", "4319 A Man Called Ove ... 33.000000\n", "4320 Lunar Park ... 32.000000\n", "4321 Serena ... 32.000000\n", "4322 Wreck This Journal ... 31.000000\n", "4323 Hannibal (Hannibal Lecter, #3) ... 40.000000\n", "4324 Needful Things ... 42.000000\n", "4325 Farewell, My Lovely (Philip Marlowe, #2) ... 32.000000\n", "4326 Shall We Tell the President? (Kane & Abel, #3) ... 37.000000\n", "4327 Royal Blood (Vampire Kisses, #6) ... 32.000000\n", "4328 The Fourth Estate ... 30.000000\n", "4329 The Man Who Mistook His Wife for a Hat and Oth... ... 37.000000\n", "4330 The Lost Symbol (Robert Langdon, #3) ... 39.000000\n", "4331 Dance of Death (Pendergast, #6; Diogenes, #2) ... 37.000000\n", "4332 The Cellar (The Cellar, #1) ... 33.000000\n", "4333 The Emperor's Children ... 31.000000\n", "4334 On the Jellicoe Road ... 34.000000\n", "4335 The Return of Sherlock Holmes ... 39.000000\n", "4336 The House at Tyneford ... 35.000000\n", "4337 Picture Perfect ... 35.000000\n", "4338 Cosmopolis ... 32.000000\n", "4339 I'll Give You the Sun ... 34.000000\n", "4340 Nimona ... 25.000000\n", "4341 Trail of Broken Wings ... 26.000000\n", "4342 The Bronze Horseman (The Bronze Horseman, #1) ... 39.000000\n", "4343 Billy Lynn's Long Halftime Walk ... 31.000000\n", "4344 Titus Andronicus ... 31.000000\n", "4345 The Disreputable History of Frankie Landau-Banks ... 33.000000\n", "4346 Heartless (Pretty Little Liars, #7) ... 34.000000\n", "4347 Best Friends for Never (The Clique, #2) ... 26.000000\n", "4348 The Boston Girl ... 27.000000\n", "4349 Never Never (Never Never, #1) ... 30.000000\n", "4350 The Wheel of Darkness (Pendergast, #8) ... 36.000000\n", "4351 Pandemonium (Delirium, #2) ... 32.000000\n", "4352 The Rescue ... 38.000000\n", "4353 Afterwards ... 33.000000\n", "4354 Desperation ... 39.000000\n", "4355 The Almost Moon ... 38.000000\n", "4356 The Grand Design ... 30.000000\n", "4357 Humans of New York: Stories ... 28.000000\n", "4358 Sugar and Spice (L.A. Candy, #3) ... 30.000000\n", "4359 Identical ... 33.000000\n", "4360 Going Solo ... 38.000000\n", "4361 The Waste Land and Other Poems ... 36.000000\n", "4362 In the Unlikely Event ... 30.000000\n", "4363 Thank You for Smoking ... 35.000000\n", "4364 Belzhar ... 28.000000\n", "4365 Out of the Easy ... 34.000000\n", "4366 The Complete Poems of Emily Dickinson ... 34.000000\n", "4367 Harry, a History: The True Story of a Boy Wiza... ... 36.000000\n", "4368 The Little Paris Bookshop ... 32.000000\n", "4369 Er ist wieder da ... 38.000000\n", "4370 The Witch Of Portobello ... 38.000000\n", "4371 The Gates of Rome (Emperor, #1) ... 41.000000\n", "4372 Wishin' and Hopin' ... 32.000000\n", "4373 Don't Go ... 31.000000\n", "4374 The Obituary Writer ... 24.000000\n", "4375 The Charterhouse of Parma ... 24.000000\n", "4376 Blink ... 33.000000\n", "4377 House Rules ... 36.000000\n", "4378 The Secret Life of CeeCee Wilkes ... 31.000000\n", "4379 The Queen's Fool (The Plantagenet and Tudor No... ... 41.000000\n", "4380 Psycho ... 36.000000\n", "4381 The Pleasure of My Company ... 34.000000\n", "4382 Family Matters ... 34.000000\n", "4383 Please Kill Me: The Uncensored Oral History of... ... 20.000000\n", "4384 The Feast of the Goat ... 29.000000\n", "4385 Lover Enshrined (Black Dagger Brotherhood, #6) ... 34.000000\n", "4386 Scarlet (Scarlet, #1) ... 31.000000\n", "4387 The Gun Seller ... 38.000000\n", "4388 Reasons to Stay Alive ... 30.000000\n", "4389 Adultery ... 34.000000\n", "4390 Doctor No (James Bond, #6) ... 41.000000\n", "4391 Tales of the City (Tales of the City, #1) ... 38.000000\n", "4392 What Alice Forgot ... 29.000000\n", "4393 Knocked Out by My Nunga-Nungas (Confessions of... ... 34.000000\n", "4394 The Secret of the Old Clock (Nancy Drew, #1) ... 34.000000\n", "4395 Winter in Madrid ... 35.000000\n", "4396 Ahab's Wife, or The Star-Gazer ... 35.000000\n", "4397 Fly Away (Firefly Lane, #2) ... 33.000000\n", "4398 Twilight (Warriors: The New Prophecy, #5) ... 33.000000\n", "4399 Wintergirls ... 31.000000\n", "4400 Emily Climbs (Emily, #2) ... 35.000000\n", "4401 All My Sons ... 36.000000\n", "4402 Shopaholic Ties the Knot (Shopaholic, #3) ... 38.000000\n", "4403 Last Train to Istanbul ... 31.000000\n", "4404 Dark River (Warriors: Power of Three, #2) ... 31.000000\n", "4405 Worlds' End (The Sandman #8) ... 37.000000\n", "4406 I Heart New York (I Heart, #1) ... 34.000000\n", "4407 The Complete Phantom of the Opera ... 23.000000\n", "4408 Distant Shores ... 30.000000\n", "4409 The Adventures of Augie March ... 31.000000\n", "4410 Eden (Providence, #3) ... 28.000000\n", "4411 Circle of Friends ... 36.000000\n", "4412 The Secret of the Nagas (Shiva Trilogy #2) ... 36.000000\n", "4413 The Forgetting Time ... 27.000000\n", "4414 Belinda ... 37.000000\n", "4415 The Smoke Jumper ... 35.000000\n", "4416 Pudd'nhead Wilson ... 32.000000\n", "4417 Burn for Burn (Burn for Burn, #1) ... 28.000000\n", "4418 The Invention of Morel ... 29.000000\n", "4419 The All-Girl Filling Station's Last Reunion ... 29.000000\n", "4420 All Things Wise and Wonderful ... 43.000000\n", "4421 Skippy Dies ... 38.000000\n", "4422 H.M.S. Surprise ... 34.000000\n", "4423 State of Wonder ... 35.000000\n", "4424 Brooklyn ... 35.000000\n", "4425 The Girl on the Train ... 33.000000\n", "4426 City on Fire ... 33.000000\n", "4427 The Whistling Season ... 35.000000\n", "4428 More Tales of the City (Tales of the City, #2) ... 35.000000\n", "4429 The Devil Wears Prada (The Devil Wears Prada, #1) ... 41.000000\n", "4430 Back on Blossom Street (Blossom Street, #4) ... 30.000000\n", "4431 Ordinary Grace ... 28.000000\n", "4432 Covet (Fallen Angels, #1) ... 30.000000\n", "4433 Snow Falling on Cedars ... 35.000000\n", "4434 I Know This Much Is True ... 39.000000\n", "4435 Love Bites (Vampire Kisses, #7) ... 31.000000\n", "4436 A Suitable Boy (A Suitable Boy, #1) ... 35.000000\n", "4437 Love Letters to the Dead ... 32.000000\n", "4438 A Hidden Fire (Elemental Mysteries, #1) ... 32.000000\n", "4439 Pleasure Unbound (Demonica, #1) ... 31.000000\n", "4440 The Keep ... 32.000000\n", "4441 Calling Me Home ... 29.000000\n", "4442 Pigs in Heaven ... 33.000000\n", "4443 The Darkest Night (Lords of the Underworld #1) ... 32.000000\n", "4444 Winter Street (Winter, #1) ... 25.000000\n", "4445 The Wedding Girl ... 33.000000\n", "4446 77 Shadow Street (Pendleton, #1) ... 38.000000\n", "4447 Everything, Everything ... 32.000000\n", "4448 My Friend Flicka (Flicka, #1) ... 29.000000\n", "4449 Necessary Lies (Necessary Lies, #1) ... 27.000000\n", "4450 The Complete Stories ... 19.500000\n", "4451 The Complete Stories ... 19.500000\n", "4452 The Girl Who Kicked the Hornet's Nest (Millenn... ... 40.000000\n", "4453 Little Lord Fauntleroy ... 36.000000\n", "4454 The Darkest Lie (Lords of the Underworld #6) ... 34.000000\n", "4455 The Taming of the Queen (The Plantagenet and T... ... 29.000000\n", "4456 Lilac Girls ... 26.000000\n", "4457 Ask the Dust (Arturo Bandini, #3) ... 36.000000\n", "4458 The Fourth Hand ... 32.000000\n", "4459 Temple ... 38.000000\n", "4460 Dawn (Warriors: The New Prophecy, #3) ... 34.000000\n", "4461 Richard II ... 32.000000\n", "4462 Secrets of a Charmed Life ... 25.000000\n", "4463 The Cask of Amontillado ... 33.000000\n", "4464 Life and Other Near-Death Experiences ... 26.000000\n", "4465 Midnight's Children ... 39.000000\n", "4466 Lover Unbound (Black Dagger Brotherhood, #5) ... 33.000000\n", "4467 When Christ and His Saints Slept (Henry II & ... ... 35.000000\n", "4468 On Chesil Beach ... 35.000000\n", "4469 Fourth Grave Beneath My Feet (Charley Davidson... ... 33.000000\n", "4470 Dancing in My Nuddy-Pants (Confessions of Geor... ... 31.000000\n", "4471 Dark Desires After Dusk (Immortals After Dark #6) ... 31.000000\n", "4472 Lila (Gilead, #3) ... 31.000000\n", "4473 The Shack ... 39.000000\n", "4474 The Wedding Dress ... 28.000000\n", "4475 North of Beautiful ... 33.000000\n", "4476 Songs of Willow Frost ... 32.000000\n", "4477 Small Steps (Holes, #2) ... 34.000000\n", "4478 Perfect Chemistry (Perfect Chemistry, #1) ... 34.000000\n", "4479 How to Talk to a Widower ... 28.000000\n", "4480 Big Red (Big Red, #1) ... 25.000000\n", "4481 Fortune's Rocks ... 34.000000\n", "4482 Dragon's Oath (House of Night Novellas, #1) ... 32.000000\n", "4483 Lemony Snicket: The Unauthorized Autobiography... ... 30.000000\n", "4484 A Wrinkle in Time: The Graphic Novel ... 23.000000\n", "4485 The Mauritius Command ... 34.000000\n", "4486 Sole Survivor ... 35.000000\n", "4487 Love & Misadventure ... 32.000000\n", "4488 The Walk (The Walk, #1) ... 31.000000\n", "4489 Between Sisters ... 34.000000\n", "4490 Mates, Dates, and Inflatable Bras (Mates, Date... ... 22.000000\n", "4491 Where'd You Go, Bernadette ... 32.000000\n", "4492 Silver Blaze (The Memoirs of Sherlock Holmes, #1) ... 32.000000\n", "4493 The Last Time We Say Goodbye ... 29.000000\n", "4494 All Creatures Great and Small (All Creatures G... ... 42.000000\n", "4495 Night of the Living Dummy (Goosebumps, #7) ... 33.000000\n", "4496 To Have and to Hold ... 34.000000\n", "4497 The Compound (The Compound, #1) ... 27.000000\n", "4498 The Sandman: King of Dreams ... 21.000000\n", "4499 We Are Not Ourselves ... 33.000000\n", "4500 People of the Book ... 35.000000\n", "4501 We'll Always Have Summer (Summer, #3) ... 36.000000\n", "4502 Blackmoore ... 36.000000\n", "4503 Scoop ... 25.000000\n", "4504 The Statistical Probability of Love at First S... ... 33.000000\n", "4505 Paradiso (The Divine Comedy, #3) ... 30.000000\n", "4506 All He Ever Wanted ... 30.000000\n", "4507 The Husband's Secret ... 26.000000\n", "4508 Career of Evil (Cormoran Strike, #3) ... 32.000000\n", "4509 A Bend in the River ... 29.000000\n", "4510 Valley of Silence (Circle Trilogy, #3) ... 39.000000\n", "4511 Homecoming (Tillerman Cycle, #1) ... 32.000000\n", "4512 Death in Venice and Other Tales ... 25.000000\n", "4513 An Anthropologist on Mars: Seven Paradoxical T... ... 33.000000\n", "4514 Aleph ... 37.000000\n", "4515 Seven Deadly Wonders (Jack West Jr, #1) ... 38.000000\n", "4516 Deception Point ... 38.000000\n", "4517 Please Ignore Vera Dietz ... 29.000000\n", "4518 Sisters ... 19.500000\n", "4519 Sisters ... 19.500000\n", "4520 The True Confessions of Charlotte Doyle ... 28.000000\n", "4521 Archangel's Blade (Guild Hunter, #4) ... 33.000000\n", "4522 Maybe Someday (Maybe, #1) ... 37.000000\n", "4523 The Readers of Broken Wheel Recommend ... 32.000000\n", "4524 Belong to Me ... 35.000000\n", "4525 Nights of Rain and Stars ... 30.000000\n", "4526 Rules of Civility ... 32.000000\n", "4527 Last Chance to See ... 29.000000\n", "4528 Selected Poems ... 10.250000\n", "4529 Selected Poems ... 10.250000\n", "4530 Selected Poems ... 10.250000\n", "4531 Selected Poems ... 10.250000\n", "4532 Outer Dark ... 33.000000\n", "4533 Amy and Isabelle ... 33.000000\n", "4534 In the Company of the Courtesan ... 37.000000\n", "4535 Before I Go ... 24.000000\n", "4536 Case Histories (Jackson Brodie #1) ... 38.000000\n", "4537 A Vintage Affair ... 30.000000\n", "4538 Boy Meets Girl (Boy, #2) ... 35.000000\n", "4539 Sold ... 29.000000\n", "4540 The Death of Bunny Munro ... 34.000000\n", "4541 The Epic of Gilgamesh ... 35.000000\n", "4542 The Penderwicks: A Summer Tale of Four Sisters... ... 33.000000\n", "4543 MacRieve (Immortals After Dark, #14) ... 31.000000\n", "4544 Master of the Game ... 37.000000\n", "4545 The Man From St. Petersburg ... 35.000000\n", "4546 All Fall Down ... 29.000000\n", "4547 Milkweed ... 30.000000\n", "4548 Honolulu ... 32.000000\n", "4549 Sam's Letters to Jennifer ... 36.000000\n", "4550 Britt-Marie Was Here ... 30.000000\n", "4551 When I'm Gone ... 27.000000\n", "4552 Catalyst ... 29.000000\n", "4553 Me & Emma ... 33.000000\n", "4554 It Ends with Us ... 34.000000\n", "4555 Losing Hope (Hopeless, #2) ... 31.000000\n", "4556 Just One Day (Just One Day, #1) ... 35.000000\n", "4557 Summer of My German Soldier (Summer of My Germ... ... 29.000000\n", "4558 The Annotated Sherlock Holmes: The Four Novels... ... 25.000000\n", "4559 Fire Burn and Cauldron Bubble (Jolie Wilkins, #1) ... 23.000000\n", "4560 A Wedding in December ... 32.000000\n", "4561 Home Again ... 30.000000\n", "4562 16 Lighthouse Road (Cedar Cove, #1) ... 30.000000\n", "4563 The Enchantress Returns (The Land of Stories, #2) ... 39.000000\n", "4564 The Hangman's Daughter (The Hangman's Daughter... ... 30.000000\n", "4565 Why We Broke Up ... 35.000000\n", "4566 The House of God ... 35.000000\n", "4567 Scion of Ikshvaku (RamChandra, #1) ... 25.000000\n", "4568 The Painter ... 30.000000\n", "4569 Hold Still ... 28.000000\n", "4570 13 Hours: The Inside Account of What Really Ha... ... 30.000000\n", "4571 Good Night, Mr. Tom ... 35.000000\n", "4572 Kristy's Great Idea (The Baby-Sitters Club, #1) ... 24.000000\n", "4573 One Breath Away ... 28.000000\n", "4574 Beauty Queens ... 32.000000\n", "4575 The Red Garden ... 30.000000\n", "4576 The Shoemaker's Wife ... 30.000000\n", "4577 Looking for Alibrandi ... 33.000000\n", "4578 The Waste Land ... 33.000000\n", "4579 What Happened to Goodbye ... 35.000000\n", "4580 American Sniper: The Autobiography of the Most... ... 35.000000\n", "4581 Angus, Thongs and Full-Frontal Snogging (Confe... ... 30.000000\n", "4582 The Blind Side: Evolution of a Game ... 36.000000\n", "4583 A Little Something Different ... 33.000000\n", "4584 Sin Undone (Demonica #5) ... 32.000000\n", "4585 You Know You Love Me (Gossip Girl, #2) ... 31.000000\n", "4586 The Law of Moses (The Law of Moses, #1) ... 33.000000\n", "4587 Ironweed ... 23.000000\n", "4588 Germinal (Les Rougon-Macquart, #13) ... 30.000000\n", "4589 A Game of Thrones: The Graphic Novel, Vol. 1 ... 36.000000\n", "4590 Flight of the Old Dog (Patrick McLanahan, #1) ... 22.000000\n", "4591 Wonder ... 33.000000\n", "4592 Since You've Been Gone ... 34.000000\n", "4593 The Light Between Oceans ... 34.000000\n", "4594 Dairy Queen (Dairy Queen, #1) ... 28.000000\n", "4595 Kiss of Midnight (Midnight Breed, #1) ... 30.000000\n", "4596 Carmilla ... 32.000000\n", "4597 Until I Find You ... 35.000000\n", "4598 Every Soul a Star ... 29.000000\n", "4599 The Little Coffee Shop of Kabul ... 16.000000\n", "4600 Willow ... 32.000000\n", "4601 11 Birthdays (Willow Falls, #1) ... 32.000000\n", "4602 Dawn on a Distant Shore (Wilderness, #2) ... 34.000000\n", "4603 Roses ... 31.000000\n", "4604 On Mystic Lake ... 31.000000\n", "4605 When Crickets Cry ... 32.000000\n", "4606 Frederica ... 41.000000\n", "4607 First Love ... 36.000000\n", "4608 Collected Poems ... 19.000000\n", "4609 Touching Spirit Bear (Spirit Bear, #1) ... 24.000000\n", "4610 Away Laughing on a Fast Camel (Confessions of ... ... 34.000000\n", "4611 Little Altars Everywhere ... 34.000000\n", "4612 The Midwife's Confession ... 28.000000\n", "4613 The Killing (Cherub, #4) ... 31.000000\n", "4614 The Egypt Game (Game, #1) ... 27.000000\n", "4615 The Particular Sadness of Lemon Cake ... 34.000000\n", "4616 Darth Paper Strikes Back (Origami Yoda, #2) ... 23.000000\n", "4617 The Daughter of Time (Inspector Alan Grant, #5) ... 38.000000\n", "4618 Dreams of a Dark Warrior (Immortals After Dark... ... 32.000000\n", "4619 The Girls' Guide to Hunting and Fishing ... 36.000000\n", "4620 Moonraker (James Bond, #3) ... 39.000000\n", "4621 The Other Queen (The Plantagenet and Tudor Nov... ... 38.000000\n", "4622 The Vow: The Kim & Krickitt Carpenter Story ... 25.000000\n", "4623 Lover Unleashed (Black Dagger Brotherhood, #9) ... 32.000000\n", "4624 Boy Meets Boy ... 32.000000\n", "4625 I am Charlotte Simmons ... 35.000000\n", "4626 Collected Poems, 1909-1962 ... 28.000000\n", "4627 China Dolls ... 27.000000\n", "4628 Ladder of Years ... 34.000000\n", "4629 Dune Road ... 29.000000\n", "4630 We Were the Mulvaneys ... 36.000000\n", "4631 The Cat's Table ... 34.000000\n", "4632 Boy: Tales of Childhood ... 37.000000\n", "4633 The Color of Secrets ... 22.000000\n", "4634 Sweethearts ... 31.000000\n", "4635 Beauty's Release (Sleeping Beauty, #3) ... 29.000000\n", "4636 Rush Too Far (Rosemary Beach, #4; Too Far, #4) ... 35.000000\n", "4637 Prayers for Sale ... 30.000000\n", "4638 SilverFin (Young Bond, #1) ... 29.000000\n", "4639 Reading Lolita in Tehran ... 30.000000\n", "4640 My True Love Gave to Me: Twelve Holiday Stories ... 29.000000\n", "4641 Testimony ... 32.000000\n", "4642 We Are All Completely Beside Ourselves ... 35.000000\n", "4643 The Ghost Road (Regeneration, #3) ... 32.000000\n", "4644 The Silver Star ... 30.000000\n", "4645 La vida del Lazarillo de Tormes ... 26.000000\n", "4646 The Taming of the Shrew ... 37.000000\n", "4647 Lord John and the Brotherhood of the Blade (L... ... 37.000000\n", "4648 Is It Just Me? ... 35.000000\n", "4649 Blessings ... 32.000000\n", "4650 Beauty and the Beast ... 28.000000\n", "4651 Gaudy Night (Lord Peter Wimsey, #12) ... 38.000000\n", "4652 Secrets of a Shoe Addict (Shoe Addict, #2) ... 26.000000\n", "4653 The Absolutely True Diary of a Part-Time Indian ... 30.000000\n", "4654 The Winner Stands Alone ... 36.000000\n", "4655 Finding Cinderella (Hopeless, #2.5) ... 31.000000\n", "4656 Katherine ... 41.000000\n", "4657 The River (Brian's Saga, #2) ... 34.000000\n", "4658 The Pagan Stone (Sign of Seven, #3) ... 38.000000\n", "4659 Bless Me, Ultima ... 34.000000\n", "4660 The Midwife's Revolt (The Midwife Series, #1) ... 26.000000\n", "4661 Live by Night (Coughlin, #2) ... 30.000000\n", "4662 Bastard Out of Carolina ... 37.000000\n", "4663 The Valley of Fear ... 40.000000\n", "4664 Like the Flowing River ... 35.000000\n", "4665 My Family and Other Animals (Corfu Trilogy, #1) ... 41.000000\n", "4666 Black Holes and Baby Universes ... 22.000000\n", "4667 Five Go to Smuggler's Top (Famous Five, #4) ... 32.000000\n", "4668 Maybe in Another Life ... 27.000000\n", "4669 The Snowman ... 22.000000\n", "4670 The Lifeboat ... 29.000000\n", "4671 The Wave ... 32.000000\n", "4672 Twisted (Pretty Little Liars, #9) ... 32.000000\n", "4673 Life is Elsewhere ... 31.000000\n", "4674 Midnight in Austenland (Austenland, #2) ... 30.000000\n", "4675 Those Who Save Us ... 39.000000\n", "4676 Abandon ... 28.000000\n", "4677 All Things Bright and Beautiful (All Creatures... ... 40.000000\n", "4678 Henderson the Rain King ... 30.000000\n", "4679 Cut ... 29.000000\n", "4680 The Goldfinch ... 38.000000\n", "4681 Parallel Worlds: A Journey Through Creation, H... ... 26.000000\n", "4682 The Scottish Prisoner (Lord John Grey, #3) ... 34.000000\n", "4683 Zen and the Art of Motorcycle Maintenance: An ... ... 41.000000\n", "4684 Left Neglected ... 33.000000\n", "4685 Brokeback Mountain ... 34.000000\n", "4686 Omerta ... 33.000000\n", "4687 Red Harvest ... 30.000000\n", "4688 The Sandcastle Girls ... 27.000000\n", "4689 L.A. Candy (L.A. Candy, #1) ... 34.000000\n", "4690 The House Girl ... 30.000000\n", "4691 Sweet Little Lies (L.A. Candy, #2) ... 34.000000\n", "4692 Dark Challenge (Dark, #5) ... 33.000000\n", "4693 Rising Sun ... 32.000000\n", "4694 Kiss of a Demon King (Immortals After Dark #7) ... 33.000000\n", "4695 Twelve Angry Men ... 33.000000\n", "4696 The Selfish Gene ... 29.000000\n", "4697 The Other ... 32.000000\n", "4698 Black Order (Sigma Force, #3) ... 37.000000\n", "4699 A Kiss in Time ... 28.000000\n", "4700 The Beginning of Everything ... 31.000000\n", "4701 Girls in White Dresses ... 26.000000\n", "4702 The Hot Zone: The Terrifying True Story of the... ... 31.000000\n", "4703 Girl Waits with Gun (Kopp Sisters, #1) ... 29.000000\n", "4704 Oblomov ... 33.000000\n", "4705 Darker After Midnight (Midnight Breed, #10) ... 33.000000\n", "4706 Reason to Breathe (Breathing, #1) ... 33.000000\n", "4707 Our Souls at Night ... 24.000000\n", "4708 The Little Stranger ... 33.000000\n", "4709 After Ever Happy (After, #4) ... 34.000000\n", "4710 Suttree ... 33.000000\n", "4711 The Secret Chord ... 29.000000\n", "4712 The Clocks (Hercule Poirot, #34) ... 40.000000\n", "4713 A Window Opens ... 26.000000\n", "4714 My Heart and Other Black Holes ... 29.000000\n", "4715 An Ideal Husband ... 32.000000\n", "4716 The Auschwitz Escape ... 30.000000\n", "4717 The Fifth Mountain ... 35.000000\n", "4718 Twenty Years After (The D'Artagnan Romances, #2) ... 36.000000\n", "4719 Everyone Brave is Forgiven ... 31.000000\n", "4720 The Dinner ... 27.000000\n", "4721 The Book of the Dead (Pendergast, #7; Diogenes... ... 38.000000\n", "4722 The Dressmaker ... 31.000000\n", "4723 Run ... 30.000000\n", "4724 Invasion of the Boy Snatchers (The Clique, #4) ... 28.000000\n", "4725 The Death of Kings (Emperor, #2) ... 37.000000\n", "4726 The Twentieth Wife (Taj Mahal Trilogy, #1) ... 34.000000\n", "4727 Americanah ... 34.000000\n", "4728 Dance Upon the Air (Three Sisters Island, #1) ... 38.000000\n", "4729 Burial Rites ... 32.000000\n", "4730 Pet Sematary ... 43.000000\n", "4731 Bunnicula (Bunnicula, #1) ... 23.000000\n", "4732 A New Song (Mitford Years, #5) ... 31.000000\n", "4733 Some Luck (Last Hundred Years: A Family Saga, #1) ... 29.000000\n", "4734 The Little House Collection (Little House, #1-9) ... 32.000000\n", "4735 Perfect (Impulse, #2) ... 31.000000\n", "4736 The Wonder ... 30.000000\n", "4737 Seeds of Yesterday (Dollanganger, #4) ... 37.000000\n", "4738 The Rosie Effect (Don Tillman, #2) ... 35.000000\n", "4739 Measure for Measure ... 34.000000\n", "4740 Can't Wait to Get to Heaven ... 33.000000\n", "4741 The Good Luck of Right Now ... 32.000000\n", "4742 Winger (Winger, #1) ... 31.000000\n", "4743 Providence (Providence, #1) ... 30.000000\n", "4744 Wreckage ... 28.000000\n", "4745 The Penelopiad ... 33.000000\n", "4746 I Am Having So Much Fun Here Without You ... 27.000000\n", "4747 Father Mine (Black Dagger Brotherhood, #6.5) ... 25.000000\n", "4748 The Lords of Discipline ... 35.000000\n", "4749 Anybody Out There? (Walsh Family, #4) ... 39.000000\n", "4750 Salt to the Sea ... 30.000000\n", "4751 The Last Don ... 34.000000\n", "4752 The Aleph and Other Stories ... 31.000000\n", "4753 Rogue Lawyer ... 29.000000\n", "4754 The Sea, the Sea ... 33.000000\n", "4755 Body Surfing ... 28.000000\n", "4756 Faithful ... 28.000000\n", "4757 Rose Under Fire (Code Name Verity, #2) ... 30.000000\n", "4758 Man and Boy (Harry Silver, #1) ... 30.000000\n", "4759 Twisted ... 28.000000\n", "4760 The Light in the Ruins ... 27.000000\n", "4761 The Grand Sophy ... 38.000000\n", "4762 Sellevision ... 32.000000\n", "4763 A Hunger Like No Other (Immortals After Dark #2) ... 33.000000\n", "4764 Leaving (Bailey Flanigan, #1) ... 29.000000\n", "4765 Seating Arrangements ... 29.000000\n", "4766 The Bad Seed ... 31.000000\n", "4767 Doll Bones ... 24.000000\n", "4768 Brimstone (Pendergast, #5; Diogenes, #1) ... 37.000000\n", "4769 Braveheart ... 22.000000\n", "4770 Paths of Glory ... 28.000000\n", "4771 Hotel on the Corner of Bitter and Sweet ... 35.000000\n", "4772 Lover at Last (Black Dagger Brotherhood, #11) ... 30.000000\n", "4773 Nora Webster ... 30.000000\n", "4774 The Shell Seekers ... 39.000000\n", "4775 Hey Nostradamus! ... 36.000000\n", "4776 The Marriage of Opposites ... 27.000000\n", "4777 From the Corner of His Eye ... 38.000000\n", "4778 Last Night in Twisted River ... 37.000000\n", "4779 The Year of Magical Thinking ... 28.000000\n", "4780 The Merchant of Venice ... 33.000000\n", "4781 Whiteout ... 37.000000\n", "4782 The Weight of Silence ... 35.000000\n", "4783 Love Comes Softly (Love Comes Softly, #1) ... 37.000000\n", "4784 Keeping the Moon ... 33.000000\n", "4785 Malgudi Days ... 36.000000\n", "4786 Hidden ... 25.000000\n", "4787 Accident ... 24.000000\n", "4788 Horrorstör ... 32.000000\n", "4789 Dark Fire (Dark, #6) ... 32.000000\n", "4790 Heft ... 30.000000\n", "4791 Maitreyi ... 27.000000\n", "4792 Evergreen ... 27.000000\n", "4793 A Briefer History of Time ... 32.000000\n", "4794 The Funhouse ... 34.000000\n", "4795 Raise the Titanic! (Dirk Pitt, #4) ... 35.000000\n", "4796 The Swans of Fifth Avenue ... 26.000000\n", "4797 Hate List ... 31.000000\n", "4798 Princess in the Spotlight (The Princess Diarie... ... 34.000000\n", "4799 Sleeping Beauty Box Set ... 19.000000\n", "4800 Cloudstreet ... 38.000000\n", "4801 A Light in the Window (Mitford Years, #2) ... 37.000000\n", "4802 Zorro ... 40.000000\n", "4803 Point of Retreat (Slammed, #2) ... 32.000000\n", "4804 A Fall of Marigolds ... 25.000000\n", "4805 Never Never: Part Two (Never Never, #2) ... 26.000000\n", "4806 City of Women ... 33.000000\n", "4807 Hallucinations ... 28.000000\n", "4808 The Paris Wife ... 33.000000\n", "4809 American Wife ... 31.000000\n", "4810 You Shall Know Our Velocity! ... 33.000000\n", "4811 The Amateur Marriage ... 32.000000\n", "4812 Miller's Valley ... 27.000000\n", "4813 Sarah's Key ... 37.000000\n", "4814 The Realm of Possibility ... 28.000000\n", "4815 The Haj ... 34.000000\n", "4816 Ready or Not (All-American Girl, #2) ... 34.000000\n", "4817 Mosquitoland ... 31.000000\n", "4818 The One & Only ... 28.000000\n", "4819 Flight Behavior ... 29.000000\n", "4820 The Wake (The Sandman #10) ... 35.000000\n", "4821 Light in August ... 40.000000\n", "4822 Rhett Butler's People ... 38.000000\n", "4823 Lost Lake (Lost Lake, #1) ... 29.000000\n", "4824 Oscar et la dame rose ... 37.000000\n", "4825 The Claiming of Sleeping Beauty (Sleeping Beau... ... 36.000000\n", "4826 The Green Mile, Part 6: Coffey on the Mile ... 36.000000\n", "4827 The Cabinet of Curiosities (Pendergast, #3) ... 39.000000\n", "4828 The Light of the Fireflies ... 29.000000\n", "4829 Midnight in the Garden of Good and Evil ... 40.000000\n", "4830 The Covenant ... 32.000000\n", "4831 JPod ... 37.000000\n", "4832 Girl, Stolen (Girl, Stolen #1) ... 29.000000\n", "4833 The Sound of Glass ... 23.000000\n", "4834 The Pearl That Broke Its Shell ... 28.000000\n", "4835 A Dog's Life: The Autobiography of a Stray ... 32.000000\n", "4836 Memoirs of a Teenage Amnesiac ... 33.000000\n", "4837 The Tortilla Curtain ... 36.000000\n", "4838 Good Grief ... 33.000000\n", "4839 Cloudy With a Chance of Meatballs ... 24.000000\n", "4840 Holy Bible: New International Version ... 38.000000\n", "4841 The Brooklyn Follies ... 35.000000\n", "4842 Reconstructing Amelia ... 28.000000\n", "4843 Self-Reliance and Other Essays ... 27.000000\n", "4844 Dr. Faustus ... 27.000000\n", "4845 One False Note (The 39 Clues, #2) ... 31.000000\n", "4846 Beautiful Ruins ... 32.000000\n", "4847 Amsterdam ... 35.000000\n", "4848 In Her Shoes ... 36.000000\n", "4849 Sandstorm (Sigma Force, #1) ... 35.000000\n", "4850 The Saving Graces ... 34.000000\n", "4851 Visions in Death (In Death, #19) ... 35.000000\n", "4852 Harry Potter and Philosophy: If Aristotle Ran ... ... 20.000000\n", "4853 The Tale of Peter Rabbit ... 34.000000\n", "4854 Under the Net ... 31.000000\n", "4855 The Warlord Wants Forever (Immortals After Dar... ... 27.000000\n", "4856 The Lacuna ... 35.000000\n", "4857 The Fill-In Boyfriend ... 29.000000\n", "4858 The Shop on Blossom Street (Blossom Street, #1) ... 30.000000\n", "4859 The Bite Before Christmas (Argeneau, #15.5; Ni... ... 30.000000\n", "4860 Welcome to Dead House (Goosebumps, #1) ... 33.000000\n", "4861 Sophie's World ... 28.000000\n", "4862 Ladies' Night ... 28.000000\n", "4863 The Disappearing Spoon: And Other True Tales o... ... 29.000000\n", "4864 The Woman Upstairs ... 27.000000\n", "4865 The Opposite of Loneliness: Essays and Stories ... 35.000000\n", "4866 The Pigman (The Pigman, #1) ... 30.000000\n", "4867 All Fall Down (Embassy Row, #1) ... 28.000000\n", "4868 We Are Water ... 32.000000\n", "4869 The Edge of Never (The Edge of Never, #1) ... 34.000000\n", "4870 Redeeming Love ... 29.000000\n", "4871 Breakfast with Buddha ... 31.000000\n", "4872 Breakable (Contours of the Heart, #2) ... 34.000000\n", "4873 The Cay (The Cay, #1) ... 30.000000\n", "4874 Harriet the Spy (Harriet the Spy #1) ... 31.000000\n", "4875 Instructions for a Heatwave ... 31.000000\n", "4876 Jeremy Fink and the Meaning of Life ... 31.000000\n", "4877 The Perfect Son ... 24.000000\n", "4878 The Valley of Amazement ... 34.000000\n", "4879 The Solitude of Prime Numbers ... 34.000000\n", "4880 The Single Girl's To-Do List ... 32.000000\n", "4881 A Short History of Nearly Everything ... 36.000000\n", "4882 Mad Dogs (Cherub, #8) ... 27.000000\n", "4883 Gossip Girl (Gossip Girl, #1) ... 35.000000\n", "4884 Beach Music ... 36.000000\n", "4885 Prep ... 35.000000\n", "4886 The Death of Bees ... 29.000000\n", "4887 The Taking ... 36.000000\n", "4888 Bad Science ... 26.000000\n", "4889 We Never Asked for Wings ... 25.000000\n", "4890 Baudolino ... 36.000000\n", "4891 The Witch of Blackbird Pond ... 34.000000\n", "4892 Blackberry Winter ... 28.000000\n", "4893 The Fourteenth Goldfish ... 20.000000\n", "4894 The Quiche of Death (Agatha Raisin, #1) ... 28.000000\n", "4895 The Lonely Hearts Club (The Lonely Hearts Club... ... 31.000000\n", "4896 Are You There God? It's Me, Margaret ... 27.000000\n", "4897 The Greatest Show on Earth: The Evidence for E... ... 32.000000\n", "4898 Thirteen Moons ... 34.000000\n", "4899 Pygmalion & My Fair Lady ... 22.000000\n", "4900 One Day at Horrorland (Goosebumps, #16) ... 27.000000\n", "4901 Nocturnes: Five Stories of Music and Nightfall ... 31.000000\n", "4902 The Last Runaway ... 28.000000\n", "4903 The Invention of Wings ... 31.000000\n", "4904 Gray Mountain ... 29.000000\n", "4905 The Birth of Venus ... 35.000000\n", "4906 Summer and the City (The Carrie Diaries, #2) ... 34.000000\n", "4907 A Secret Kept ... 33.000000\n", "4908 The Darkest Seduction (Lords of the Underworld... ... 30.000000\n", "4909 The Next Big Thing ... 20.000000\n", "4910 The Adventures of Ook and Gluk, Kung-Fu Caveme... ... 21.000000\n", "4911 Lover Reborn (Black Dagger Brotherhood, #10) ... 30.000000\n", "4912 Say Cheese and Die! (Goosebumps, #4) ... 30.000000\n", "4913 Help for the Haunted ... 26.000000\n", "4914 Mr. Mercedes (Bill Hodges Trilogy, #1) ... 37.000000\n", "4915 Sins of the Night (Dark-Hunter #7) ... 33.000000\n", "4916 The Deep End of the Ocean (Cappadora Family, #1) ... 35.000000\n", "4917 What My Mother Doesn't Know (What My Mother Do... ... 27.000000\n", "4918 Deeper Than Midnight (Midnight Breed, #9) ... 31.000000\n", "4919 Rules of Attraction (Perfect Chemistry, #2) ... 31.000000\n", "4920 The Winter People ... 26.000000\n", "4921 Don't Let Me Go ... 28.000000\n", "4922 The Collected Poems ... 19.000000\n", "4923 The Collected Poems ... 19.000000\n", "4924 The Boy Next Door (Boy, #1) ... 36.000000\n", "4925 Nefertiti ... 36.000000\n", "4926 The It Girl (It Girl, #1) ... 30.000000\n", "4927 The Invisible Bridge ... 31.000000\n", "4928 As Sure as the Dawn (Mark of the Lion, #3) ... 42.000000\n", "4929 The Prince ... 36.000000\n", "4930 The Mysterious Affair at Styles (Hercule Poiro... ... 36.000000\n", "4931 Sleeping Arrangements ... 33.000000\n", "4932 The Universe in a Nutshell ... 24.000000\n", "4933 The Clique (The Clique, #1) ... 26.000000\n", "4934 Luckiest Girl Alive ... 28.000000\n", "4935 The Candymakers (The Candymakers, #1) ... 33.000000\n", "4936 The Cloud Searchers (Amulet, #3) ... 26.000000\n", "4937 Once (Once, #1) ... 29.000000\n", "4938 The First Bad Man ... 29.000000\n", "4939 The Dark Half ... 40.000000\n", "4940 An Instance of the Fingerpost ... 34.000000\n", "4941 Ten Tiny Breaths (Ten Tiny Breaths, #1) ... 33.000000\n", "4942 A Mango-Shaped Space ... 31.000000\n", "4943 By the Time You Read This, I'll Be Dead ... 29.000000\n", "4944 We the Animals ... 28.000000\n", "4945 Witness in Death (In Death, #10) ... 34.000000\n", "4946 The Last Time They Met ... 32.000000\n", "4947 The Tiger's Wife ... 35.000000\n", "4948 Little Town on the Prairie (Little House, #7) ... 31.000000\n", "4949 The Gods of War (Emperor, #4) ... 34.000000\n", "4950 All the Ugly and Wonderful Things ... 29.000000\n", "4951 Texas ... 32.000000\n", "4952 Dark Destiny (Dark, #13) ... 30.000000\n", "4953 The Undomestic Goddess ... 36.000000\n", "4954 The Midwife of Hope River ... 25.000000\n", "4955 My Sunshine Away ... 27.000000\n", "4956 That Summer ... 32.000000\n", "4957 A Night to Remember ... 36.000000\n", "4958 Lust for Life ... 39.000000\n", "4959 Very Good Lives: The Fringe Benefits of Failur... ... 25.000000\n", "4960 The Year of Fog ... 28.000000\n", "4961 Winter Stroll (Winter #2) ... 19.000000\n", "4962 The Persian Pickle Club ... 30.000000\n", "4963 Demon from the Dark (Immortals After Dark #10) ... 33.000000\n", "4964 A Street Cat Named Bob: How One Man and His Ca... ... 35.000000\n", "4965 Saint Anything ... 30.000000\n", "4966 Revenge of the Wannabes (The Clique, #3) ... 27.000000\n", "4967 Little House on the Prairie (Little House, #2) ... 30.000000\n", "4968 The Education of Little Tree ... 34.000000\n", "4969 In One Person ... 34.000000\n", "4970 Second Chance Summer ... 29.000000\n", "4971 The Westing Game ... 38.000000\n", "4972 Silver Girl ... 26.000000\n", "4973 Chesapeake ... 32.000000\n", "4974 Milk and Honey ... 29.000000\n", "4975 Ghost Story ... 38.000000\n", "4976 The Hidden Staircase (Nancy Drew #2) ... 35.000000\n", "4977 China Rich Girlfriend (Crazy Rich Asians #2) ... 29.000000\n", "4978 The Pilgrimage ... 37.000000\n", "4979 Skeletons at the Feast ... 33.000000\n", "4980 Flight ... 31.000000\n", "4981 Rescue ... 30.000000\n", "4982 Rapture in Death (In Death, #4) ... 34.000000\n", "4983 The Julian Chapter (Wonder Story) ... 29.000000\n", "4984 Vinegar Girl ... 29.000000\n", "4985 13 Little Blue Envelopes (Little Blue Envelope... ... 34.000000\n", "4986 Family Pictures ... 29.000000\n", "4987 The Misremembered Man (Tailorstown #1) ... 23.000000\n", "4988 The Beginner's Goodbye ... 27.000000\n", "4989 The Great Santini ... 35.000000\n", "4990 The Case-Book of Sherlock Holmes ... 33.000000\n", "4991 Shakespeare: The World as Stage ... 30.000000\n", "4992 The Secret Between Us ... 29.000000\n", "4993 In the Time of the Butterflies ... 36.000000\n", "4994 Heartburn ... 28.000000\n", "4995 Summerland ... 33.000000\n", "4996 A Beautiful Wedding (Beautiful, #2.5) ... 34.000000\n", "4997 Cutting for Stone ... 37.000000\n", "4998 All I Want is Everything (Gossip Girl, #3) ... 28.000000\n", "4999 Strangers ... 39.000000\n", "5000 Where Things Come Back ... 26.000000\n", "5001 Every Last Word ... 29.000000\n", "5002 The Last Days of Dogtown ... 31.000000\n", "5003 Have a Little Faith: a True Story ... 38.000000\n", "5004 The First Man in Rome (Masters of Rome, #1) ... 41.000000\n", "5005 Beautiful Oblivion (The Maddox Brothers, #1) ... 38.000000\n", "5006 Return to Paradise (Leaving Paradise, #2) ... 34.000000\n", "5007 The Broom of the System ... 35.000000\n", "5008 Lucky (Lucky Santangelo, #2) ... 27.000000\n", "5009 Dark Fire (Matthew Shardlake, #2) ... 32.000000\n", "5010 The Complete Tales ... 33.000000\n", "5011 The 158-Pound Marriage ... 27.000000\n", "5012 What I Thought Was True ... 28.000000\n", "5013 The Ancestor's Tale: A Pilgrimage to the Dawn ... ... 29.000000\n", "5014 The Best Christmas Pageant Ever (The Herdmans #1) ... 31.000000\n", "5015 This Girl (Slammed, #3) ... 31.000000\n", "5016 Brian's Winter (Brian's Saga, #3) ... 31.000000\n", "5017 Out of Egypt (Christ the Lord, #1) ... 36.000000\n", "5018 The House of Silk (Sherlock Holmes, #1) ... 36.000000\n", "5019 Swamplandia! ... 32.000000\n", "5020 Season of Migration to the North ... 27.000000\n", "5021 Shutter Island ... 38.000000\n", "5022 In the Lake of the Woods ... 30.000000\n", "5023 This Song Will Save Your Life ... 31.000000\n", "5024 Jumanji ... 20.000000\n", "5025 Girl in Hyacinth Blue ... 36.000000\n", "5026 Beautiful Sacrifice (The Maddox Brothers, #3) ... 30.000000\n", "5027 Hard Limit (Hacker, #4) ... 32.000000\n", "5028 The Big Four (Hercule Poirot, #5) ... 39.000000\n", "5029 Lie Down with Lions ... 34.000000\n", "5030 Out of the Dark (The Grey Wolves, #4) ... 28.000000\n", "5031 The Black Dagger Brotherhood: An Insider's Guide ... 30.000000\n", "5032 The Mother Tongue: English and How It Got That... ... 31.000000\n", "5033 Five Go Adventuring Again (Famous Five, #2) ... 34.000000\n", "5034 Major Pettigrew's Last Stand ... 31.000000\n", "5035 The Troop ... 37.000000\n", "5036 How to Save a Life ... 25.000000\n", "5037 Forever Peace (The Forever War, #2) ... 31.000000\n", "5038 The Wanderer (Thunder Point, #1) ... 26.000000\n", "5039 The Honk and Holler Opening Soon ... 27.000000\n", "5040 A Gentleman in Moscow ... 32.000000\n", "5041 The Jane Austen Book Club ... 37.000000\n", "5042 Finding Audrey ... 30.000000\n", "5043 The Postmistress ... 29.000000\n", "5044 The Orchardist ... 29.000000\n", "5045 The Peach Keeper ... 29.000000\n", "5046 Those Left Behind (Serenity, #1) ... 32.000000\n", "5047 The Distance Between Us ... 30.000000\n", "5048 Night Train to Lisbon ... 35.000000\n", "5049 Chain Reaction (Perfect Chemistry, #3) ... 32.000000\n", "5050 The Black Cat ... 33.000000\n", "5051 The Lady Elizabeth ... 31.000000\n", "5052 Ape House ... 33.000000\n", "5053 Packing for Mars: The Curious Science of Life ... ... 22.000000\n", "5054 Marley and Me: Life and Love With the World's ... ... 37.000000\n", "5055 The Casual Vacancy ... 17.000000\n", "5056 The Thousand-Dollar Tan Line (Veronica Mars, #1) ... 33.000000\n", "5057 The Vacationers ... 28.000000\n", "5058 Ecstasy Unveiled (Demonica #4) ... 30.000000\n", "5059 You Against Me ... 27.000000\n", "5060 The Silence of the Lambs (Hannibal Lecter, #2) ... 44.000000\n", "5061 The Good House ... 28.000000\n", "5062 Betrayal in Death (In Death, #12) ... 34.000000\n", "5063 Pope Joan ... 38.000000\n", "5064 The Murder on the Links (Hercule Poirot, #2) ... 38.000000\n", "5065 Stones from the River ... 35.000000\n", "5066 Losing It (Losing It, #1) ... 30.000000\n", "5067 The Lake House ... 32.000000\n", "5068 Rikki-Tikki-Tavi ... 28.000000\n", "5069 Desire Unchained (Demonica #2) ... 30.000000\n", "5070 Jemima J ... 37.000000\n", "5071 The List ... 19.000000\n", "5072 The List ... 19.000000\n", "5073 The Royal We ... 28.000000\n", "5074 The Secret Speech (Leo Demidov, #2) ... 31.000000\n", "5075 The Good Earth (House of Earth, #1) ... 39.000000\n", "5076 Going Clear: Scientology, Hollywood, and the P... ... 25.000000\n", "5077 Saga #1 ... 33.000000\n", "5078 Heaven (Casteel, #1) ... 36.000000\n", "5079 Bleachers ... 36.000000\n", "5080 Thus Spoke Zarathustra ... 37.000000\n", "5081 Because I'm Worth It (Gossip Girl, #4) ... 32.000000\n", "5082 The Sixth Extinction: An Unnatural History ... 23.000000\n", "5083 The Autobiography of Henry VIII: With Notes by... ... 35.000000\n", "5084 Dare Me ... 27.000000\n", "5085 Life Before Legend: Stories of the Criminal an... ... 28.000000\n", "5086 The Zahir ... 35.000000\n", "5087 The Blind Watchmaker: Why the Evidence of Evol... ... 29.000000\n", "5088 The Acid House ... 30.000000\n", "5089 The Earth, My Butt, and Other Big Round Things ... 25.000000\n", "5090 Freak the Mighty (Freak The Mighty, #1) ... 30.000000\n", "5091 The Boyfriend List: 15 Guys, 11 Shrink Appoint... ... 29.000000\n", "5092 Conspiracy in Death (In Death, #8) ... 34.000000\n", "5093 Gut gegen Nordwind (Gut gegen Nordwind, #1) ... 35.000000\n", "5094 Bone: The Complete Edition ... 38.000000\n", "5095 Holiday in Death (In Death, #7) ... 35.000000\n", "5096 Cyrano de Bergerac ... 33.000000\n", "5097 Winesburg, Ohio ... 35.000000\n", "5098 Spring Fever ... 27.000000\n", "5099 The Baker's Daughter ... 26.000000\n", "5100 Snow Flower and the Secret Fan ... 36.000000\n", "5101 The Book of Mormon: Another Testament of Jesus... ... 34.000000\n", "5102 Beautiful Day ... 26.000000\n", "5103 Farmer Boy (Little House, #3) ... 31.000000\n", "5104 Grey (Fifty Shades, #4) ... 35.000000\n", "5105 Commonwealth ... 27.000000\n", "5106 The Murders in the Rue Morgue ... 33.000000\n", "5107 Rage of Angels ... 37.000000\n", "5108 The Sailor Who Fell from Grace with the Sea ... 31.000000\n", "5109 Pompeii ... 34.000000\n", "5110 Saga, Vol. 2 (Saga, #2) ... 35.000000\n", "5111 The Stonekeeper (Amulet, #1) ... 26.000000\n", "5112 Deep Down Dark: The Untold Stories of 33 Men B... ... 26.000000\n", "5113 The Plum Tree ... 30.000000\n", "5114 Key of Knowledge (Key Trilogy, #2) ... 35.000000\n", "5115 Waiting For You ... 31.000000\n", "5116 The Glass Menagerie ... 32.000000\n", "5117 True Colors ... 29.000000\n", "5118 Among the Ten Thousand Things ... 25.000000\n", "5119 Your Inner Fish: A Journey into the 3.5-Billio... ... 27.000000\n", "5120 Warrior of the Light ... 37.000000\n", "5121 The Japanese Lover ... 27.000000\n", "5122 Tenth of December ... 32.000000\n", "5123 20th Century Ghosts ... 38.000000\n", "5124 The Trumpet of the Swan ... 31.000000\n", "5125 The Book of Unknown Americans ... 26.000000\n", "5126 Beauty and the Beast (Disney) ... 27.000000\n", "5127 The Brightest Star in the Sky ... 33.000000\n", "5128 The Rule of Four ... 35.000000\n", "5129 The Art of Hearing Heartbeats ... 32.000000\n", "5130 The Chosen One ... 27.000000\n", "5131 The Promise ... 27.000000\n", "5132 The Stone Diaries ... 32.000000\n", "5133 An Object of Beauty ... 33.000000\n", "5134 Daughter ... 29.000000\n", "5135 Going Too Far ... 29.000000\n", "5136 Scarlet Feather ... 31.000000\n", "5137 The Impossible Knife of Memory ... 28.000000\n", "5138 Every Man Dies Alone ... 33.000000\n", "5139 Revolting Rhymes ... 29.000000\n", "5140 The Husband's Secret Free Preview ... 24.000000\n", "5141 A Good Man is Hard to Find and Other Stories ... 37.000000\n", "5142 Then Came You ... 31.000000\n", "5143 Misery ... 45.000000\n", "5144 This Is Water: Some Thoughts, Delivered on a S... ... 32.000000\n", "5145 Generation X: Tales for an Accelerated Culture ... 29.000000\n", "5146 Benediction (Plainsong, #3) ... 28.000000\n", "5147 Fables, Vol. 6: Homelands ... 24.000000\n", "5148 The Story of Edgar Sawtelle ... 38.000000\n", "5149 Marcelo in the Real World ... 22.000000\n", "5150 Be Frank With Me ... 23.000000\n", "5151 Crave (Fallen Angels, #2) ... 33.000000\n", "5152 Remarkable Creatures ... 33.000000\n", "5153 On Her Majesty's Secret Service (James Bond, #11) ... 39.000000\n", "5154 Laughable Loves ... 33.000000\n", "5155 Zoya ... 31.000000\n", "5156 Tell Me Three Things ... 25.000000\n", "5157 The Further Adventures of Sherlock Holmes: Aft... ... 26.000000\n", "5158 Faceless Killers (Kurt Wallander, #1) ... 26.000000\n", "5159 The Walking Dead, Compendium 1 ... 34.000000\n", "5160 Forgive Me, Leonard Peacock ... 28.000000\n", "5161 Divine Madness (Cherub, #5) ... 29.000000\n", "5162 The Coldest Winter Ever ... 35.000000\n", "5163 The Last Original Wife ... 26.000000\n", "5164 The Legend of Sleepy Hollow and Other Stories ... 31.000000\n", "5165 The Kindness of Strangers ... 29.000000\n", "5166 I Don't Know How She Does It ... 30.000000\n", "5167 Please Look After Mom ... 30.000000\n", "5168 A Universe from Nothing: Why There Is Somethin... ... 27.000000\n", "5169 Her Daughter's Dream (Marta's Legacy, #2) ... 31.000000\n", "5170 Peter Pan (A Little Golden Book) ... 21.000000\n", "5171 Motherless Brooklyn ... 33.000000\n", "5172 Pippi in the South Seas ... 26.000000\n", "5173 The Sweetness at the Bottom of the Pie (Flavia... ... 36.000000\n", "5174 The Way the Crow Flies ... 34.000000\n", "5175 Restless ... 34.000000\n", "5176 Kürk Mantolu Madonna ... 28.000000\n", "5177 The Doomsday Key (Sigma Force, #6) ... 35.000000\n", "5178 Call Me by Your Name ... 29.000000\n", "5179 The Running Dream ... 23.000000\n", "5180 Fifty Shades of Grey (Fifty Shades, #1) ... 32.000000\n", "5181 Number the Stars ... 29.000000\n", "5182 This Charming Man ... 36.000000\n", "5183 Tempting Fate ... 25.000000\n", "5184 Modern Romance ... 23.000000\n", "5185 The Mermaid Chair ... 30.000000\n", "5186 One, Two, Buckle My Shoe (Hercule Poirot, #22) ... 39.000000\n", "5187 The Seventh Scroll (Ancient Egypt, #2) ... 34.000000\n", "5188 The Long Winter (Little House, #6) ... 31.000000\n", "5189 The Burgess Boys ... 30.000000\n", "5190 Beautiful Redemption (The Maddox Brothers, #2) ... 30.000000\n", "5191 Hannibal Rising (Hannibal Lecter, #4) ... 39.000000\n", "5192 The Magic Faraway Tree (The Faraway Tree, #2) ... 32.000000\n", "5193 The Matchmaker ... 25.000000\n", "5194 LaRose ... 27.000000\n", "5195 The Sandman: The Dream Hunters ... 31.000000\n", "5196 The Last Painting of Sara de Vos ... 25.000000\n", "5197 Out Stealing Horses ... 31.000000\n", "5198 The Most Dangerous Game ... 33.000000\n", "5199 La ciudad y los perros ... 30.000000\n", "5200 Ruby Holler ... 30.000000\n", "5201 Annabel (Delirium, #0.5) ... 23.000000\n", "5202 The Dive From Clausen's Pier ... 33.000000\n", "5203 Relativity: The Special and the General Theory ... 24.000000\n", "5204 In the Skin of a Lion ... 34.000000\n", "5205 Dream Country (The Sandman #3) ... 32.000000\n", "5206 Dark Angel (Casteel, #2) ... 34.000000\n", "5207 Love You to Death: The Unofficial Companion to... ... 15.000000\n", "5208 Mr. Churchill's Secretary (Maggie Hope Mystery... ... 31.000000\n", "5209 Telegraph Avenue ... 32.000000\n", "5210 Whose Body? (Lord Peter Wimsey, #1) ... 37.000000\n", "5211 The Samurai's Garden ... 31.000000\n", "5212 Teen Idol ... 32.000000\n", "5213 ttyl (Internet Girls, #1) ... 29.000000\n", "5214 No Exit ... 29.000000\n", "5215 Hallowe'en Party (Hercule Poirot, #36) ... 39.000000\n", "5216 Five Little Peppers and How They Grew ... 29.000000\n", "5217 Ya Yas in Bloom ... 29.000000\n", "5218 Peony in Love ... 33.000000\n", "5219 Summer on Blossom Street (Blossom Street, #6) ... 31.000000\n", "5220 Saving CeeCee Honeycutt ... 26.000000\n", "5221 Winter's Bone ... 30.000000\n", "5222 Today Will Be Different ... 25.000000\n", "5223 The Curious Charms of Arthur Pepper ... 26.000000\n", "5224 The Cartel ... 32.000000\n", "5225 Private (Private, #1) ... 19.500000\n", "5226 Private (Private, #1) ... 19.500000\n", "5227 Old Yeller (Old Yeller, #1) ... 27.000000\n", "5228 The Fever ... 27.000000\n", "5229 Chasing Harry Winston ... 36.000000\n", "5230 On the Fence ... 27.000000\n", "5231 The Baron in the Trees ... 33.000000\n", "5232 Until Friday Night (The Field Party, #1) ... 29.000000\n", "5233 Straight Talking ... 31.000000\n", "5234 Yellow Crocus ... 29.000000\n", "5235 The Good Father ... 29.000000\n", "5236 All the Names ... 33.000000\n", "5237 These High, Green Hills (Mitford Years, #3) ... 32.000000\n", "5238 Lost & Found (Rocky Pelligrino, #1) ... 29.000000\n", "5239 Sycamore Row ... 32.000000\n", "5240 The Engagements ... 28.000000\n", "5241 Captured (The Captive, #1) ... 27.000000\n", "5242 The Analyst ... 34.000000\n", "5243 Angel Falls ... 26.000000\n", "5244 Our Town ... 31.000000\n", "5245 Escape from Mr. Lemoncello's Library (Mr. Lemo... ... 22.000000\n", "5246 Vengeance in Death (In Death, #6) ... 32.000000\n", "5247 A Painted House ... 35.000000\n", "5248 The Complete Poetry and Prose ... 23.000000\n", "5249 The 5 Greatest Warriors (Jack West Jr, #3) ... 38.000000\n", "5250 Perfect You ... 27.000000\n", "5251 The Lake House (When the Wind Blows, #2) ... 32.000000\n", "5252 The Sea of Tranquility ... 30.000000\n", "5253 Great House ... 28.000000\n", "5254 Dance of the Gods (Circle Trilogy, #2) ... 38.000000\n", "5255 A Midsummer's Nightmare ... 28.000000\n", "5256 Sherlock Holmes and the Case of the Hound of t... ... 23.000000\n", "5257 By the River Piedra I Sat Down and Wept ... 38.000000\n", "5258 Anne Frank's Tales from the Secret Annex ... 31.000000\n", "5259 Locke & Key, Vol. 4: Keys to the Kingdom ... 28.000000\n", "5260 This Is Your Brain on Music: The Science of a ... ... 29.000000\n", "5261 Maisie Dobbs (Maisie Dobbs, #1) ... 31.000000\n", "5262 The Girl Who Fell from the Sky ... 30.000000\n", "5263 The Sea ... 34.000000\n", "5264 The Orenda ... 35.000000\n", "5265 Musashi ... 36.000000\n", "5266 The Last Oracle (Sigma Force, #5) ... 35.000000\n", "5267 See Jane Date ... 22.000000\n", "5268 The Chase (Fox and O'Hare, #2) ... 27.000000\n", "5269 Insomnia ... 42.000000\n", "5270 These Happy Golden Years (Little House, #8) ... 29.000000\n", "5271 Living Dead Girl ... 26.000000\n", "5272 Commencement ... 29.000000\n", "5273 Three Weeks With My Brother ... 34.000000\n", "5274 The Vincent Boys (The Vincent Boys, #1) ... 34.000000\n", "5275 Canada ... 31.000000\n", "5276 Twilight: The Graphic Novel, Vol. 1 (Twilight:... ... 33.000000\n", "5277 The Cellist of Sarajevo ... 33.000000\n", "5278 The Gospel According to Jesus Christ ... 31.000000\n", "5279 Saving June ... 28.000000\n", "5280 Hausfrau ... 27.000000\n", "5281 The Two-Family House ... 23.000000\n", "5282 As You Like It ... 36.000000\n", "5283 Child of God ... 32.000000\n", "5284 The Story of the Lost Child (The Neapolitan No... ... 31.000000\n", "5285 Tigers in Red Weather ... 28.000000\n", "5286 Shanghai Girls (Shanghai Girls #1) ... 34.000000\n", "5287 Dash & Lily's Book of Dares (Dash & Lily, #1) ... 33.000000\n", "5288 Blue-Eyed Devil (Travises, #2) ... 32.000000\n", "5289 Essays and Poems ... 23.000000\n", "5290 The Map That Changed the World ... 31.000000\n", "5291 I Still Dream About You ... 30.000000\n", "5292 You're the One That I Want (Gossip Girl, #6) ... 27.000000\n", "5293 Getting Over It ... 25.000000\n", "5294 Mrs. Piggle-Wiggle's Magic (Mrs. Piggle Wiggle... ... 26.000000\n", "5295 Day After Night ... 28.000000\n", "5296 A Spool of Blue Thread ... 27.000000\n", "5297 The Interestings ... 30.000000\n", "5298 Fates and Furies ... 29.000000\n", "5299 First Comes Love ... 24.000000\n", "5300 End of Watch (Bill Hodges Trilogy, #3) ... 33.000000\n", "5301 Jesus' Son ... 35.000000\n", "5302 The Bonesetter's Daughter ... 36.000000\n", "5303 Fever 1793 ... 26.000000\n", "5304 One More Thing: Stories and Other Stories ... 27.000000\n", "5305 The Kitchen House ... 34.000000\n", "5306 The Last Wife of Henry VIII ... 29.000000\n", "5307 Divided in Death (In Death, #18) ... 35.000000\n", "5308 The First Wives Club ... 24.000000\n", "5309 One Lavender Ribbon ... 25.000000\n", "5310 Anastasia Krupnik (Anastasia Krupnik, #1) ... 28.000000\n", "5311 Everything We Keep (Everything We Keep, #1) ... 26.000000\n", "5312 Promises to Keep ... 31.000000\n", "5313 The Love Song of J. Alfred Prufrock and Other ... ... 28.000000\n", "5314 Love Unrehearsed (Love, #2) ... 32.000000\n", "5315 Aristotle and Dante Discover the Secrets of th... ... 18.000000\n", "5316 The Ripper (The Vampire Diaries: Stefan's Diar... ... 27.000000\n", "5317 Wife by Wednesday (The Weekday Brides, #1) ... 26.000000\n", "5318 Every Boy's Got One (Boy, #3) ... 39.000000\n", "5319 Dark Demon (Dark, #16) ... 32.000000\n", "5320 The Yonahlossee Riding Camp for Girls ... 27.000000\n", "5321 The 19th Wife ... 29.000000\n", "5322 The Lion King: A little Golden Book ... 20.000000\n", "5323 Fermat's Enigma: The Epic Quest to Solve the W... ... 29.000000\n", "5324 Tell-All ... 33.000000\n", "5325 Moriarty (Sherlock Holmes #2) ... 33.000000\n", "5326 Where the Sidewalk Ends ... 32.000000\n", "5327 The Mark (Left Behind, #8) ... 34.000000\n", "5328 Cat on a Hot Tin Roof ... 28.000000\n", "5329 A Little History of the World ... 36.000000\n", "5330 Ghost Boy ... 27.000000\n", "5331 Memories of Midnight ... 34.000000\n", "5332 Summer House with Swimming Pool ... 29.000000\n", "5333 Y: The Last Man, Vol. 10: Whys and Wherefores ... ... 27.000000\n", "5334 Love That Dog (Jack, #1) ... 25.000000\n", "5335 By the Light of the Moon ... 34.000000\n", "5336 One Summer ... 30.000000\n", "5337 Where We Belong ... 30.000000\n", "5338 The Devil Colony (Sigma Force, #7) ... 35.000000\n", "5339 The House on Tradd Street (Tradd Street, #1) ... 29.000000\n", "5340 Birds of America ... 31.000000\n", "5341 Lucky Us ... 27.000000\n", "5342 Danse Macabre ... 35.000000\n", "5343 The Chronicles of Harris Burdick: 14 Amazing A... ... 26.000000\n", "5344 Spook: Science Tackles the Afterlife ... 27.000000\n", "5345 I've Got Your Number ... 27.000000\n", "5346 Out of My Mind ... 30.000000\n", "5347 Wife 22 ... 29.000000\n", "5348 The Immortals of Meluha (Shiva Trilogy, #1) ... 36.000000\n", "5349 The Edge of Always (The Edge of Never, #2) ... 31.000000\n", "5350 Best Friends Forever ... 32.000000\n", "5351 Gold ... 35.000000\n", "5352 Wayside School Is Falling Down (Wayside School... ... 29.000000\n", "5353 The Atonement Child ... 32.000000\n", "5354 The Prodigal Daughter (Kane & Abel, #2) ... 32.000000\n", "5355 Maude ... 22.000000\n", "5356 The Brief Wondrous Life of Oscar Wao ... 33.000000\n", "5357 The Yellow Birds ... 32.000000\n", "5358 A Simple Plan ... 32.000000\n", "5359 Lipstick Jungle ... 29.000000\n", "5360 The Love Affairs of Nathaniel P. ... 27.000000\n", "5361 Digging to America ... 31.000000\n", "5362 The Mill River Recluse ... 25.000000\n", "5363 Fever Pitch ... 31.000000\n", "5364 Call Me Irresistible (Wynette, Texas #5) ... 34.000000\n", "5365 Surely You're Joking, Mr. Feynman!: Adventures... ... 32.000000\n", "5366 The Hundred Secret Senses ... 34.000000\n", "5367 The Girls ... 19.500000\n", "5368 The Girls ... 19.500000\n", "5369 A Prisoner of Birth ... 30.000000\n", "5370 The Dragonslayer (Bone, #4) ... 30.000000\n", "5371 One Door Away from Heaven ... 34.000000\n", "5372 The King's Agent ... 15.000000\n", "5373 So You've Been Publicly Shamed ... 26.000000\n", "5374 Ruthless (Pretty Little Liars, #10) ... 30.000000\n", "5375 Olivia Joules and the Overactive Imagination ... 35.000000\n", "5376 Small Great Things ... 27.000000\n", "5377 Lisey's Story ... 41.000000\n", "5378 Oscar and Lucinda ... 29.000000\n", "5379 Face the Fire (Three Sisters Island, #3) ... 39.000000\n", "5380 Cathedral ... 36.000000\n", "5381 The Middlesteins ... 28.000000\n", "5382 Finders Keepers (Bill Hodges Trilogy, #2) ... 34.000000\n", "5383 Where There's Smoke ... 25.000000\n", "5384 Don't Look Back ... 29.000000\n", "5385 The Informers ... 30.000000\n", "5386 An Incomplete Revenge (Maisie Dobbs, #5) ... 27.000000\n", "5387 The Elephant Vanishes ... 37.000000\n", "5388 Imitation in Death (In Death, #17) ... 33.000000\n", "5389 Everything I Never Told You ... 23.000000\n", "5390 The Moving Finger (Miss Marple, #4) ... 38.000000\n", "5391 The Darkest Surrender (Lords of the Underworl... ... 28.000000\n", "5392 The Aviator's Wife ... 25.000000\n", "5393 Never Never: Part Three (Never Never, #3) ... 25.000000\n", "5394 Loyalty in Death (In Death, #9) ... 32.000000\n", "5395 The Pale King ... 33.000000\n", "5396 The Geography of You and Me ... 27.000000\n", "5397 Simon vs. the Homo Sapiens Agenda ... 31.000000\n", "5398 The Hand That First Held Mine ... 30.000000\n", "5399 How to Be Popular ... 30.000000\n", "5400 Flat-Out Love (Flat-Out Love, #1) ... 34.000000\n", "5401 The Structure of Scientific Revolutions ... 26.000000\n", "5402 Lily and the Octopus ... 26.000000\n", "5403 The Chemist ... 34.000000\n", "5404 Match Me If You Can (Chicago Stars, #6) ... 35.000000\n", "5405 The Field of Swords (Emperor, #3) ... 32.000000\n", "5406 Playing for Pizza ... 32.000000\n", "5407 An Astronaut's Guide to Life on Earth ... 33.000000\n", "5408 The Pretty Committee Strikes Back (The Clique,... ... 28.000000\n", "5409 The Abduction (Theodore Boone, #2) ... 30.000000\n", "5410 The Language of Flowers ... 26.000000\n", "5411 Resurrection ... 34.000000\n", "5412 When It Happens ... 32.000000\n", "5413 Hardpressed (Hacker, #2) ... 34.000000\n", "5414 Diamonds Are Forever (James Bond, #4) ... 36.000000\n", "5415 Guts ... 21.000000\n", "5416 Where I'm Calling From: New and Selected Stories ... 33.000000\n", "5417 Dawn (Cutler, #1) ... 30.000000\n", "5418 America's First Daughter ... 25.000000\n", "5419 Eye of the Needle ... 36.000000\n", "5420 The Castaways ... 29.000000\n", "5421 Ask the Passengers ... 27.000000\n", "5422 Beatrice and Virgil ... 33.000000\n", "5423 Big Cherry Holler (Big Stone Gap, #2) ... 29.000000\n", "5424 A Twist in the Tale ... 32.000000\n", "5425 Baby Proof ... 31.000000\n", "5426 Drums, Girls & Dangerous Pie (Drums, Girls & D... ... 26.000000\n", "5427 Catherine, Called Birdy ... 24.000000\n", "5428 The Lace Reader (The Lace Reader, #1) ... 32.000000\n", "5429 Origin in Death (In Death, #21) ... 36.000000\n", "5430 Messenger of Truth (Maisie Dobbs, #4) ... 25.000000\n", "5431 Someone ... 27.000000\n", "5432 Forever Princess (The Princess Diaries, #10) ... 34.000000\n", "5433 An Echo in the Darkness (Mark of the Lion, #2) ... 38.000000\n", "5434 Silent in the Grave (Lady Julia Grey, #1) ... 28.000000\n", "5435 Eligible: A Modern Retelling of Pride and Prej... ... 26.000000\n", "5436 Sapiens: A Brief History of Humankind ... 28.000000\n", "5437 Dreamcatcher ... 38.000000\n", "5438 Catching Jordan ... 28.000000\n", "5439 What We Talk About When We Talk About Love ... 35.000000\n", "5440 To All the Boys I've Loved Before (To All the ... ... 19.000000\n", "5441 A Reliable Wife ... 30.000000\n", "5442 Easy (Contours of the Heart, #1) ... 35.000000\n", "5443 Fallen Hearts (Casteel, #3) ... 32.000000\n", "5444 The Blue Bistro ... 28.000000\n", "5445 When Will There Be Good News? (Jackson Brodie,... ... 32.000000\n", "5446 The Doomsday Conspiracy ... 33.000000\n", "5447 Faust: First Part ... 33.000000\n", "5448 The Green Mile, Part 3: Coffey's Hands ... 40.000000\n", "5449 Crash into You (Pushing the Limits, #3) ... 27.000000\n", "5450 Nemesis (Miss Marple, #12) ... 38.000000\n", "5451 The Silent Wife ... 27.000000\n", "5452 The Decameron ... 33.000000\n", "5453 Lothaire (Immortals After Dark #12) ... 30.000000\n", "5454 Knit Two (Friday Night Knitting Club, #2) ... 30.000000\n", "5455 The Mane Event (Pride, #1) ... 28.000000\n", "5456 Little Bee ... 27.000000\n", "5457 Tangerine ... 23.000000\n", "5458 Lenobia's Vow (House of Night Novellas, #2) ... 32.000000\n", "5459 Hardwired (Hacker, #1) ... 34.000000\n", "5460 The Panther (John Corey, #6) ... 32.000000\n", "5461 White Fire (Pendergast, #13) ... 31.000000\n", "5462 These Things Hidden ... 29.000000\n", "5463 Identity ... 30.000000\n", "5464 Be Careful What You Wish For ... 31.000000\n", "5465 Dumplin' (Dumplin', #1) ... 26.000000\n", "5466 Queen of Babble Gets Hitched (Queen of Babble,... ... 33.000000\n", "5467 Hatchet (Brian's Saga, #1) ... 29.000000\n", "5468 The Submission ... 27.000000\n", "5469 The Code Book: The Science of Secrecy from Anc... ... 25.000000\n", "5470 Stunning (Pretty Little Liars, #11) ... 28.000000\n", "5471 The Lewis Man (The Lewis Trilogy, #2) ... 31.000000\n", "5472 Sing You Home ... 33.000000\n", "5473 Truly Madly Guilty ... 23.000000\n", "5474 The Third Twin ... 33.000000\n", "5475 Barefoot ... 31.000000\n", "5476 Portrait in Death (In Death, #16) ... 35.000000\n", "5477 The Velveteen Rabbit ... 31.000000\n", "5478 The Monuments Men: Allied Heroes, Nazi Thieves... ... 31.000000\n", "5479 Someone Knows My Name ... 27.000000\n", "5480 The Unexpected Everything ... 28.000000\n", "5481 Class A (Cherub, #2) ... 31.000000\n", "5482 Purple Hibiscus ... 34.000000\n", "5483 The Aeneid ... 35.000000\n", "5484 The Night Strangers ... 30.000000\n", "5485 A Hundred Summers ... 29.000000\n", "5486 Night Over Water ... 34.000000\n", "5487 Perfect Scoundrels (Heist Society, #3) ... 26.000000\n", "5488 You Don't Have to Say You Love Me ... 30.000000\n", "5489 Heaven and Earth (Three Sisters Island, #2) ... 36.000000\n", "5490 A Summer Affair ... 30.000000\n", "5491 The Exploits of Sherlock Holmes ... 23.000000\n", "5492 Cards on the Table (Hercule Poirot, #15) ... 38.000000\n", "5493 A Map of the World ... 34.000000\n", "5494 Light a Penny Candle ... 30.000000\n", "5495 The Tale of Mrs. Tiggy-Winkle ... 27.000000\n", "5496 The Green Mile, Part 1: The Two Dead Girls ... 39.000000\n", "5497 Shoe Addicts Anonymous (Shoe Addict, #1) ... 27.000000\n", "5498 Gut: The Inside Story of Our Body’s Most Und... ... 30.000000\n", "5499 Come Home ... 28.000000\n", "5500 Promise Not to Tell ... 32.000000\n", "5501 Dial L for Loser (The Clique, #6) ... 23.000000\n", "5502 The Crossing Places (Ruth Galloway, #1) ... 27.000000\n", "5503 The Problem with Forever ... 27.000000\n", "5504 The Copper Beech ... 30.000000\n", "5505 Apple Tree Yard ... 31.000000\n", "5506 Ida B. . . and Her Plans to Maximize Fun, Avoi... ... 25.000000\n", "5507 Queen of Babble (Queen of Babble, #1) ... 35.000000\n", "5508 The Weight of Water ... 32.000000\n", "5509 Smooth Talking Stranger (Travises, #3) ... 34.000000\n", "5510 A Light in the Attic ... 30.000000\n", "5511 Every Last One ... 30.000000\n", "5512 Why Evolution Is True ... 23.000000\n", "5513 From Russia With Love (James Bond, #5) ... 39.000000\n", "5514 The Charm School ... 38.000000\n", "5515 Misty of Chincoteague (Misty, #1) ... 28.000000\n", "5516 A Doll's House ... 31.000000\n", "5517 Joyland ... 37.000000\n", "5518 Be with Me (Wait for You, #2) ... 32.000000\n", "5519 Princess in Pink (The Princess Diaries, #5) ... 34.000000\n", "5520 Among the Mad (Maisie Dobbs, #6) ... 25.000000\n", "5521 Wicked Nights (Angels of the Dark, #1) ... 32.000000\n", "5522 Shadows of the Workhouse ... 30.000000\n", "5523 Because of Low (Sea Breeze, #2) ... 36.000000\n", "5524 The Tale of Despereaux ... 33.000000\n", "5525 Hope Was Here ... 27.000000\n", "5526 Glory in Death (In Death, #2) ... 32.000000\n", "5527 Holding Up the Universe ... 27.000000\n", "5528 Emmy & Oliver ... 23.000000\n", "5529 Tales from a Not-So-Popular Party Girl (Dork D... ... 25.000000\n", "5530 Ralph S. Mouse by Beverly Cleary: Teacher Guid... ... 14.000000\n", "5531 Love Unscripted (Love, #1) ... 33.000000\n", "5532 Saga, Vol. 1 (Saga, #1) ... 32.000000\n", "5533 Hana (Delirium, #1.5) ... 22.000000\n", "5534 How to Love ... 32.000000\n", "5535 Lord Edgware Dies (Hercule Poirot, #9) ... 40.000000\n", "5536 I've Got You Under My Skin (Under Suspicion, #1) ... 30.000000\n", "5537 The Final Solution ... 31.000000\n", "5538 Lord John and the Private Matter (Lord John Gr... ... 34.000000\n", "5539 Seduction in Death (In Death, #13) ... 35.000000\n", "5540 Death Comes to Pemberley ... 33.000000\n", "5541 Counting by 7s ... 25.000000\n", "5542 So B. It ... 31.000000\n", "5543 Crush ... 33.000000\n", "5544 The Painted Girls ... 30.000000\n", "5545 Okay for Now ... 24.000000\n", "5546 The Middle Place ... 30.000000\n", "5547 The Lonely Polygamist ... 30.000000\n", "5548 The Picture of Dorian Gray: A Graphic Novel ... 26.000000\n", "5549 Blubber ... 23.000000\n", "5550 Wild Cards (Wild Cards, #1) ... 28.000000\n", "5551 Chasing Vermeer (Chasing Vermeer, #1) ... 26.000000\n", "5552 Humans of New York ... 24.000000\n", "5553 A Separate Reality ... 28.000000\n", "5554 A Tale for the Time Being ... 34.000000\n", "5555 I Was Here ... 26.000000\n", "5556 Twenty Boy Summer ... 30.000000\n", "5557 The Noticer: Sometimes, All a Person Needs Is ... ... 27.000000\n", "5558 The Keeping (Law of the Lycans, #3) ... 24.000000\n", "5559 Shelter (Mickey Bolitar, #1) ... 29.000000\n", "5560 Envy (Fallen Angels, #3) ... 35.000000\n", "5561 All-of-a-Kind Family (All-of-a-Kind Family, #1) ... 27.000000\n", "5562 Night Probe! (Dirk Pitt, #6) ... 30.000000\n", "5563 In the Shadow of the Banyan ... 28.000000\n", "5564 The Harbinger: The Ancient Mystery that Holds ... ... 34.000000\n", "5565 The Piano Teacher ... 29.000000\n", "5566 I Am Livia ... 26.000000\n", "5567 The Bridge Across Forever: A True Love Story ... 30.000000\n", "5568 The Heretic's Daughter ... 33.000000\n", "5569 Dirty Red (Love Me with Lies, #2) ... 28.000000\n", "5570 Modern Lovers ... 23.000000\n", "5571 Min kamp 1 (Min kamp #1) ... 33.000000\n", "5572 The Wolf of Wall Street ... 34.000000\n", "5573 Just One Night (Just One Day, #2.5) ... 27.000000\n", "5574 This Is Where It Ends ... 25.000000\n", "5575 The Constant Gardener ... 36.000000\n", "5576 A Matter of Honor ... 31.000000\n", "5577 The Chaperone ... 28.000000\n", "5578 Peril at End House (Hercule Poirot, #8) ... 38.000000\n", "5579 Here on Earth ... 34.000000\n", "5580 News of the World ... 28.000000\n", "5581 Unbroken: A World War II Story of Survival, Re... ... 34.000000\n", "5582 The Hurricane Sisters ... 24.000000\n", "5583 The Arrival ... 26.000000\n", "5584 The Guy Not Taken: Stories ... 30.000000\n", "5585 Theodore Boone: Kid Lawyer (Theodore Boone, #1) ... 31.000000\n", "5586 The Last Little Blue Envelope (Little Blue Env... ... 27.000000\n", "5587 Saga, Vol. 5 (Saga, #5) ... 31.000000\n", "5588 Secret Daughter ... 30.000000\n", "5589 North and South (North and South, #1) ... 39.000000\n", "5590 An Untamed State ... 27.000000\n", "5591 Eleven Minutes ... 36.000000\n", "5592 What Is the What ... 29.000000\n", "5593 Concealed in Death (In Death, #38) ... 34.000000\n", "5594 Kindred in Death (In Death, #29) ... 34.000000\n", "5595 Tales of Ordinary Madness ... 31.000000\n", "5596 Dracula (Marvel Illustrated) ... 14.000000\n", "5597 The Things We Wish Were True ... 23.000000\n", "5598 Not My Daughter ... 25.000000\n", "5599 Palace Walk (The Cairo Trilogy #1) ... 32.000000\n", "5600 The Psychopath Test: A Journey Through the Mad... ... 28.000000\n", "5601 The Stonekeeper's Curse (Amulet, #2) ... 26.000000\n", "5602 Such a Pretty Girl ... 26.000000\n", "5603 The Gold Coast ... 36.000000\n", "5604 My Name Is Lucy Barton ... 25.000000\n", "5605 Faith ... 27.000000\n", "5606 Ramona the Pest (Ramona, #2) ... 27.000000\n", "5607 Amadeus ... 31.000000\n", "5608 Desecration (Left Behind, #9) ... 33.000000\n", "5609 Walking Disaster (Beautiful, #2) ... 35.000000\n", "5610 Bridge to Haven ... 29.000000\n", "5611 Shock Wave (Dirk Pitt, #13) ... 32.000000\n", "5612 Size 12 Is Not Fat (Heather Wells, #1) ... 35.000000\n", "5613 Wish You Well ... 34.000000\n", "5614 What Do You Care What Other People Think? ... 29.000000\n", "5615 Hyperspace ... 21.000000\n", "5616 Mount Dragon ... 31.000000\n", "5617 Child 44 (Leo Demidov, #1) ... 39.000000\n", "5618 Addicted to You (Addicted, #1) ... 29.000000\n", "5619 The Life-Changing Magic of Tidying Up: The Jap... ... 26.000000\n", "5620 The Tiger Who Came to Tea ... 19.000000\n", "5621 Mistress of the Art of Death (Mistress of the ... ... 34.000000\n", "5622 Legally Blonde ... 20.000000\n", "5623 The Buddha in the Attic ... 26.000000\n", "5624 Affinity ... 32.000000\n", "5625 At Bertram's Hotel (Miss Marple, #11) ... 37.000000\n", "5626 Wanted (Pretty Little Liars, #8) ... 31.000000\n", "5627 The Hollow (Sign of Seven, #2) ... 35.000000\n", "5628 The Sunday Philosophy Club (Isabel Dalhousie, #1) ... 34.000000\n", "5629 Inside the O'Briens ... 24.000000\n", "5630 A Head Full of Ghosts ... 27.000000\n", "5631 Eight Hundred Grapes ... 24.000000\n", "5632 The Amityville Horror ... 37.000000\n", "5633 Bartleby the Scrivener ... 30.000000\n", "5634 Romancing Mister Bridgerton (Bridgertons, #4) ... 31.000000\n", "5635 The Next Best Thing ... 30.000000\n", "5636 The Madonnas of Leningrad ... 28.000000\n", "5637 The Vincent Brothers (The Vincent Boys, #2) ... 35.000000\n", "5638 Cold Fire / Hideaway / The Key to Midnight ... 19.000000\n", "5639 Lullabies for Little Criminals ... 32.000000\n", "5640 Riptide ... 37.000000\n", "5641 Sad Cypress (Hercule Poirot, #21) ... 39.000000\n", "5642 Scruples ... 27.000000\n", "5643 The Haunted Mask (Goosebumps, #11) ... 28.000000\n", "5644 The Strange Case of Origami Yoda (Origami Yoda... ... 20.000000\n", "5645 Barely Breathing (Breathing, #2) ... 32.000000\n", "5646 A Walk in the Woods ... 32.000000\n", "5647 Mr. Kiss and Tell (Veronica Mars, #2) ... 31.000000\n", "5648 Fine Things ... 25.000000\n", "5649 Bad Monkey ... 32.000000\n", "5650 Thr3e ... 37.000000\n", "5651 The Lion King (Disney's Wonderful World of Rea... ... 18.000000\n", "5652 100 Selected Poems ... 35.000000\n", "5653 The Sun Is Also a Star ... 28.000000\n", "5654 The Illustrated Mum ... 26.000000\n", "5655 Summer Secrets ... 23.000000\n", "5656 Out of Breath (Breathing, #3) ... 31.000000\n", "5657 Out to Canaan (Mitford Years, #4) ... 31.000000\n", "5658 There's a Boy in the Girls' Bathroom ... 27.000000\n", "5659 Mrs. Lincoln's Dressmaker ... 27.000000\n", "5660 Nine Rules to Break When Romancing a Rake (Lov... ... 31.000000\n", "5661 A Time to Kill ... 41.000000\n", "5662 The Night Watch ... 36.000000\n", "5663 The Life We Bury ... 25.000000\n", "5664 When Calls the Heart (Canadian West, #1) ... 34.000000\n", "5665 Fall From Grace (Mad World, #1) ... 25.000000\n", "5666 A Rose for Emily and Other Stories ... 27.000000\n", "5667 The Collected Poems of W.B. Yeats ... 30.000000\n", "5668 Immortal in Death (In Death, #3) ... 33.000000\n", "5669 Born to Run: A Hidden Tribe, Superathletes, an... ... 29.000000\n", "5670 Tampa ... 27.000000\n", "5671 Save Me ... 31.000000\n", "5672 Saga, Vol. 4 (Saga, #4) ... 33.000000\n", "5673 The League of Extraordinary Gentlemen, Vol. 2 ... 29.000000\n", "5674 Red Riding Hood ... 36.000000\n", "5675 Crooked House ... 39.000000\n", "5676 The Innovators: How a Group of Hackers, Geniu... ... 28.000000\n", "5677 Snow White and the Seven Dwarfs (Little Golden... ... 23.000000\n", "5678 Clash (Crash, #2) ... 32.000000\n", "5679 One Good Turn (Jackson Brodie, #2) ... 32.000000\n", "5680 Rapunzel ... 17.000000\n", "5681 The Mediterranean Caper (Dirk Pitt, #2) ... 33.000000\n", "5682 Two Boys Kissing ... 28.000000\n", "5683 Party Princess (The Princess Diaries, #7) ... 35.000000\n", "5684 Meet Samantha: An American Girl (American Girl... ... 22.000000\n", "5685 Dept. of Speculation ... 27.000000\n", "5686 Key of Valor (Key Trilogy, #3) ... 34.000000\n", "5687 Forbidden ... 29.000000\n", "5688 Poirot Investiga (Hércules Poirot, #3) ... 37.000000\n", "5689 The Flamethrowers ... 31.000000\n", "5690 Girl in Translation ... 31.000000\n", "5691 Hercule Poirot's Christmas (Hercule Poirot, #20) ... 37.000000\n", "5692 Fireproof ... 28.000000\n", "5693 The Last Sin Eater ... 30.000000\n", "5694 The Guest Room ... 23.000000\n", "5695 The Astronaut Wives Club ... 24.000000\n", "5696 The Gate House ... 30.000000\n", "5697 Leota's Garden ... 28.000000\n", "5698 Cocktails for Three ... 30.000000\n", "5699 Gift from the Sea ... 26.000000\n", "5700 Ungifted ... 23.000000\n", "5701 Maya's Notebook ... 34.000000\n", "5702 Man's Search for Meaning ... 36.000000\n", "5703 Where the Wild Things Are ... 30.000000\n", "5704 The Nest ... 28.000000\n", "5705 On the Banks of Plum Creek (Little House, #4) ... 29.000000\n", "5706 The Ice Limit (Ice Limit #1) ... 35.000000\n", "5707 Two-Way Street ... 31.000000\n", "5708 Dreams of Joy (Shanghai Girls #2) ... 32.000000\n", "5709 سینوهه ... 33.000000\n", "5710 This Heart of Mine (Chicago Stars, #5) ... 33.000000\n", "5711 Vain (The Seven Deadly, #1) ... 28.000000\n", "5712 Live and Let Die (James Bond, #2) ... 38.000000\n", "5713 Strangers on a Train ... 35.000000\n", "5714 Innocent Traitor ... 31.000000\n", "5715 Big Magic: Creative Living Beyond Fear ... 28.000000\n", "5716 Beach Town ... 27.000000\n", "5717 Disclaimer ... 29.000000\n", "5718 Watermelon (Walsh Family, #1) ... 35.000000\n", "5719 Endurance: Shackleton's Incredible Voyage ... 34.000000\n", "5720 Stranger than Fiction ... 34.000000\n", "5721 Pushing the Limits (Pushing the Limits, #1) ... 30.000000\n", "5722 Phantoms ... 36.000000\n", "5723 Still Life With Crows (Pendergast, #4) ... 37.000000\n", "5724 The Ice Twins ... 29.000000\n", "5725 X (Kinsey Millhone, #24) ... 26.000000\n", "5726 The Third Wheel (Diary of a Wimpy Kid, #7) ... 33.000000\n", "5727 I Do -- But I Don't ... 26.000000\n", "5728 The Vanishing Act of Esme Lennox ... 29.000000\n", "5729 Suffer the Children ... 34.000000\n", "5730 Seize the Night (Moonlight Bay, #2) ... 36.000000\n", "5731 Pardonable Lies (Maisie Dobbs, #3) ... 27.000000\n", "5732 Wicked - Piano/Vocal Arrangement ... 20.000000\n", "5733 Dancing Wu Li Masters: An Overview of the New ... ... 24.000000\n", "5734 A Grown-Up Kind of Pretty ... 27.000000\n", "5735 The Soldier's Wife ... 27.000000\n", "5736 The Time in Between ... 31.000000\n", "5737 A Year in the Merde ... 33.000000\n", "5738 Cities of the Plain (The Border Trilogy, #3) ... 30.000000\n", "5739 Staying Fat for Sarah Byrnes ... 20.000000\n", "5740 We're All Damaged ... 25.000000\n", "5741 Peak (Peak #1) ... 27.000000\n", "5742 Miramont's Ghost ... 26.000000\n", "5743 The World Without Us ... 27.000000\n", "5744 The Spellman Files (The Spellmans, #1) ... 33.000000\n", "5745 Hard Luck (Diary of a Wimpy Kid, #8) ... 31.000000\n", "5746 Where the Mountain Meets the Moon ... 22.000000\n", "5747 Gulp: Adventures on the Alimentary Canal ... 22.000000\n", "5748 The Cricket in Times Square ... 25.000000\n", "5749 The Mystery of the Blue Train (Hercule Poirot,... ... 39.000000\n", "5750 Broken Silence (Silence, #2) ... 27.000000\n", "5751 Civil Disobedience and Other Essays ... 25.000000\n", "5752 The Abstinence Teacher ... 27.000000\n", "5753 Princess Mia (The Princess Diaries, #9) ... 33.000000\n", "5754 Scary Stories to Tell in the Dark (Scary Stori... ... 27.000000\n", "5755 Summer Island ... 29.000000\n", "5756 Pulse (Collide, #2) ... 34.000000\n", "5757 George ... 19.000000\n", "5758 Thinner ... 38.000000\n", "5759 Better off Friends ... 25.000000\n", "5760 Locke & Key, Vol. 3: Crown of Shadows ... 25.000000\n", "5761 A Caribbean Mystery (Miss Marple, #10) ... 35.000000\n", "5762 Push ... 32.000000\n", "5763 Napalm & Silly Putty ... 30.000000\n", "5764 Just for Now (Sea Breeze, #4) ... 37.000000\n", "5765 Descent ... 24.000000\n", "5766 Go the Fuck to Sleep ... 30.000000\n", "5767 That Old Cape Magic ... 19.000000\n", "5768 The Lorax ... 28.000000\n", "5769 A Yellow Raft in Blue Water ... 31.000000\n", "5770 Exit to Eden ... 33.000000\n", "5771 Not Quite Dating (Not Quite, #1) ... 28.000000\n", "5772 Big Trouble ... 29.000000\n", "5773 What We Keep ... 28.000000\n", "5774 He's Just Not That Into You: The No-Excuses Tr... ... 30.000000\n", "5775 Saga, Vol. 3 (Saga, #3) ... 33.000000\n", "5776 The Murderer's Daughters ... 27.000000\n", "5777 A Different Blue ... 29.000000\n", "5778 Nothing's Fair in Fifth Grade ... 22.000000\n", "5779 Take a Chance (Rosemary Beach, #7; Chance, #1) ... 32.000000\n", "5780 Those Who Leave and Those Who Stay (The Neapol... ... 29.000000\n", "5781 If You Find Me ... 28.000000\n", "5782 Reunion in Death (In Death, #14) ... 35.000000\n", "5783 Tell Me Your Dreams ... 36.000000\n", "5784 The Little Friend ... 37.000000\n", "5785 The Complete Adventures of Peter Rabbit ... 25.000000\n", "5786 Stormy, Misty's Foal (Misty, #3) ... 23.000000\n", "5787 Lady Almina and the Real Downton Abbey: The Lo... ... 33.000000\n", "5788 Prom and Prejudice ... 25.000000\n", "5789 Wait for You (Wait for You, #1) ... 32.000000\n", "5790 Rage ... 37.000000\n", "5791 The Art of Amy Brown ... 18.000000\n", "5792 Deep and Dark and Dangerous (A Ghost Story) ... 27.000000\n", "5793 Ripper ... 30.000000\n", "5794 Seduce Me at Sunrise (The Hathaways, #2) ... 32.000000\n", "5795 The Mist ... 34.000000\n", "5796 The Book of Ruth ... 30.000000\n", "5797 Princess on the Brink (The Princess Diaries, #8) ... 34.000000\n", "5798 The Overcoat ... 30.000000\n", "5799 Natchez Burning ... 30.000000\n", "5800 Megan Meade's Guide to the McGowan Boys ... 28.000000\n", "5801 An Officer and a Spy ... 32.000000\n", "5802 Devil in Winter (Wallflowers, #3) ... 35.000000\n", "5803 The Beach House ... 17.500000\n", "5804 The Beach House ... 17.500000\n", "5805 The Painted Bird ... 33.000000\n", "5806 The Forty Rules of Love ... 29.000000\n", "5807 Before I Go to Sleep ... 32.000000\n", "5808 Rump: The True Story of Rumpelstiltskin ... 21.000000\n", "5809 Did You Ever Have a Family ... 27.000000\n", "5810 The Dead in Their Vaulted Arches (Flavia de Lu... ... 27.000000\n", "5811 The Regulators ... 38.000000\n", "5812 Ruby ... 29.000000\n", "5813 My Sister's Grave (Tracy Crosswhite #1) ... 28.000000\n", "5814 Stay with Me (Wait for You, #3) ... 30.000000\n", "5815 The Bone Tree ... 30.000000\n", "5816 Different Seasons ... 41.000000\n", "5817 A Visit from the Goon Squad ... 33.000000\n", "5818 The Sisterhood ... 25.000000\n", "5819 A Voice in the Wind (Mark of the Lion, #1) ... 38.000000\n", "5820 Twelve Years a Slave ... 38.000000\n", "5821 The Private Patient (Adam Dalgliesh #14) ... 32.000000\n", "5822 Hearts in Atlantis ... 35.000000\n", "5823 The Stand: Soul Survivors ... 21.000000\n", "5824 Animalia ... 25.000000\n", "5825 The Road to Little Dribbling: Adventures of an... ... 27.000000\n", "5826 Glory over Everything: Beyond The Kitchen House ... 24.000000\n", "5827 Crimson Shore (Pendergast, #15) ... 27.000000\n", "5828 Those Girls ... 28.000000\n", "5829 Clouds of Witness (Lord Peter Wimsey, #2) ... 33.000000\n", "5830 They Do It with Mirrors (Miss Marple, #6) ... 36.000000\n", "5831 The Heretic Queen ... 34.000000\n", "5832 Jaya: An Illustrated Retelling of the Mahabharata ... 35.000000\n", "5833 Goodbye, Columbus and Five Short Stories ... 27.000000\n", "5834 The Stars Shine Down ... 31.000000\n", "5835 The Pecan Man ... 23.000000\n", "5836 Savages ... 33.000000\n", "5837 By the Shores of Silver Lake (Little House, #5) ... 26.000000\n", "5838 Pygmy ... 31.000000\n", "5839 The Monkey's Paw (Oxford Bookworms) ... 28.000000\n", "5840 Otherwise Known as Sheila the Great (Fudge #2) ... 25.000000\n", "5841 Curtain (Hercule Poirot, #39) ... 40.000000\n", "5842 Reflected in You (Crossfire, #2) ... 39.000000\n", "5843 At Home: A Short History of Private Life ... 31.000000\n", "5844 Life After God ... 30.000000\n", "5845 The Space Between Us ... 29.000000\n", "5846 Prophet ... 34.000000\n", "5847 Something Like Fate ... 29.000000\n", "5848 The Giving Tree ... 31.000000\n", "5849 Simple Perfection (Rosemary Beach, #6; Perfect... ... 33.000000\n", "5850 Killing Reagan: The Violent Assault That Chang... ... 22.000000\n", "5851 Inside of a Dog: What Dogs See, Smell, and Know ... 27.000000\n", "5852 The Good Girl ... 27.000000\n", "5853 Disgrace ... 35.000000\n", "5854 Hamilton: The Revolution ... 27.000000\n", "5855 I Am Malala: The Story of the Girl Who Stood U... ... 33.000000\n", "5856 A Girl Like You ... 29.000000\n", "5857 The Twits ... 26.000000\n", "5858 The Men Who Stare at Goats ... 33.000000\n", "5859 Angels (Walsh Family, #3) ... 33.000000\n", "5860 Dream a Little Dream (Chicago Stars, #4) ... 31.000000\n", "5861 The Housekeeper and the Professor ... 28.000000\n", "5862 Lonesome Dove ... 44.000000\n", "5863 The Fixer Upper ... 25.000000\n", "5864 Bonk: The Curious Coupling of Science and Sex ... 24.000000\n", "5865 The Mating (Law of the Lycans, #2) ... 20.000000\n", "5866 Call for the Dead ... 37.000000\n", "5867 Every Fifteen Minutes ... 25.000000\n", "5868 The Covenant (Abram's Daughters, #1) ... 26.000000\n", "5869 The Finding (Law of the Lycans, #5) ... 23.000000\n", "5870 The Bastard (Kent Family Chronicles, #1) ... 34.000000\n", "5871 A Raisin in the Sun ... 28.000000\n", "5872 Icy Sparks ... 34.000000\n", "5873 Dare You To (Pushing the Limits, #2) ... 27.000000\n", "5874 My Friend Leonard ... 37.000000\n", "5875 Tricky Twenty-Two (Stephanie Plum, #22) ... 25.000000\n", "5876 The Sky is Falling ... 30.000000\n", "5877 Walk Two Moons ... 31.000000\n", "5878 Nantucket Nights ... 23.000000\n", "5879 On Dublin Street (On Dublin Street, #1) ... 33.000000\n", "5880 Winter Moon ... 32.000000\n", "5881 Evening Class ... 33.000000\n", "5882 Hairy Maclary from Donaldson's Dairy ... 19.000000\n", "5883 The Body in the Library (Miss Marple, #3) ... 39.000000\n", "5884 Meant to Be ... 31.000000\n", "5885 The Girl in the Spider's Web (Millennium, #4) ... 30.000000\n", "5886 The Girl from Krakow ... 28.000000\n", "5887 How to Read Literature Like a Professor: A Liv... ... 34.000000\n", "5888 The Art Forger ... 26.000000\n", "5889 Big Stone Gap (Big Stone Gap, #1) ... 31.000000\n", "5890 Sex and the City ... 32.000000\n", "5891 Faking It (Losing It, #2) ... 31.000000\n", "5892 Bad for You (Sea Breeze, #7) ... 33.000000\n", "5893 A Thousand Boy Kisses ... 27.000000\n", "5894 Annie on My Mind ... 29.000000\n", "5895 The Miseducation of Cameron Post ... 26.000000\n", "5896 Six Easy Pieces: Essentials of Physics By Its ... ... 26.000000\n", "5897 Madame Tussaud: A Novel of the French Revolution ... 27.000000\n", "5898 Frog Music ... 29.000000\n", "5899 The Celestine Prophecy (Celestine Prophecy, #1) ... 37.000000\n", "5900 The Short Drop (Gibson Vaughn, #1) ... 26.000000\n", "5901 4:50 from Paddington (Miss Marple, #8) ... 39.000000\n", "5902 The Master Butchers Singing Club ... 33.000000\n", "5903 False Impression ... 33.000000\n", "5904 One Fifth Avenue ... 35.000000\n", "5905 Low Pressure ... 29.000000\n", "5906 Tales from a Not-So-Talented Pop Star (Dork Di... ... 28.000000\n", "5907 Follow the River ... 33.000000\n", "5908 The Monk Who Sold His Ferrari: A Fable About F... ... 34.000000\n", "5909 Dragon Tears ... 33.000000\n", "5910 Iceberg (Dirk Pitt, #3) ... 30.000000\n", "5911 The Bourbon Kings (The Bourbon Kings, #1) ... 27.000000\n", "5912 Breathe (Sea Breeze, #1) ... 30.000000\n", "5913 The Fabric of the Cosmos: Space, Time, and the... ... 27.000000\n", "5914 Simply Irresistible (Lucky Harbor, #1) ... 28.000000\n", "5915 Elephants Can Remember (Hercule Poirot, #37) ... 39.000000\n", "5916 The Seven-Percent Solution ... 31.000000\n", "5917 Wayside School Gets A Little Stranger (Wayside... ... 29.000000\n", "5918 All the King's Men ... 34.000000\n", "5919 Whitethorn Woods ... 29.000000\n", "5920 Blue Monday (Frieda Klein, #1) ... 30.000000\n", "5921 Love the One You're With ... 33.000000\n", "5922 The Zookeeper's Wife ... 29.000000\n", "5923 Little House on Rocky Ridge (Little House: The... ... 26.000000\n", "5924 The Kitchen God's Wife ... 31.000000\n", "5925 The Missing Piece ... 27.000000\n", "5926 Dragons of Eden: Speculations on the Evolution... ... 25.000000\n", "5927 Mud Vein ... 28.000000\n", "5928 The Other Woman ... 30.000000\n", "5929 Another Piece of My Heart ... 28.000000\n", "5930 A Monstrous Regiment of Women (Mary Russell, #2) ... 32.000000\n", "5931 Code to Zero ... 34.000000\n", "5932 Lucia, Lucia ... 33.000000\n", "5933 Love Does: Discover a Secretly Incredible Life... ... 30.000000\n", "5934 Strong Poison (Lord Peter Wimsey, #6) ... 35.000000\n", "5935 The Job (Fox and O'Hare, #3) ... 24.000000\n", "5936 The Rumor ... 24.000000\n", "5937 Haunted ... 34.000000\n", "5938 Open House ... 32.000000\n", "5939 A Pocket for Corduroy ... 18.000000\n", "5940 Adam ... 34.000000\n", "5941 Beautiful Bastard (Beautiful Bastard, #1) ... 35.000000\n", "5942 The Traveler's Gift: Seven Decisions that Dete... ... 28.000000\n", "5943 Kitchens of the Great Midwest ... 25.000000\n", "5944 The Bourne Identity (Jason Bourne, #1) ... 42.000000\n", "5945 Killing Jesus: A History ... 28.000000\n", "5946 The Essential Rumi ... 26.000000\n", "5947 Galveston ... 31.000000\n", "5948 Last Night at Chateau Marmont ... 28.000000\n", "5949 The Memoirs of Cleopatra ... 37.000000\n", "5950 Making Faces ... 28.000000\n", "5951 Hot Water Music ... 29.000000\n", "5952 The Boys in the Boat: Nine Americans and Their... ... 27.000000\n", "5953 The Nix ... 29.000000\n", "5954 Savannah Breeze (Weezie and Bebe Mysteries, #2) ... 22.000000\n", "5955 In the Heart of the Sea: The Tragedy of the Wh... ... 31.000000\n", "5956 Mudbound ... 27.000000\n", "5957 Where They Found Her ... 26.000000\n", "5958 Heart of the Matter ... 31.000000\n", "5959 Summer People ... 25.000000\n", "5960 Cold Vengeance (Pendergast, #11) ... 30.000000\n", "5961 Cross My Heart (Cross My Heart, #1) ... 26.000000\n", "5962 Schooled ... 22.000000\n", "5963 In the Penal Colony ... 30.000000\n", "5964 The Art of Seduction ... 30.000000\n", "5965 Imperium: A Novel of Ancient Rome (Cicero, #1) ... 33.000000\n", "5966 Do No Harm: Stories of Life, Death and Brain S... ... 27.000000\n", "5967 La Dame aux Camélias ... 34.000000\n", "5968 The Bride (Lairds' Fiancées, #1) ... 35.000000\n", "5969 The Rent Collector ... 27.000000\n", "5970 The Tiger Rising ... 27.000000\n", "5971 One Summer: America, 1927 ... 27.000000\n", "5972 Hardline (Hacker, #3) ... 33.000000\n", "5973 The Consolations of Philosophy ... 31.000000\n", "5974 Very Valentine ... 29.000000\n", "5975 The Paper Bag Princess ... 23.000000\n", "5976 In This Mountain (Mitford Years, #7) ... 27.000000\n", "5977 Treasure (Dirk Pitt, #9) ... 31.000000\n", "5978 Breath ... 35.000000\n", "5979 Speaking from Among the Bones (Flavia de Luce,... ... 29.000000\n", "5980 Fallen Too Far (Rosemary Beach, #1; Too Far, #1) ... 29.000000\n", "5981 The Scarlet Thread ... 30.000000\n", "5982 Daisy Fay and the Miracle Man ... 33.000000\n", "5983 Heartstone (Matthew Shardlake, #5) ... 33.000000\n", "5984 Lone Survivor: The Eyewitness Account of Opera... ... 32.000000\n", "5985 The Birth House ... 29.000000\n", "5986 Relentless ... 33.000000\n", "5987 The Knight at Dawn (Magic Tree House, #2) ... 27.000000\n", "5988 Complete Poems, 1904-1962 ... 26.000000\n", "5989 Zita the Spacegirl (Zita the Spacegirl, #1) ... 18.000000\n", "5990 Sugar Daddy (Travises, #1) ... 32.000000\n", "5991 Dark Places ... 32.000000\n", "5992 Quentins ... 29.000000\n", "5993 After I'm Gone ... 25.000000\n", "5994 The Secret Adversary (Tommy and Tuppence #1) ... 36.000000\n", "5995 Head Over Heels (Lucky Harbor, #3) ... 29.000000\n", "5996 Midwives ... 33.000000\n", "5997 Forget You ... 29.000000\n", "5998 Holy Bible: King James Version ... 34.000000\n", "5999 Ellen Foster ... 34.000000\n", "6000 Hinds' Feet on High Places ... 40.000000\n", "6001 Sleeping Beauty (Disney Princess, 5) ... 16.000000\n", "6002 Darkly Dreaming Dexter (Dexter, #1) ... 35.000000\n", "6003 Addicted ... 30.000000\n", "6004 Everything Leads to You ... 24.000000\n", "6005 The Power of the Dog ... 29.000000\n", "6006 Moneyball: The Art of Winning an Unfair Game ... 29.000000\n", "6007 Frosty the Snow Man ... 20.000000\n", "6008 The Afghan ... 32.000000\n", "6009 Prince of Wolves (The Grey Wolves, #1) ... 28.000000\n", "6010 The Shunning (The Heritage of Lancaster County... ... 34.000000\n", "6011 Betsy-Tacy (Betsy-Tacy, #1) ... 26.000000\n", "6012 Tears of a Tiger (Hazelwood High, #1) ... 18.000000\n", "6013 Of Love and Other Demons ... 33.000000\n", "6014 Gods in Alabama ... 34.000000\n", "6015 The Secret Scripture ... 35.000000\n", "6016 Here's to Us ... 23.000000\n", "6017 A Perfect Spy ... 41.000000\n", "6018 The Knockoff ... 21.000000\n", "6019 Vanishing Girls ... 26.000000\n", "6020 Gödel, Escher, Bach: An Eternal Golden Braid ... 23.000000\n", "6021 Love in the Afternoon (The Hathaways, #5) ... 33.000000\n", "6022 Guns, Germs, and Steel: The Fates of Human Soc... ... 31.000000\n", "6023 Gilead (Gilead, #1) ... 37.000000\n", "6024 The Defining Decade: Why Your Twenties Matter-... ... 25.000000\n", "6025 Manwhore (Manwhore, #1) ... 30.000000\n", "6026 A Redbird Christmas ... 28.000000\n", "6027 La Vérité sur l'affaire Harry Quebert ... 34.000000\n", "6028 The Expats ... 29.000000\n", "6029 Fifty Shades Trilogy (Fifty Shades, #1-3) ... 34.000000\n", "6030 The Dry Grass of August ... 24.000000\n", "6031 The Other Side of Midnight (Midnight #1) ... 35.000000\n", "6032 May We Be Forgiven ... 31.000000\n", "6033 Train Dreams ... 28.000000\n", "6034 The Sound of Things Falling ... 25.000000\n", "6035 Angle of Repose ... 36.000000\n", "6036 The Necklace and Other Short Stories ... 29.000000\n", "6037 Les Fleurs du Mal ... 33.000000\n", "6038 The Testament ... 35.000000\n", "6039 The Twelve Chairs ... 34.000000\n", "6040 Crash (Crash, #1) ... 30.000000\n", "6041 Cover Her Face (Adam Dalgliesh #1) ... 32.000000\n", "6042 The Story of Babar ... 20.000000\n", "6043 Look Again ... 29.000000\n", "6044 Big Boned (Heather Wells, #3) ... 33.000000\n", "6045 Bergdorf Blondes ... 27.000000\n", "6046 Chaos: Making a New Science ... 24.000000\n", "6047 Copper Sun ... 25.000000\n", "6048 Before We Met ... 25.000000\n", "6049 Slammerkin ... 31.000000\n", "6050 Too Good to Be True ... 29.000000\n", "6051 Ain't She Sweet ... 33.000000\n", "6052 Death on the Nile (Hercule Poirot, #17) ... 39.000000\n", "6053 Sacajawea (Lewis & Clark Expedition) ... 35.000000\n", "6054 After Anna ... 23.000000\n", "6055 The Secret (The Secret, #1) ... 38.000000\n", "6056 Tales from a Not-So-Smart Miss Know-It-All (Do... ... 25.000000\n", "6057 Sideways Stories from Wayside School (Wayside ... ... 25.000000\n", "6058 Wonderstruck ... 20.000000\n", "6059 Obsession in Death (In Death, #40) ... 32.000000\n", "6060 Fly Away Home ... 29.000000\n", "6061 Death: The High Cost of Living Collected ... 29.000000\n", "6062 You (You, #1) ... 31.000000\n", "6063 Scars ... 24.000000\n", "6064 Hunting and Gathering ... 25.000000\n", "6065 I Am Pilgrim (Pilgrim, #1) ... 35.000000\n", "6066 An Occurrence at Owl Creek Bridge ... 28.000000\n", "6067 Mystic River ... 37.000000\n", "6068 The Lost Child of Philomena Lee: A Mother, Her... ... 29.000000\n", "6069 Keeping You a Secret ... 25.000000\n", "6070 My Brother Sam Is Dead ... 25.000000\n", "6071 Pretty Little Liars (TV Series) ... 16.000000\n", "6072 The A.B.C. Murders (Hercule Poirot, #13) ... 38.000000\n", "6073 The Residence: Inside the Private World of the... ... 20.000000\n", "6074 How the Mind Works ... 25.000000\n", "6075 Swapping Lives ... 29.000000\n", "6076 The Great Brain (Great Brain #1) ... 27.000000\n", "6077 A Bad Case of Stripes ... 17.000000\n", "6078 Blue Labyrinth (Pendergast, #14) ... 31.000000\n", "6079 Columbine ... 29.000000\n", "6080 Archer's Voice ... 29.000000\n", "6081 From the Mixed-Up Files of Mrs. Basil E. Frank... ... 29.000000\n", "6082 Broken for You ... 30.000000\n", "6083 A Murder Is Announced (Miss Marple, #5) ... 37.000000\n", "6084 The Litigators ... 29.000000\n", "6085 The Pilot's Wife ... 31.000000\n", "6086 Antigone (The Theban Plays, #3) ... 27.000000\n", "6087 Babyville ... 29.000000\n", "6088 Sempre (Sempre, #1) ... 28.000000\n", "6089 Life Expectancy ... 36.000000\n", "6090 Sharp Objects ... 31.000000\n", "6091 Monster ... 19.500000\n", "6092 Monster ... 19.500000\n", "6093 The Little Lady Agency (The Little Lady Agency... ... 28.000000\n", "6094 Graffiti Moon ... 28.000000\n", "6095 The Moviegoer ... 34.000000\n", "6096 Oedipus Rex (The Theban Plays, #1) ... 26.000000\n", "6097 Dr. Seuss's Green Eggs and Ham: For Soprano, B... ... 17.000000\n", "6098 Mrs. Piggle-Wiggle (Mrs. Piggle Wiggle, #1) ... 26.000000\n", "6099 My Father's Dragon (My Father's Dragon, #1) ... 26.000000\n", "6100 Never Knowing ... 31.000000\n", "6101 Blind Willow, Sleeping Woman ... 35.000000\n", "6102 The Myth of Sisyphus and Other Essays ... 29.000000\n", "6103 Forever Too Far (Rosemary Beach, #3; Too Far, #3) ... 30.000000\n", "6104 Through Black Spruce ... 33.000000\n", "6105 Wildflower ... 22.000000\n", "6106 Open Road Summer ... 23.000000\n", "6107 Uganda Be Kidding Me ... 26.000000\n", "6108 Mockingbird ... 20.000000\n", "6109 After the Funeral (Hercule Poirot, #29) ... 36.000000\n", "6110 The Last Templar (Templar, #1) ... 37.000000\n", "6111 Catch Me If You Can: The True Story of a Real ... ... 36.000000\n", "6112 The Drunkard's Walk: How Randomness Rules Our ... ... 25.000000\n", "6113 Death in the Clouds (Hercule Poirot, #12) ... 36.000000\n", "6114 A Million Little Pieces ... 37.000000\n", "6115 Purity in Death (In Death, #15) ... 36.000000\n", "6116 The Nanny ... 28.000000\n", "6117 Rubyfruit Jungle ... 31.000000\n", "6118 The Midwife: A Memoir of Birth, Joy, and Hard ... ... 29.000000\n", "6119 Dead Wake: The Last Crossing of the Lusitania ... 25.000000\n", "6120 This Is How You Lose Her ... 30.000000\n", "6121 The Boyfriend Thief (Stolen Kiss, #1) ... 23.000000\n", "6122 The Last Council (Amulet, #4) ... 27.000000\n", "6123 The Locket (The Locket, #1) ... 24.000000\n", "6124 Bittersweet ... 25.000000\n", "6125 The Museum of Innocence ... 30.000000\n", "6126 Shut Out ... 27.000000\n", "6127 The Best Man (Blue Heron, #1) ... 26.000000\n", "6128 Summer Rental ... 26.000000\n", "6129 Princess in Training (The Princess Diaries, #6) ... 34.000000\n", "6130 The Seagull ... 30.000000\n", "6131 H is for Hawk ... 28.000000\n", "6132 V for Vendetta ... 34.000000\n", "6133 Scat ... 25.000000\n", "6134 The Mouse and the Motorcycle (Ralph S. Mouse, #1) ... 27.000000\n", "6135 Girl With Curious Hair ... 32.000000\n", "6136 W is for Wasted (Kinsey Millhone, #23) ... 30.000000\n", "6137 The Double Helix ... 22.000000\n", "6138 Broken Grace ... 20.000000\n", "6139 An Enquiry Concerning Human Understanding ... 31.000000\n", "6140 The Moon and More ... 29.000000\n", "6141 The Next Always (Inn BoonsBoro, #1) ... 34.000000\n", "6142 The Healer (O'Malley #5) ... 32.000000\n", "6143 Loser ... 26.000000\n", "6144 Sweet Filthy Boy (Wild Seasons, #1) ... 29.000000\n", "6145 Clara and Mr. Tiffany ... 28.000000\n", "6146 Red Dragon (Hannibal Lecter, #1) ... 42.000000\n", "6147 Beautiful Player (Beautiful Bastard, #3) ... 35.000000\n", "6148 Crazy Little Thing (Bell Harbor, #1) ... 24.000000\n", "6149 Say What You Will ... 24.000000\n", "6150 Them: Adventures with Extremists ... 28.000000\n", "6151 The Nightmare (Joona Linna, #2) ... 34.000000\n", "6152 Two Years Before the Mast: A Sailor's Life at Sea ... 28.000000\n", "6153 Tiny Beautiful Things: Advice on Love and Life... ... 27.000000\n", "6154 Will You Please Be Quiet, Please? ... 32.000000\n", "6155 Certain Girls (Cannie Shapiro #2) ... 29.000000\n", "6156 Faking It (Dempseys, #2) ... 37.000000\n", "6157 Captivated by You (Crossfire, #4) ... 34.000000\n", "6158 Nickel and Dimed: On (Not) Getting By in America ... 20.000000\n", "6159 Mr. Maybe ... 32.000000\n", "6160 The One and Only Ivan ... 25.000000\n", "6161 Transmetropolitan, Vol. 2: Lust for Life (Tran... ... 29.000000\n", "6162 Top Secret Twenty-One (Stephanie Plum, #21) ... 28.000000\n", "6163 Jasper Jones ... 31.000000\n", "6164 Kitchen Confidential: Adventures in the Culina... ... 27.000000\n", "6165 Stealing Parker ... 27.000000\n", "6166 The Heist (Fox and O'Hare, #1) ... 29.000000\n", "6167 New York to Dallas (In Death, #33) ... 39.000000\n", "6168 The Emperor of All Maladies: A Biography of Ca... ... 30.000000\n", "6169 Sahara (Dirk Pitt, #11) ... 32.000000\n", "6170 The Lightning Thief: The Graphic Novel (Percy ... ... 25.000000\n", "6171 Oh, The Places You'll Go! ... 31.000000\n", "6172 Skippyjon Jones in Mummy Trouble (Skippyjon Jo... ... 20.000000\n", "6173 The Air He Breathes (Elements, #1) ... 26.000000\n", "6174 Five Little Pigs (Hercule Poirot, #24) ... 39.000000\n", "6175 Red Storm Rising ... 33.000000\n", "6176 Law Man (Dream Man, #3) ... 30.000000\n", "6177 Sick Puppy ... 31.000000\n", "6178 The Qur'an / القرآن الكريÙ\n", " ... 31.000000\n", "6179 The Secret of Ella and Micha (The Secret, #1) ... 30.000000\n", "6180 Thunderhead ... 36.000000\n", "6181 Maine ... 25.000000\n", "6182 Everything's Eventual: 14 Dark Tales ... 36.000000\n", "6183 Bury Your Dead (Chief Inspector Armand Gamache... ... 27.000000\n", "6184 The Boxcar Children (The Boxcar Children, #1) ... 26.000000\n", "6185 The Door to December ... 35.000000\n", "6186 Seven Years in Tibet ... 31.000000\n", "6187 The Mapping of Love and Death (Maisie Dobbs, #7) ... 28.000000\n", "6188 Hoot ... 26.000000\n", "6189 The City of Falling Angels ... 28.000000\n", "6190 The Glass Castle ... 37.000000\n", "6191 Beautiful Bombshell (Beautiful Bastard, #2.5) ... 34.000000\n", "6192 Hissy Fit ... 30.000000\n", "6193 Cold Fire ... 34.000000\n", "6194 The Scent of Rain and Lightning ... 30.000000\n", "6195 Pacific Vortex! (Dirk Pitt, #1) ... 30.000000\n", "6196 Seriously... I'm Kidding ... 29.000000\n", "6197 Good in Bed (Cannie Shapiro, #1) ... 35.000000\n", "6198 Evil Under the Sun (Hercule Poirot, #23) ... 38.000000\n", "6199 Star Island (Skink, #6) ... 30.000000\n", "6200 Lincoln in the Bardo ... 28.000000\n", "6201 Endless Summer (The Boys Next Door, #1-2) ... 29.000000\n", "6202 The Hidden Reality: Parallel Universes and the... ... 25.000000\n", "6203 Double Fudge (Fudge, #5) ... 26.000000\n", "6204 The Racketeer ... 32.000000\n", "6205 Because of Winn-Dixie ... 29.000000\n", "6206 The Cinderella Murder (Under Suspicion, #2) ... 28.000000\n", "6207 The Elegant Universe: Superstrings, Hidden Dim... ... 27.000000\n", "6208 The Son ... 17.500000\n", "6209 The Son ... 17.500000\n", "6210 Sometimes It Happens ... 23.000000\n", "6211 Hidden Bodies (You, #2) ... 28.000000\n", "6212 Angels in America ... 26.000000\n", "6213 As You Wish: Inconceivable Tales from the Maki... ... 26.000000\n", "6214 Swing Time ... 28.000000\n", "6215 Tales of a Fourth Grade Nothing (Fudge, #1) ... 24.000000\n", "6216 The Will (Magdalene, #1) ... 30.000000\n", "6217 Old School (Diary of a Wimpy Kid, #10) ... 26.000000\n", "6218 Epic Fail ... 22.000000\n", "6219 The Weekenders ... 21.000000\n", "6220 Neanderthal Seeks Human (Knitting in the City,... ... 26.000000\n", "6221 Isaac's Storm: A Man, a Time, and the Deadlies... ... 29.000000\n", "6222 Snow Country ... 30.000000\n", "6223 No Exit and Three Other Plays ... 34.000000\n", "6224 The Pursuit of Happyness ... 28.000000\n", "6225 A Child's Garden of Verses ... 29.000000\n", "6226 Romancing the Duke (Castles Ever After, #1) ... 25.000000\n", "6227 Turbo Twenty-Three (Stephanie Plum, #23) ... 23.000000\n", "6228 Sherlock Holmes of Baker Street: A Life of the... ... 17.000000\n", "6229 One Tiny Lie (Ten Tiny Breaths, #2) ... 30.000000\n", "6230 Born in Death (In Death, #23) ... 35.000000\n", "6231 Every Thing on It ... 26.000000\n", "6232 A Total Waste of Makeup (Charlize Edwards, #1) ... 25.000000\n", "6233 The Poetry of Robert Frost (Collected Poems, C... ... 29.000000\n", "6234 Flyy Girl (Flyy Girl, #1) ... 22.000000\n", "6235 The Russia House ... 31.000000\n", "6236 Birds of a Feather (Maisie Dobbs, #2) ... 27.000000\n", "6237 Beautiful Beginning (Beautiful Bastard, #3.5) ... 31.000000\n", "6238 Lush Life ... 27.000000\n", "6239 Crow Lake ... 30.000000\n", "6240 Takedown Twenty (Stephanie Plum, #20) ... 29.000000\n", "6241 Rabbit Is Rich (Rabbit Angstrom #3) ... 30.000000\n", "6242 Seeing ... 30.000000\n", "6243 Survivor In Death (In Death, #20) ... 33.000000\n", "6244 The Pianist: The Extraordinary Story of One Ma... ... 34.000000\n", "6245 Runaway Ralph (Ralph S. Mouse, #2) ... 28.000000\n", "6246 Free Will ... 25.000000\n", "6247 I, Elizabeth ... 26.000000\n", "6248 Collide (Collide, #1) ... 31.000000\n", "6249 Standing in the Rainbow (Elmwood Springs, #2) ... 31.000000\n", "6250 The Grownup ... 26.000000\n", "6251 The Breadwinner (The Breadwinner, #1) ... 21.000000\n", "6252 Welcome to Temptation (Dempseys, #1) ... 35.000000\n", "6253 Genome: the Autobiography of a Species in 23 C... ... 23.000000\n", "6254 Hello, Mrs. Piggle-Wiggle (Mrs. Piggle Wiggle,... ... 22.000000\n", "6255 Soumission ... 28.000000\n", "6256 Ceremony in Death (In Death, #5) ... 31.000000\n", "6257 As Chimney Sweepers Come to Dust (Flavia de Lu... ... 26.000000\n", "6258 Where You Are (Between the Lines, #2) ... 31.000000\n", "6259 The Last Straw (Diary of a Wimpy Kid, #3) ... 31.000000\n", "6260 Appointment with Death (Hercule Poirot, #19) ... 35.000000\n", "6261 The Virgin Cure ... 29.000000\n", "6262 The Magic (The Secret, #3) ... 29.000000\n", "6263 Transmetropolitan, Vol. 3: Year of the Bastard... ... 28.000000\n", "6264 Death Without Company (Walt Longmire, #2) ... 24.000000\n", "6265 Netherland ... 27.000000\n", "6266 Down London Road (On Dublin Street, #2) ... 33.000000\n", "6267 Disclosure ... 29.000000\n", "6268 Little Earthquakes ... 32.000000\n", "6269 Branded (Fall of Angels, #1) ... 24.000000\n", "6270 Memory in Death (In Death, #22) ... 35.000000\n", "6271 The Guns of Navarone ... 34.000000\n", "6272 Flood Tide (Dirk Pitt, #14) ... 32.000000\n", "6273 While It Lasts (Sea Breeze, #3) ... 33.000000\n", "6274 Twisted Perfection (Rosemary Beach, #5; Perfec... ... 31.000000\n", "6275 Home ... 29.000000\n", "6276 The Chase (Isaac Bell, #1) ... 33.000000\n", "6277 The White Tiger ... 33.000000\n", "6278 Fifty Shades Darker (Fifty Shades, #2) ... 19.000000\n", "6279 Bloodline (Sigma Force, #8) ... 35.000000\n", "6280 The Moonlit Garden ... 22.000000\n", "6281 The Dante Club ... 33.000000\n", "6282 Riding the Bullet ... 27.000000\n", "6283 The Marriage Trap (Marriage to a Billionaire, #2) ... 32.000000\n", "6284 Happier at Home: Kiss More, Jump More, Abandon... ... 23.000000\n", "6285 Keep Holding On ... 24.000000\n", "6286 In Search of Schrödinger's Cat: Quantum Physi... ... 18.000000\n", "6287 Red Phoenix (Red Phoenix #1) ... 24.000000\n", "6288 Brief Interviews with Hideous Men ... 34.000000\n", "6289 Night Film ... 34.000000\n", "6290 The Line of Beauty ... 28.000000\n", "6291 Fables, Vol. 2: Animal Farm ... 25.000000\n", "6292 The Secret (Highlands' Lairds #1) ... 36.000000\n", "6293 The No. 1 Ladies' Detective Agency (No. 1 Lad... ... 35.000000\n", "6294 Bone: Quest for the Spark, Vol. 1 ... 21.000000\n", "6295 Rodrick Rules (Diary of a Wimpy Kid, #2) ... 28.000000\n", "6296 The Girl in the Red Coat ... 27.000000\n", "6297 Middle School: The Worst Years of My Life (Mid... ... 25.000000\n", "6298 Strip Tease ... 32.000000\n", "6299 One Tuesday Morning (9/11, #1) ... 28.000000\n", "6300 Spark Joy: An Illustrated Master Class on the ... ... 24.000000\n", "6301 Rule (Marked Men, #1) ... 31.000000\n", "6302 Captain Underpants and the Attack of the Talki... ... 25.000000\n", "6303 Natural Born Charmer (Chicago Stars, #7) ... 32.000000\n", "6304 Bet Me ... 36.000000\n", "6305 Being Mortal: Medicine and What Matters in the... ... 27.000000\n", "6306 In His Steps ... 35.000000\n", "6307 Queen of Babble in the Big City (Queen of Babb... ... 31.000000\n", "6308 Festive in Death (In Death, #39) ... 25.000000\n", "6309 Sister ... 33.000000\n", "6310 Ten Things We Did (and Probably Shouldn't Have) ... 27.000000\n", "6311 On Writing: A Memoir of the Craft ... 40.000000\n", "6312 Mummies in the Morning (Magic Tree House, #3) ... 27.000000\n", "6313 The Murder House ... 29.000000\n", "6314 This Boy's Life ... 36.000000\n", "6315 Totto-chan: The Little Girl at the Window ... 28.000000\n", "6316 Killing Sarai (In the Company of Killers, #1) ... 29.000000\n", "6317 What She Knew ... 30.000000\n", "6318 Dark Rivers of the Heart ... 39.000000\n", "6319 Memory Man (Amos Decker, #1) ... 30.000000\n", "6320 Sweetbitter ... 27.000000\n", "6321 The Man in the Brown Suit ... 38.000000\n", "6322 Better Than Before: Mastering the Habits of Ou... ... 23.000000\n", "6323 The Christmas Sweater ... 27.000000\n", "6324 Incognito: The Secret Lives of the Brain ... 26.000000\n", "6325 Love and War (North and South, #2) ... 36.000000\n", "6326 ABNKKBSNPLAKo?! (Mga Kwentong Chalk ni Bob Ong) ... 18.000000\n", "6327 Thankless in Death (In Death, #37) ... 28.000000\n", "6328 The Paris Vendetta (Cotton Malone, #5) ... 29.000000\n", "6329 Rachel's Holiday (Walsh Family, #2) ... 36.000000\n", "6330 Hopscotch ... 33.000000\n", "6331 Murder in Mesopotamia (Hercule Poirot, #14) ... 37.000000\n", "6332 The Hard Way (Jack Reacher, #10) ... 35.000000\n", "6333 The Marvels ... 17.000000\n", "6334 Perfect (Second Opportunities, #2) ... 34.000000\n", "6335 The Nicomachean Ethics ... 19.000000\n", "6336 The Body ... 37.000000\n", "6337 Silence (Silence, #1) ... 26.000000\n", "6338 Tilt ... 25.000000\n", "6339 Crazy Rich Asians (Crazy Rich Asians #1) ... 27.000000\n", "6340 Tears of the Giraffe (No. 1 Ladies' Detective ... ... 33.000000\n", "6341 Fudge-a-Mania (Fudge, #4) ... 26.000000\n", "6342 Musicophilia: Tales of Music and the Brain ... 26.000000\n", "6343 Generation Kill: Devil Dogs, Iceman, Captain A... ... 29.000000\n", "6344 Ms. Marvel, Vol. 1: No Normal ... 25.000000\n", "6345 The Whistler ... 24.000000\n", "6346 Heart on a Chain ... 25.000000\n", "6347 The Dogs of War ... 30.000000\n", "6348 Everyone Worth Knowing ... 32.000000\n", "6349 Beautiful Secret (Beautiful Bastard, #4) ... 33.000000\n", "6350 Food: A Love Story ... 23.000000\n", "6351 Trading Up ... 27.000000\n", "6352 Night Light (Restoration #2) ... 26.000000\n", "6353 Squirrel Seeks Chipmunk: A Modest Bestiary ... 30.000000\n", "6354 Falling Up ... 23.000000\n", "6355 Echo ... 21.000000\n", "6356 Sovereign (Matthew Shardlake, #3) ... 31.000000\n", "6357 The Wright Brothers ... 25.000000\n", "6358 Reservation Blues ... 33.000000\n", "6359 The General in His Labyrinth ... 33.000000\n", "6360 Mister Pip ... 35.000000\n", "6361 Salvation in Death (In Death, #27) ... 35.000000\n", "6362 Babar the King ... 22.000000\n", "6363 Swallows and Amazons (Swallows and Amazons, #1) ... 35.000000\n", "6364 One More Chance (Rosemary Beach, #8; Chance, #2) ... 29.000000\n", "6365 Common Sense ... 31.000000\n", "6366 I Let You Go ... 27.000000\n", "6367 Her Mother's Hope (Marta's Legacy, #1) ... 29.000000\n", "6368 Two Graves (Pendergast, #12) ... 32.000000\n", "6369 The Tao of Pooh ... 38.000000\n", "6370 The Slap ... 27.000000\n", "6371 Twilight Eyes ... 32.000000\n", "6372 Crooked Little Lies ... 20.000000\n", "6373 I Hunt Killers (Jasper Dent, #1) ... 31.000000\n", "6374 West with the Night ... 37.000000\n", "6375 The God Delusion ... 34.000000\n", "6376 Ransom (Highlands' Lairds, #2) ... 36.000000\n", "6377 Fables, Vol. 3: Storybook Love ... 25.000000\n", "6378 HHhH ... 27.000000\n", "6379 Find You in the Dark (Find You in the Dark, #1) ... 31.000000\n", "6380 Defending Jacob ... 27.000000\n", "6381 Tara Road ... 30.000000\n", "6382 My Story ... 24.000000\n", "6383 Unnatural Death (Lord Peter Wimsey, #3) ... 33.000000\n", "6384 The Lost City of Z: A Tale of Deadly Obsession... ... 28.000000\n", "6385 Apt Pupil ... 33.000000\n", "6386 Ramona and Her Father (Ramona, #4) ... 26.000000\n", "6387 What I Know for Sure ... 27.000000\n", "6388 The Palace of Illusions ... 36.000000\n", "6389 The Madness of Lord Ian Mackenzie (Mackenzies ... ... 33.000000\n", "6390 A Long Walk to Water: Based on a True Story ... 21.000000\n", "6391 The Underground Railroad ... 26.000000\n", "6392 Furiously Happy: A Funny Book About Horrible T... ... 26.000000\n", "6393 TransAtlantic ... 30.000000\n", "6394 Stranger Child (DCI Tom Douglas, #4) ... 19.000000\n", "6395 A Beautiful Mind ... 34.000000\n", "6396 How to Be Both ... 31.000000\n", "6397 The Book of Basketball: The NBA According to T... ... 26.000000\n", "6398 Fish in a Tree ... 17.000000\n", "6399 Big Bang: The Origin of the Universe ... 20.000000\n", "6400 Pretty Baby ... 27.000000\n", "6401 Evelyn, After ... 24.000000\n", "6402 Mere Christianity ... 42.000000\n", "6403 The Passenger ... 26.000000\n", "6404 Still Missing ... 30.000000\n", "6405 The Unwritten, Vol. 1: Tommy Taylor and the Bo... ... 27.000000\n", "6406 Coma ... 33.000000\n", "6407 Beautiful Stranger (Beautiful Bastard, #2) ... 36.000000\n", "6408 Dewey: The Small-Town Library Cat Who Touched ... ... 31.000000\n", "6409 The Professor and the Madman: A Tale of Murder... ... 31.000000\n", "6410 Mr. Popper's Penguins ... 28.000000\n", "6411 Dreaming of You (The Gamblers, #2) ... 36.000000\n", "6412 The Omen ... 30.000000\n", "6413 Die Again (Rizzoli & Isles, #11) ... 29.000000\n", "6414 El coronel no tiene quien le escriba ... 28.000000\n", "6415 Bookends ... 33.000000\n", "6416 Sleeping Murder (Miss Marple, #13) ... 40.000000\n", "6417 You Were Mine (Rosemary Beach, #9) ... 31.000000\n", "6418 What the Dog Saw and Other Adventures ... 32.000000\n", "6419 Gap Creek ... 31.000000\n", "6420 Hidden Figures: The American Dream and the Unt... ... 25.000000\n", "6421 The Long Haul (Diary of a Wimpy Kid, #9) ... 28.000000\n", "6422 Women of the Silk ... 28.000000\n", "6423 The Third Chimpanzee: The Evolution and Future... ... 25.000000\n", "6424 Chopsticks ... 20.000000\n", "6425 All My Puny Sorrows ... 28.000000\n", "6426 The Red Queen: Sex and the Evolution of Human ... ... 25.000000\n", "6427 Luna ... 25.000000\n", "6428 Chrysanthemum ... 14.000000\n", "6429 Moab Is My Washpot (Memoir #1) ... 36.000000\n", "6430 Vampire Academy: The Graphic Novel (Vampire Ac... ... 30.000000\n", "6431 Primates of Park Avenue ... 21.000000\n", "6432 The Family Fang ... 28.000000\n", "6433 The Book of Luke ... 25.000000\n", "6434 Drowning Ruth ... 33.000000\n", "6435 Homicide: A Year on the Killing Streets ... 30.000000\n", "6436 All Families are Psychotic ... 27.000000\n", "6437 Dust (Kay Scarpetta, #21) ... 30.000000\n", "6438 Superfudge (Fudge, #3) ... 22.000000\n", "6439 The Weight of Blood ... 26.000000\n", "6440 The Opportunist (Love Me with Lies, #1) ... 27.000000\n", "6441 Arthur & George ... 35.000000\n", "6442 From Here to Eternity ... 31.000000\n", "6443 Inca Gold (Dirk Pitt, #12) ... 30.000000\n", "6444 Pretty Girls ... 27.000000\n", "6445 Shadow Divers ... 30.000000\n", "6446 Another Brooklyn ... 23.000000\n", "6447 That Night ... 24.000000\n", "6448 Rose Madder ... 37.000000\n", "6449 The House of the Dead ... 29.000000\n", "6450 How to Be a Woman ... 30.000000\n", "6451 The Honourable Schoolboy ... 37.000000\n", "6452 In the Garden of Beasts: Love, Terror, and an ... ... 28.000000\n", "6453 The Talisman (Volume 1): The Road of Trials ... 21.000000\n", "6454 The Walking Dead, Vol. 12: Life Among Them ... 26.000000\n", "6455 False Memory ... 37.000000\n", "6456 How the Light Gets In (Chief Inspector Armand ... ... 26.000000\n", "6457 Touch & Go (Tessa Leoni, #2) ... 32.000000\n", "6458 Finding Me: A Decade of Darkness, a Life Recla... ... 25.000000\n", "6459 The Poisoner's Handbook: Murder and the Birth ... ... 24.000000\n", "6460 Cat Among the Pigeons (Hercule Poirot, #32) ... 39.000000\n", "6461 Ramona the Brave (Ramona, #3) ... 25.000000\n", "6462 Frosty the Snowman (Frosty the Snowman) ... 12.000000\n", "6463 Saga, Vol. 6 (Saga, #6) ... 31.000000\n", "6464 The Confession ... 32.000000\n", "6465 The Rising: Antichrist is Born (Before They W... ... 28.000000\n", "6466 The Romanov Prophecy ... 33.000000\n", "6467 Anil's Ghost ... 33.000000\n", "6468 Captain Underpants and the Perilous Plot of Pr... ... 24.000000\n", "6469 The Bet (The Bet, #1) ... 30.000000\n", "6470 The Double Bind ... 32.000000\n", "6471 Chains (Seeds of America, #1) ... 22.000000\n", "6472 Turning Angel ... 32.000000\n", "6473 Hornet Flight ... 31.000000\n", "6474 You Are Special (Wemmicksville, #1) ... 24.000000\n", "6475 Fear Nothing (Moonlight Bay, #1) ... 37.000000\n", "6476 The League of Extraordinary Gentlemen, Vol. 1 ... 30.000000\n", "6477 Courageous ... 31.000000\n", "6478 Daring Greatly: How the Courage to Be Vulnerab... ... 26.000000\n", "6479 Act Like a Lady, Think Like a Man: What Men Re... ... 26.000000\n", "6480 Because of Mr. Terupt ... 22.000000\n", "6481 Snuff ... 30.000000\n", "6482 The Duke and I (Bridgertons, #1) ... 30.000000\n", "6483 A House in the Sky ... 32.000000\n", "6484 Revelation (Matthew Shardlake, #4) ... 31.000000\n", "6485 My Year of Meats ... 32.000000\n", "6486 Dangerous Girls ... 25.000000\n", "6487 Girls of Riyadh ... 26.000000\n", "6488 The Nature of the Beast (Chief Inspector Arman... ... 27.000000\n", "6489 The Three Little Pigs ... 15.000000\n", "6490 Summer House ... 21.000000\n", "6491 A Fraction of the Whole ... 33.000000\n", "6492 The Long Way Home (Chief Inspector Armand Gama... ... 26.000000\n", "6493 The Gamble (Colorado Mountain, #1) ... 31.000000\n", "6494 Reckless (Thoughtless, #3) ... 33.000000\n", "6495 The Widow of the South ... 32.000000\n", "6496 Treachery in Death (In Death, #32) ... 33.000000\n", "6497 Return (Redemption, #3) ... 26.000000\n", "6498 Dissolution (Matthew Shardlake, #1) ... 34.000000\n", "6499 Fables, Vol. 7: Arabian Nights [and Days] (Fab... ... 24.000000\n", "6500 Even Now (Lost Love, #1) ... 30.000000\n", "6501 Before the Fall ... 24.000000\n", "6502 Chromosome 6 (Jack Stapleton & Laurie Montgome... ... 32.000000\n", "6503 The Prettiest One ... 23.000000\n", "6504 The Walking Dead, Vol. 11: Fear the Hunters ... 27.000000\n", "6505 Black and Blue ... 26.000000\n", "6506 Most Wanted ... 23.000000\n", "6507 Y: The Last Man - The Deluxe Edition Book One ... 30.000000\n", "6508 The Templar Legacy (Cotton Malone, #1) ... 32.000000\n", "6509 Let the Great World Spin ... 33.000000\n", "6510 Fool Me Once ... 26.000000\n", "6511 The Redhead Revealed (Redhead, #2) ... 29.000000\n", "6512 Bared to You (Crossfire, #1) ... 36.000000\n", "6513 Slammed (Slammed, #1) ... 23.000000\n", "6514 Fences (The Century Cycle #6) ... 27.000000\n", "6515 Sleepers ... 30.000000\n", "6516 The Naked Face ... 30.000000\n", "6517 The Killer Angels (The Civil War Trilogy, #2) ... 39.000000\n", "6518 Envy ... 33.000000\n", "6519 The Art of Asking; or, How I Learned to Stop W... ... 29.000000\n", "6520 Scandal in Spring (Wallflowers, #4) ... 30.000000\n", "6521 Think Like a Freak ... 24.000000\n", "6522 A Lesson Before Dying ... 34.000000\n", "6523 Heat Rises (Nikki Heat, #3) ... 30.000000\n", "6524 Secrets of a Summer Night (Wallflowers, #1) ... 32.000000\n", "6525 The Coincidence of Callie & Kayden (The Coinci... ... 30.000000\n", "6526 Empress of the World (Battle Hall Davies, #1) ... 26.000000\n", "6527 Flesh and Blood (Kay Scarpetta, #22) ... 30.000000\n", "6528 The Beautiful Mystery (Chief Inspector Armand ... ... 28.000000\n", "6529 The Polar Express ... 22.000000\n", "6530 Heaven is for Real: A Little Boy's Astounding ... ... 24.000000\n", "6531 Duma Key ... 39.000000\n", "6532 The Secret Place (Dublin Murder Squad, #5) ... 29.000000\n", "6533 All I Really Need to Know I Learned in Kinderg... ... 31.000000\n", "6534 Mark of the Lion Trilogy ... 25.000000\n", "6535 The Truth Seeker (O'Malley #3) ... 35.000000\n", "6536 Le Petit Nicolas (Le petit Nicolas, #1) ... 32.000000\n", "6537 The Black Widow (Gabriel Allon, #16) ... 28.000000\n", "6538 Orphan X (Orphan X, #1) ... 28.000000\n", "6539 Locke & Key, Vol. 5: Clockworks ... 26.000000\n", "6540 The New Bedside, Bathtub and Armchair Companio... ... 14.000000\n", "6541 The Christmas Wedding ... 29.000000\n", "6542 Four Past Midnight ... 35.000000\n", "6543 The Codex ... 30.000000\n", "6544 Wanted (Wanted, #1) ... 29.000000\n", "6545 Angry Housewives Eating Bon Bons ... 32.000000\n", "6546 Soccernomics: Why England Loses, Why Germany a... ... 23.000000\n", "6547 Y: The Last Man, Vol. 4: Safeword (Y: The Last... ... 23.000000\n", "6548 One for the Murphys ... 18.000000\n", "6549 Beautiful Burn (The Maddox Brothers, #4) ... 26.000000\n", "6550 Chasing Perfect (Fool's Gold, #1) ... 27.000000\n", "6551 Tangled (Tangled, #1) ... 30.000000\n", "6552 Lies That Chelsea Handler Told Me ... 30.000000\n", "6553 From a Buick 8 ... 33.000000\n", "6554 Mine Till Midnight (The Hathaways, #1) ... 31.000000\n", "6555 The Best Nest ... 15.000000\n", "6556 Wiseguy ... 27.000000\n", "6557 The Gathering ... 30.000000\n", "6558 Tea Time for the Traditionally Built (No. 1 La... ... 33.000000\n", "6559 One Thousand White Women: The Journals of May ... ... 35.000000\n", "6560 F*ck Love ... 24.000000\n", "6561 Rusty Nailed (Cocktail, #2) ... 28.000000\n", "6562 Flora and Ulysses: The Illuminated Adventures ... 21.000000\n", "6563 Sadako and the Thousand Paper Cranes ... 21.000000\n", "6564 Bone: Tall Tales ... 24.000000\n", "6565 How I Became a Pirate ... 17.000000\n", "6566 Never Too Far (Rosemary Beach, #2; Too Far, #2) ... 27.000000\n", "6567 Vernon God Little ... 32.000000\n", "6568 The Bourne Legacy (Jason Bourne, #4) ... 36.000000\n", "6569 The Wednesday Letters ... 29.000000\n", "6570 The First Part Last (Heaven, #2) ... 20.000000\n", "6571 How to Get Filthy Rich in Rising Asia ... 26.000000\n", "6572 Lady Luck (Colorado Mountain, #3) ... 31.000000\n", "6573 Sweet Dreams (Colorado Mountain, #2) ... 31.000000\n", "6574 Loving Frank ... 28.000000\n", "6575 Innocent in Death (In Death, #24) ... 35.000000\n", "6576 A People's History of the United States ... 34.000000\n", "6577 Y: The Last Man, Vol. 9: Motherland (Y: The La... ... 26.000000\n", "6578 The Wednesday Wars ... 20.000000\n", "6579 Each Peach Pear Plum ... 18.000000\n", "6580 Homegoing ... 28.000000\n", "6581 I Am Half-Sick of Shadows (Flavia de Luce, #4) ... 31.000000\n", "6582 Y: The Last Man, Vol. 2: Cycles (Y: The Last M... ... 26.000000\n", "6583 The Lowland ... 31.000000\n", "6584 Home (Myron Bolitar #11) ... 25.000000\n", "6585 It Chooses You ... 22.000000\n", "6586 Beautiful Bitch (Beautiful Bastard, #1.5) ... 33.000000\n", "6587 The Littles ... 20.000000\n", "6588 A Color of His Own ... 18.000000\n", "6589 Her Royal Spyness (Her Royal Spyness Mysteries... ... 25.000000\n", "6590 Up Country ... 31.000000\n", "6591 Sex, Drugs, and Cocoa Puffs: A Low Culture Man... ... 30.000000\n", "6592 Cleopatra's Daughter ... 33.000000\n", "6593 Shakespeare's Landlord (Lily Bard, #1) ... 27.000000\n", "6594 The Information: A History, a Theory, a Flood ... 22.000000\n", "6595 In Bed with a Highlander (McCabe Trilogy, #1) ... 27.000000\n", "6596 The Good Lord Bird ... 26.000000\n", "6597 Tales from a Not-So-Graceful Ice Princess (Dor... ... 15.000000\n", "6598 Against All Enemies (Max Moore, #1) ... 32.000000\n", "6599 The Last Boleyn ... 25.000000\n", "6600 Entwined with You (Crossfire, #3) ... 28.000000\n", "6601 The Vegetarian ... 27.000000\n", "6602 Such a Rush ... 24.000000\n", "6603 Bridge of Sighs ... 29.000000\n", "6604 Battlefield of the Mind: Winning the Battle in... ... 32.000000\n", "6605 Dumbo: A Little Golden Book ... 25.000000\n", "6606 Why Not Me? ... 22.000000\n", "6607 The Bachman Books ... 34.000000\n", "6608 Celebrity in Death (In Death, #34) ... 32.000000\n", "6609 Left Drowning (Left Drowning, #1) ... 30.000000\n", "6610 The Dark Monk (The Hangman's Daughter, #2) ... 30.000000\n", "6611 Beachcombers ... 25.000000\n", "6612 A Stranger In The Mirror ... 34.000000\n", "6613 The House by the Lake ... 19.000000\n", "6614 That Boy (That Boy, #1) ... 28.000000\n", "6615 The Sandman: Overture ... 28.000000\n", "6616 Foreplay (The Ivy Chronicles, #1) ... 31.000000\n", "6617 After ... 28.000000\n", "6618 Drown ... 33.000000\n", "6619 Lost & Found (Lost & Found, #1) ... 31.000000\n", "6620 When Will Jesus Bring the Pork Chops? ... 29.000000\n", "6621 The Shallows: What the Internet is Doing to Ou... ... 25.000000\n", "6622 This is the Story of a Happy Marriage ... 25.000000\n", "6623 Size 14 Is Not Fat Either (Heather Wells, #2) ... 33.000000\n", "6624 The Wolf and the Dove ... 33.000000\n", "6625 Glitter and Glue ... 23.000000\n", "6626 Fearless: The Heroic Story of One Navy SEAL's ... ... 23.000000\n", "6627 Unaccustomed Earth ... 34.000000\n", "6628 The Good Neighbor ... 24.000000\n", "6629 This Man (This Man, #1) ... 31.000000\n", "6630 Key of Light (Key Trilogy, #1) ... 36.000000\n", "6631 Oblivion ... 30.000000\n", "6632 Caleb's Crossing ... 27.000000\n", "6633 Stuff White People Like: A Definitive Guide to... ... 31.000000\n", "6634 West Side Story ... 20.000000\n", "6635 Scuffy the Tugboat (Big Little Golden Book) ... 19.000000\n", "6636 Crow's Row (Crow's Row, #1) ... 27.000000\n", "6637 Redeployment ... 27.000000\n", "6638 Darwin's Dangerous Idea: Evolution and the Mea... ... 20.000000\n", "6639 Y: The Last Man, Vol. 7: Paper Dolls (Y: The L... ... 25.000000\n", "6640 The Girl You Lost ... 21.000000\n", "6641 Taking Chances (Taking Chances, #1) ... 32.000000\n", "6642 The Story of the Trapp Family Singers ... 32.000000\n", "6643 The Accidental Billionaires: The Founding of F... ... 28.000000\n", "6644 My Favorite Mistake (My Favorite Mistake, #1) ... 30.000000\n", "6645 Think Twice (Rosato & Associates, #11) ... 28.000000\n", "6646 Salvage the Bones ... 28.000000\n", "6647 Rock Chick Rescue (Rock Chick, #2) ... 29.000000\n", "6648 Tuesday ... 16.000000\n", "6649 Tempt Me at Twilight (The Hathaways, #3) ... 31.000000\n", "6650 One Good Dog ... 28.000000\n", "6651 Under the Tuscan Sun ... 33.000000\n", "6652 Sleeping Beauty: a Little Golden Book (Disney ... ... 19.000000\n", "6653 Last Chance Saloon ... 30.000000\n", "6654 The Selected Poetry of Rainer Maria Rilke ... 33.000000\n", "6655 Sometimes It Lasts (Sea Breeze, #5) ... 30.000000\n", "6656 Personal (Jack Reacher, #19) ... 30.000000\n", "6657 The Faraway Tree Stories (The Faraway Tree #1-3) ... 33.000000\n", "6658 The Christmas Train ... 30.000000\n", "6659 Fallen Crest Family (Fallen Crest High, #2) ... 28.000000\n", "6660 Sleep Tight ... 23.000000\n", "6661 #GIRLBOSS ... 28.000000\n", "6662 Await Your Reply ... 27.000000\n", "6663 What I Talk About When I Talk About Running ... 33.000000\n", "6664 It Happened One Autumn (Wallflowers, #2) ... 31.000000\n", "6665 The Freedom Writers Diary ... 32.000000\n", "6666 The Farm ... 27.000000\n", "6667 Silent Spring ... 27.000000\n", "6668 The Mask ... 30.000000\n", "6669 I'd Know You Anywhere ... 27.000000\n", "6670 Naked Heat (Nikki Heat, #2) ... 30.000000\n", "6671 Where Eagles Dare ... 30.000000\n", "6672 Goldfinger (James Bond, #7) ... 39.000000\n", "6673 Red Sparrow (Red Sparrow Trilogy #1) ... 30.000000\n", "6674 Ford County ... 30.000000\n", "6675 Flush ... 25.000000\n", "6676 Harold and the Purple Crayon ... 22.000000\n", "6677 Suicide Notes ... 22.000000\n", "6678 Just Like Heaven (Smythe-Smith Quartet #1) ... 33.000000\n", "6679 You Will Know Me ... 24.000000\n", "6680 Radiant Angel (John Corey, #7) ... 28.000000\n", "6681 The Walking Dead, Book Two (The Walking Dead #... ... 26.000000\n", "6682 The Magpies ... 24.000000\n", "6683 The Time Traveller's Guide to Medieval England... ... 31.000000\n", "6684 How We Are Hungry ... 29.000000\n", "6685 Dataclysm: Who We Are (When We Think No One's ... ... 23.000000\n", "6686 You Are a Badass: How to Stop Doubting Your Gr... ... 28.000000\n", "6687 Locke & Key, Vol. 2: Head Games ... 28.000000\n", "6688 Delusion in Death (In Death, #35) ... 32.000000\n", "6689 White Nights ... 30.000000\n", "6690 Flags of Our Fathers ... 32.000000\n", "6691 A Complicated Kindness ... 33.000000\n", "6692 The Water is Wide: A Memoir ... 30.000000\n", "6693 Feral Sins (The Phoenix Pack, #1) ... 25.000000\n", "6694 Thunderstruck ... 30.000000\n", "6695 The Bastard of Istanbul ... 31.000000\n", "6696 Si-cology 1: Tales and Wisdom from Duck Dynast... ... 26.000000\n", "6697 Equus ... 31.000000\n", "6698 The Fry Chronicles (Memoir #2) ... 32.000000\n", "6699 The Declaration of Independence and The Consti... ... 22.000000\n", "6700 Second Chance ... 29.000000\n", "6701 Always You (Best Friend, #1) ... 30.000000\n", "6702 The Basketball Diaries ... 31.000000\n", "6703 Fallen Crest High (Fallen Crest High, #1) ... 30.000000\n", "6704 The Walking Dead, Compendium 2 ... 32.000000\n", "6705 On Liberty ... 24.000000\n", "6706 Virgin River (Virgin River, #1) ... 29.000000\n", "6707 The Missing Piece Meets the Big O ... 28.000000\n", "6708 Lucky You ... 32.000000\n", "6709 Rising Strong ... 24.000000\n", "6710 Promised (One Night, #1) ... 30.000000\n", "6711 Turn of Mind ... 25.000000\n", "6712 Hedda Gabler ... 27.000000\n", "6713 The Turner House ... 23.000000\n", "6714 Those Guys Have All the Fun: Inside the World ... ... 22.000000\n", "6715 In the Kingdom of Ice: The Grand and Terrible ... ... 26.000000\n", "6716 If You Give a Cat a Cupcake ... 17.000000\n", "6717 Waiting to Exhale (Waiting To Exhale #1) ... 30.000000\n", "6718 The Fourth Protocol ... 35.000000\n", "6719 Fantasy in Death (In Death, #30) ... 31.000000\n", "6720 The Hiding Place: The Triumphant True Story of... ... 34.000000\n", "6721 Life is What You Make It: A Story of Love, Hop... ... 26.000000\n", "6722 The Round House ... 29.000000\n", "6723 Before Jamaica Lane (On Dublin Street, #3) ... 25.000000\n", "6724 Freckle Juice ... 19.000000\n", "6725 Crash & Burn (Tessa Leoni, #3) ... 26.000000\n", "6726 Locke & Key, Vol. 1: Welcome to Lovecraft ... 27.000000\n", "6727 Misbehaving (Sea Breeze, #6) ... 32.000000\n", "6728 The Deal (Off-Campus, #1) ... 25.000000\n", "6729 Forever Mine (The Moreno Brothers, #1) ... 24.000000\n", "6730 The Night Before Christmas ... 29.000000\n", "6731 سÙ\n", "فونی Ù\n", "ردگان ... 18.000000\n", "6732 Silent Scream (D.I. Kim Stone, #1) ... 26.000000\n", "6733 Shroud for a Nightingale (Adam Dalgliesh #4) ... 30.000000\n", "6734 The Sneetches and Other Stories ... 21.000000\n", "6735 If You Give a Mouse a Cookie ... 20.000000\n", "6736 The Negotiator (O'Malley, #1) ... 34.000000\n", "6737 Rosemary: The Hidden Kennedy Daughter ... 20.000000\n", "6738 Heart of the Sea (Gallaghers of Ardmore / Iris... ... 35.000000\n", "6739 The Guilty (Will Robie, #4) ... 28.000000\n", "6740 Wir Kinder vom Bahnhof Zoo ... 34.000000\n", "6741 Life and Times of Michael K ... 29.000000\n", "6742 Never Cry Wolf ... 33.000000\n", "6743 Ramona and Her Mother (Ramona, #5) ... 25.000000\n", "6744 The Score (Off-Campus, #3) ... 23.000000\n", "6745 Cop Town ... 28.000000\n", "6746 The Servants of Twilight ... 31.000000\n", "6747 A Rogue by Any Other Name (The Rules of Scound... ... 28.000000\n", "6748 Sophie & Carter ... 22.000000\n", "6749 Nature Girl ... 30.000000\n", "6750 Roll of Thunder, Hear My Cry (Logans, #4) ... 25.000000\n", "6751 Beezus and Ramona (Ramona, #1) ... 25.000000\n", "6752 The Gashlycrumb Tinies (The Vinegar Works, #1) ... 30.000000\n", "6753 The Look of Love (San Francisco Sullivans, #1;... ... 29.000000\n", "6754 The Guardian (O'Malley #2) ... 36.000000\n", "6755 Safe with Me (With Me in Seattle, #5) ... 27.000000\n", "6756 The Christmas Box (The Christmas Box, #1) ... 33.000000\n", "6757 Frindle ... 23.000000\n", "6758 Missoula: Rape and the Justice System in a Col... ... 21.000000\n", "6759 Black Hawk Down ... 32.000000\n", "6760 Tao of Pooh and Te of Piglet Boxed Set ... 30.000000\n", "6761 The Gruffalo ... 25.000000\n", "6762 An Offer From a Gentleman (Bridgertons, #3) ... 31.000000\n", "6763 Chanakya's Chant ... 30.000000\n", "6764 Killing Kennedy: The End of Camelot ... 26.000000\n", "6765 Game Change: Obama and the Clintons, McCain an... ... 24.000000\n", "6766 Absurdistan ... 29.000000\n", "6767 Saving Francesca ... 20.000000\n", "6768 Diary of a Wimpy Kid (Diary of a Wimpy Kid, #1) ... 28.000000\n", "6769 Prozac Nation ... 36.000000\n", "6770 Between, Georgia ... 29.000000\n", "6771 The Bookseller of Kabul ... 31.000000\n", "6772 Giggle, Giggle, Quack ... 15.000000\n", "6773 The Witness ... 19.500000\n", "6774 The Witness ... 19.500000\n", "6775 Something like Normal ... 21.000000\n", "6776 The Evolution of Calpurnia Tate (Calpurnia Tat... ... 25.000000\n", "6777 Indulgence in Death (In Death, #31) ... 30.000000\n", "6778 The Lions of Little Rock ... 18.000000\n", "6779 Half Girlfriend ... 30.000000\n", "6780 Personal History ... 26.000000\n", "6781 Effortless (Thoughtless, #2) ... 29.000000\n", "6782 The Boy Who Sneaks in My Bedroom Window ... 26.000000\n", "6783 The Happiness Project: Or Why I Spent a Year T... ... 31.000000\n", "6784 Twisted Palace (The Royals, #3) ... 26.000000\n", "6785 Wallbanger (Cocktail, #1) ... 28.000000\n", "6786 Into Thin Air: A Personal Account of the Mount... ... 30.000000\n", "6787 The Beggar King (The Hangman's Daughter, #3) ... 30.000000\n", "6788 Lucky ... 38.000000\n", "6789 A Rule Against Murder (Chief Inspector Armand ... ... 28.000000\n", "6790 The Suspicions of Mr. Whicher: A Shocking Murd... ... 29.000000\n", "6791 A Morbid Taste for Bones (Chronicles of Brothe... ... 34.000000\n", "6792 Liar & Spy ... 18.000000\n", "6793 The Wicked Girls ... 30.000000\n", "6794 Creation in Death (In Death, #25) ... 32.000000\n", "6795 The Story of Tracy Beaker ... 26.000000\n", "6796 Hidden (Bone Secrets. #1) ... 26.000000\n", "6797 Plum Island (John Corey, #1) ... 33.000000\n", "6798 Gods and Generals (The Civil War Trilogy, #1) ... 29.000000\n", "6799 The Heist (Gabriel Allon, #14) ... 30.000000\n", "6800 Revenge of the Spellmans (The Spellmans, #3) ... 26.000000\n", "6801 The Stranger Beside Me: Ted Bundy The Shocking... ... 31.000000\n", "6802 Anne Frank Remembered: The Story of the Woman ... ... 30.000000\n", "6803 Marvel 1602 ... 32.000000\n", "6804 The Apothecary's Daughter ... 29.000000\n", "6805 What the Dead Know ... 33.000000\n", "6806 Johnny Tremain ... 27.000000\n", "6807 In the Woods (Dublin Murder Squad, #1) ... 34.000000\n", "6808 Heat Wave (Nikki Heat, #1) ... 32.000000\n", "6809 Lyle, Lyle, Crocodile ... 16.000000\n", "6810 Promises in Death (In Death, #28) ... 31.000000\n", "6811 If You Give a Pig a Pancake ... 19.000000\n", "6812 The Rapture of Canaan ... 29.000000\n", "6813 Earth (The Book): A Visitor's Guide to the Hum... ... 28.000000\n", "6814 The Country Mouse and the City Mouse; The Fox ... ... 11.000000\n", "6815 The General's Daughter ... 33.000000\n", "6816 The Pioneer Woman: Black Heels to Tractor Wheels ... 26.000000\n", "6817 Imperial Bedrooms ... 28.000000\n", "6818 If Life Is a Bowl of Cherries What Am I Doing ... ... 24.000000\n", "6819 Trust in Me (Wait for You, #1.5) ... 29.000000\n", "6820 Murder at the Vicarage (Miss Marple, #1) ... 33.000000\n", "6821 The Blackhouse (Lewis Trilogy, #1) ... 30.000000\n", "6822 Flight of the Intruder (Jake Grafton #1) ... 28.000000\n", "6823 Three Day Road ... 32.000000\n", "6824 Dad Is Fat ... 24.000000\n", "6825 The Republic ... 29.000000\n", "6826 Royally Screwed (Royally, #1) ... 24.000000\n", "6827 Bring Up the Bodies (Thomas Cromwell, #2) ... 36.000000\n", "6828 Supernova: Ksatria, Puteri, dan Bintang Jatuh ... 22.000000\n", "6829 Twenty Love Poems and a Song of Despair ... 31.000000\n", "6830 Rome (Marked Men, #3) ... 31.000000\n", "6831 Falling into You (Falling, #1) ... 25.000000\n", "6832 A Long Way from Chicago (A Long Way from Chica... ... 23.000000\n", "6833 The Interpretation of Dreams ... 26.000000\n", "6834 The Unidentified Redhead (Redhead, #1) ... 29.000000\n", "6835 The Darkest Evening of the Year ... 33.000000\n", "6836 The Sheltering Sky ... 33.000000\n", "6837 Killing Patton: The Strange Death of World War... ... 26.000000\n", "6838 The Proposition (The Proposition, #1) ... 25.000000\n", "6839 QED: The Strange Theory of Light and Matter ... 20.000000\n", "6840 The Hating Game ... 27.000000\n", "6841 Caught ... 32.000000\n", "6842 The Monster at the End of this Book ... 26.000000\n", "6843 The Walking Dead, Book One (The Walking Dead #... ... 29.000000\n", "6844 Sworn to Silence (Kate Burkholder, #1) ... 26.000000\n", "6845 Memories of My Melancholy Whores ... 32.000000\n", "6846 The Green Mile, Part 2: The Mouse on the Mile ... 35.000000\n", "6847 Missing You ... 29.000000\n", "6848 Assholes Finish First (Tucker Max, #2) ... 26.000000\n", "6849 Brain Droppings ... 29.000000\n", "6850 The Twenty-One Balloons ... 27.000000\n", "6851 Welcome to the World, Baby Girl! (Elmwood Spri... ... 29.000000\n", "6852 Horton Hears a Who! ... 23.000000\n", "6853 Fables, Vol. 9: Sons of Empire ... 27.000000\n", "6854 Amphigorey (Amphigorey, #1) ... 33.000000\n", "6855 The Inheritance of Loss ... 33.000000\n", "6856 Jackdaws ... 30.000000\n", "6857 The Starter Wife ... 28.000000\n", "6858 Suzanne's Diary for Nicholas ... 34.000000\n", "6859 Bringing Down the House: The Inside Story of S... ... 28.000000\n", "6860 The Ugly Truth (Diary of a Wimpy Kid, #5) ... 28.000000\n", "6861 A Week to Be Wicked (Spindle Cove, #2) ... 28.000000\n", "6862 Y: The Last Man, Vol. 5: Ring of Truth (Y: The... ... 24.000000\n", "6863 The Stand: Captain Trips ... 27.000000\n", "6864 Dog Days (Diary of a Wimpy Kid, #4) ... 29.000000\n", "6865 Let's Pretend This Never Happened (Dear Dumb D... ... 24.000000\n", "6866 The Girls of Atomic City: The Untold Story of ... ... 25.000000\n", "6867 On the Genealogy of Morals ... 26.000000\n", "6868 Wolf Hall (Thomas Cromwell, #1) ... 36.000000\n", "6869 The Sands of Time ... 34.000000\n", "6870 The Woman in Cabin 10 ... 25.000000\n", "6871 The Other Side of the Story ... 32.000000\n", "6872 Crush (Crash, #3) ... 31.000000\n", "6873 Galileo's Daughter: A Historical Memoir of Sci... ... 32.000000\n", "6874 Double Whammy ... 31.000000\n", "6875 1,000 Places to See Before You Die ... 28.000000\n", "6876 No Talking ... 24.000000\n", "6877 A Walk Across the Sun ... 28.000000\n", "6878 I Hope They Serve Beer in Hell (Tucker Max, #1) ... 32.000000\n", "6879 Bad Romeo (Starcrossed, #1) ... 32.000000\n", "6880 Happy Ever After (Bride Quartet, #4) ... 30.000000\n", "6881 Portrait of a Killer: Jack the Ripper - Case C... ... 32.000000\n", "6882 Dexter in the Dark (Dexter, #3) ... 32.000000\n", "6883 The Real Mother Goose ... 23.000000\n", "6884 The Colorado Kid (Hard Case Crime #13) ... 34.000000\n", "6885 The Widow ... 25.000000\n", "6886 Mystery Man (Dream Man, #1) ... 31.000000\n", "6887 A History of Western Philosophy ... 32.000000\n", "6888 The 7 Habits of Highly Effective Teens: The Ul... ... 30.000000\n", "6889 Cemetery Dance (Pendergast, #9) ... 33.000000\n", "6890 And the Shofar Blew ... 29.000000\n", "6891 A Trick of the Light (Chief Inspector Armand G... ... 27.000000\n", "6892 SEAL Team Six: Memoirs of an Elite Navy SEAL S... ... 25.000000\n", "6893 The Skin I'm In ... 18.000000\n", "6894 The Walking Dead, Vol. 03: Safety Behind Bars ... 30.000000\n", "6895 A Lot like Love (FBI/US Attorney, #2) ... 27.000000\n", "6896 The Motorcycle Diaries: Notes on a Latin Ameri... ... 32.000000\n", "6897 Between a Rock and a Hard Place ... 30.000000\n", "6898 The Duchess War (Brothers Sinister, #1) ... 27.000000\n", "6899 Goodnight Moon ... 23.000000\n", "6900 Chomp ... 20.000000\n", "6901 How to Eat Fried Worms ... 18.000000\n", "6902 Three Fates ... 41.000000\n", "6903 Ramona Forever (Ramona, #7) ... 23.000000\n", "6904 The Berenstain Bears Forget Their Manners ... 20.000000\n", "6905 Strangers in Death (In Death, #26) ... 33.000000\n", "6906 Consider the Lobster and Other Essays ... 31.000000\n", "6907 Hot, Flat, and Crowded: Why We Need a Green Re... ... 24.000000\n", "6908 The Beatles: The Biography ... 30.000000\n", "6909 Green Eggs and Ham ... 27.000000\n", "6910 Brotherhood in Death (In Death, #42) ... 26.000000\n", "6911 Tales from a Not-So-Happy Heartbreaker (Dork D... ... 20.000000\n", "6912 The Cat in the Hat ... 25.000000\n", "6913 Skeleton Crew ... 35.000000\n", "6914 Roadwork ... 35.000000\n", "6915 Afterburn (Jax & Gia, #1) ... 27.000000\n", "6916 Bread and Wine: A Love Letter to Life Around... ... 21.000000\n", "6917 The Christmas Shoes (Christmas Hope #1) ... 32.000000\n", "6918 In a Dark, Dark Wood ... 24.000000\n", "6919 Inside the Human Body (The Magic School Bus, #3) ... 19.000000\n", "6920 The Bourne Supremacy (Jason Bourne, #2) ... 38.000000\n", "6921 The Appeal ... 29.000000\n", "6922 A Charlie Brown Christmas ... 26.000000\n", "6923 Phantoms in the Brain: Probing the Mysteries o... ... 22.000000\n", "6924 Beat the Reaper (Peter Brown #1) ... 32.000000\n", "6925 Mean Streak ... 29.000000\n", "6926 The Likeness (Dublin Murder Squad, #2) ... 34.000000\n", "6927 Days with Frog and Toad (Frog and Toad, #4) ... 21.000000\n", "6928 Breathe (Colorado Mountain, #4) ... 27.000000\n", "6929 The Dead Key ... 25.000000\n", "6930 The Many Lives & Secret Sorrows of Josephine B... ... 28.000000\n", "6931 The Howling ... 23.000000\n", "6932 The Hate U Give ... 26.000000\n", "6933 The Walking Dead, Book Three (The Walking Dead... ... 26.000000\n", "6934 The Teachings of Don Juan: A Yaqui Way of Know... ... 27.000000\n", "6935 Nobody's Baby But Mine (Chicago Stars, #3) ... 28.000000\n", "6936 Lucy Sullivan Is Getting Married ... 30.000000\n", "6937 Island Beneath the Sea ... 30.000000\n", "6938 What the Night Knows ... 32.000000\n", "6939 Crocodile on the Sandbank (Amelia Peabody #1) ... 32.000000\n", "6940 A Great Reckoning (Chief Inspector Armand Gama... ... 24.000000\n", "6941 The Innocent ... 35.000000\n", "6942 The Poetry of Pablo Neruda ... 30.000000\n", "6943 Married By Morning (The Hathaways, #4) ... 31.000000\n", "6944 Rain Reign ... 18.000000\n", "6945 Tempting the Player (Gamble Brothers, #2) ... 27.000000\n", "6946 Kon-Tiki: Across The Pacific In A Raft ... 28.000000\n", "6947 The Complete Calvin and Hobbes ... 32.000000\n", "6948 The Siren (The Original Sinners, #1) ... 32.000000\n", "6949 Yes Please ... 27.000000\n", "6950 The Frog and Toad Treasury: Frog and Toad are ... ... 22.000000\n", "6951 David and Goliath: Underdogs, Misfits, and the... ... 26.000000\n", "6952 Blink: The Power of Thinking Without Thinking ... 30.000000\n", "6953 The Mirror Crack'd from Side to Side (Miss Mar... ... 37.000000\n", "6954 The Virtue of Selfishness: A New Concept of Eg... ... 28.000000\n", "6955 The Redemption of Callie & Kayden (The Coincid... ... 26.000000\n", "6956 From Ashes (From Ashes, #1) ... 30.000000\n", "6957 While I Was Gone ... 29.000000\n", "6958 The Walking Dead, Vol. 05: The Best Defense ... 29.000000\n", "6959 Gabriel's Inferno (Gabriel's Inferno, #1) ... 31.000000\n", "6960 Cane River ... 35.000000\n", "6961 The Last Mile (Amos Decker, #2) ... 28.000000\n", "6962 The Escape (John Puller, #3) ... 28.000000\n", "6963 Love You More (Tessa Leoni, #1; Detective D.D.... ... 30.000000\n", "6964 Stay Close ... 29.000000\n", "6965 La catedral del mar ... 33.000000\n", "6966 Eat, Pray, Love ... 37.000000\n", "6967 Y: The Last Man, Vol. 6: Girl on Girl (Y: The ... ... 25.000000\n", "6968 Eeny Meeny (Helen Grace, #1) ... 30.000000\n", "6969 Just Me in the Tub (Mercer Mayer's Little Crit... ... 16.000000\n", "6970 The Signal and the Noise: Why So Many Predicti... ... 24.000000\n", "6971 Ultramarathon Man: Confessions of an All-Night... ... 23.000000\n", "6972 Tales from a Not-So-Fabulous Life (Dork Diarie... ... 22.000000\n", "6973 Saving Fish from Drowning ... 33.000000\n", "6974 Complications: A Surgeon's Notes on an Imperfe... ... 32.000000\n", "6975 Morality for Beautiful Girls (No. 1 Ladies' De... ... 33.000000\n", "6976 The Kissing Hand ... 16.000000\n", "6977 Fables, Vol. 10: The Good Prince ... 27.000000\n", "6978 Behind Her Eyes ... 26.000000\n", "6979 The Day of the Jackal ... 36.000000\n", "6980 No Place to Run (KGI, #2) ... 31.000000\n", "6981 Good as Gone ... 23.000000\n", "6982 The Climb: Tragic Ambitions on Everest ... 25.000000\n", "6983 Bag of Bones ... 36.000000\n", "6984 Nothing to Envy: Ordinary Lives in North Korea ... 26.000000\n", "6985 The Viscount Who Loved Me (Bridgertons, #2) ... 29.000000\n", "6986 About That Night (FBI/US Attorney, #3) ... 30.000000\n", "6987 Honor Among Thieves ... 27.000000\n", "6988 Las batallas en el desierto ... 27.000000\n", "6989 George Washington's Secret Six: The Spy Ring T... ... 26.000000\n", "6990 Born Free: A Lioness of Two Worlds (Story of E... ... 26.000000\n", "6991 The Art of Loving ... 28.000000\n", "6992 The Discoverers: A History of Man's Search to ... ... 29.000000\n", "6993 The One I Left Behind ... 26.000000\n", "6994 In the Company of Cheerful Ladies (No. 1 Ladie... ... 33.000000\n", "6995 Futures and Frosting (Chocolate Lovers, #2) ... 26.000000\n", "6996 Savannah Blues (Weezie and Bebe Mysteries, #1) ... 33.000000\n", "6997 Skippyjon Jones ... 21.000000\n", "6998 Frigid (Frigid, #1) ... 27.000000\n", "6999 Dear Daughter ... 23.000000\n", "7000 The Sister ... 21.000000\n", "7001 Second Honeymoon (Honeymoon, #2) ... 29.000000\n", "7002 Five Days at Memorial: Life and Death in a Sto... ... 19.000000\n", "7003 Second Life ... 29.000000\n", "7004 And to Think That I Saw it on Mulberry Street ... 19.000000\n", "7005 The Little Red Caboose (Little Golden Book) ... 19.000000\n", "7006 Delicious! ... 26.000000\n", "7007 Follow You Home ... 26.000000\n", "7008 A Red Herring Without Mustard (Flavia de Luce,... ... 29.000000\n", "7009 Ms. Marvel, Vol. 2: Generation Why ... 24.000000\n", "7010 Hellboy, Vol. 2: Wake the Devil (Hellboy, #2) ... 23.000000\n", "7011 The Other Typist ... 30.000000\n", "7012 Moonlight Mile (Kenzie & Gennaro,#6) ... 28.000000\n", "7013 Holy Blood, Holy Grail ... 25.000000\n", "7014 Hellboy, Vol. 3: The Chained Coffin and Others... ... 22.000000\n", "7015 The Girl Next Door ... 31.000000\n", "7016 Inés of My Soul ... 34.000000\n", "7017 Between the World and Me ... 21.000000\n", "7018 Rabbit at Rest (Rabbit Angstrom #4) ... 31.000000\n", "7019 A Mercy ... 31.000000\n", "7020 The Gift of Fear: Survival Signals That Protec... ... 29.000000\n", "7021 A Great Deliverance (Inspector Lynley, #1) ... 28.000000\n", "7022 Wall and Piece ... 27.000000\n", "7023 The Language Instinct: How the Mind Creates La... ... 28.000000\n", "7024 South of Broad ... 30.000000\n", "7025 Deliverance ... 35.000000\n", "7026 The Cat in the Hat Comes Back ... 23.000000\n", "7027 The Infernal Devices: Clockwork Angel (The Inf... ... 30.000000\n", "7028 The Demon-Haunted World: Science as a Candle i... ... 22.000000\n", "7029 Fractured (Will Trent, #2) ... 33.000000\n", "7030 A Corner of the Universe ... 26.000000\n", "7031 The Key to Midnight ... 32.000000\n", "7032 Honor's Splendour ... 34.000000\n", "7033 Only the Innocent (DCI Tom Douglas #1) ... 25.000000\n", "7034 Locke & Key, Vol. 6: Alpha & Omega ... 27.000000\n", "7035 Chicken Soup for the Teenage Soul: 101 Stories... ... 26.000000\n", "7036 The Walking Dead, Vol. 01: Days Gone Bye ... 29.000000\n", "7037 Love You Forever ... 25.000000\n", "7038 The Wimpy Kid Movie Diary (Diary of a Wimpy Kid) ... 26.000000\n", "7039 The Passion of Artemisia ... 31.000000\n", "7040 The Perfect Play (Play by Play, #1) ... 34.000000\n", "7041 Knots and Crosses (Inspector Rebus, #1) ... 29.000000\n", "7042 The Right Stuff ... 29.000000\n", "7043 عقاید یک دلقک ... 31.000000\n", "7044 Stellaluna ... 20.000000\n", "7045 The Complete Adventures of Curious George ... 21.000000\n", "7046 This Changes Everything: Capitalism vs. The Cl... ... 29.000000\n", "7047 Paper Girls, Vol. 1 (Paper Girls, #1) ... 24.000000\n", "7048 The Bone Bed (Kay Scarpetta, #20) ... 30.000000\n", "7049 Wild: From Lost to Found on the Pacific Crest ... ... 29.000000\n", "7050 The Story of an Hour ... 24.000000\n", "7051 Curious George Rides a Bike ... 22.000000\n", "7052 Moonwalking with Einstein: The Art and Science... ... 27.000000\n", "7053 Tawny Scrawny Lion ... 21.000000\n", "7054 Fear Nothing (Detective D.D. Warren, #7) ... 28.000000\n", "7055 Is Everyone Hanging Out Without Me? (And Other... ... 26.000000\n", "7056 The Scrapbook of Frankie Pratt ... 23.000000\n", "7057 Y: The Last Man, Vol. 3: One Small Step (Y: Th... ... 26.000000\n", "7058 A House for Mr Biswas ... 28.000000\n", "7059 God Help the Child ... 23.000000\n", "7060 In the Clearing (Tracy Crosswhite, #3) ... 20.000000\n", "7061 A Coney Island of the Mind ... 24.000000\n", "7062 Kaleidoscope Hearts (Hearts, #1) ... 27.000000\n", "7063 The Interpretation of Murder (Freud, #1) ... 29.000000\n", "7064 The Last Nude ... 23.000000\n", "7065 Curious George ... 19.000000\n", "7066 Wild Man (Dream Man, #2) ... 29.000000\n", "7067 All the President's Men ... 30.000000\n", "7068 Just Mercy: A Story of Justice and Redemption ... 23.000000\n", "7069 Eating Animals ... 29.000000\n", "7070 The Dhammapada ... 24.000000\n", "7071 The Wild Ones (The Wild Ones, #1) ... 30.000000\n", "7072 I Was So Mad ... 17.000000\n", "7073 Rock Chick Redemption (Rock Chick, #3) ... 26.000000\n", "7074 Wench ... 28.000000\n", "7075 Fueled (Driven, #2) ... 29.000000\n", "7076 Chicken Soup with Rice: A Book of Months (The ... ... 19.000000\n", "7077 Blue Highways ... 31.000000\n", "7078 The Eagle Has Landed (Liam Devlin, #1) ... 33.000000\n", "7079 Leonardo's Notebooks ... 24.000000\n", "7080 Sh*t My Dad Says ... 30.000000\n", "7081 The Garden of Evening Mists ... 31.000000\n", "7082 Guess How Much I Love You ... 23.000000\n", "7083 Nikola Tesla: Imagination and the Man That Inv... ... 18.000000\n", "7084 The Girl With No Past ... 24.000000\n", "7085 Dream Team: How Michael, Magic, Larry, Charles... ... 15.000000\n", "7086 The Cold Dish (Walt Longmire, #1) ... 28.000000\n", "7087 Essentialism: The Disciplined Pursuit of Less ... 20.000000\n", "7088 The Walking Dead, Vol. 04: The Heart's Desire ... 28.000000\n", "7089 The Foot Book: Dr. Seuss's Wacky Book of Oppos... ... 20.000000\n", "7090 Ù\n", "اهی سیاه کوچولو ... 18.000000\n", "7091 Supernova: Petir ... 21.000000\n", "7092 The Full Cupboard of Life (No. 1 Ladies' Detec... ... 33.000000\n", "7093 Slouching Towards Bethlehem ... 28.000000\n", "7094 Jet (Marked Men, #2) ... 29.000000\n", "7095 American Born Chinese ... 15.000000\n", "7096 Pictures of Hollis Woods ... 23.000000\n", "7097 Flyboys: A True Story of Courage ... 25.000000\n", "7098 The Reason I Jump: The Inner Voice of a Thirte... ... 27.000000\n", "7099 As a Man Thinketh ... 29.000000\n", "7100 Lady and the Tramp ... 19.000000\n", "7101 Loving Mr. Daniels ... 23.000000\n", "7102 Into the Deep (Into the Deep, #1) ... 30.000000\n", "7103 Mao's Last Dancer ... 30.000000\n", "7104 King and Maxwell (Sean King & Michelle Maxwell... ... 31.000000\n", "7105 The Cat in the Hat and Other Dr. Seuss Favorites ... 22.000000\n", "7106 Cabin Fever (Diary of a Wimpy Kid, #6) ... 30.000000\n", "7107 The Kalahari Typing School for Men (No. 1 Ladi... ... 34.000000\n", "7108 The Snow Leopard ... 25.000000\n", "7109 Chew, Vol. 2: International Flavor ... 25.000000\n", "7110 Longitude: The True Story of a Lone Genius Who... ... 22.000000\n", "7111 The Constitution of the United States of America ... 26.000000\n", "7112 Fables, Vol. 8: Wolves ... 24.000000\n", "7113 One Week Girlfriend (One Week Girlfriend, #1) ... 28.000000\n", "7114 Paper Princess (The Royals, #1) ... 25.000000\n", "7115 Esperanza Rising ... 21.000000\n", "7116 Never Look Away ... 28.000000\n", "7117 Clifford the Big Red Dog ... 17.000000\n", "7118 The Liar ... 29.000000\n", "7119 Carry On, Warrior: Thoughts on Life Unarmed ... 22.000000\n", "7120 Just Go to Bed ... 20.000000\n", "7121 Samarkand ... 30.000000\n", "7122 Women Who Run With the Wolves: Myths and Stori... ... 28.000000\n", "7123 Olive Kitteridge ... 34.000000\n", "7124 Fallen Crest Public (Fallen Crest High, #3) ... 27.000000\n", "7125 One Fish, Two Fish, Red Fish, Blue Fish ... 22.000000\n", "7126 Gabriel's Redemption (Gabriel's Inferno, #3) ... 30.000000\n", "7127 When He was Wicked (Bridgertons, #6) ... 28.000000\n", "7128 Bumi Manusia ... 20.000000\n", "7129 The Walking Dead, Vol. 14: No Way Out ... 28.000000\n", "7130 Calculated in Death (In Death, #36) ... 31.000000\n", "7131 Don't You Cry ... 24.000000\n", "7132 Gabriel's Rapture (Gabriel's Inferno, #2) ... 33.000000\n", "7133 Sweet Persuasion (Sweet, #2) ... 30.000000\n", "7134 Rock Chick Revenge (Rock Chick, #5) ... 30.000000\n", "7135 The Eyes of Darkness ... 34.000000\n", "7136 Disney's the Lion King ... 19.000000\n", "7137 Find Her (Detective D.D. Warren, #8) ... 28.000000\n", "7138 A Pocket Full of Rye (Miss Marple, #7) ... 36.000000\n", "7139 The Fallen Angel (Gabriel Allon, #12) ... 30.000000\n", "7140 A Supposedly Fun Thing I'll Never Do Again: E... ... 32.000000\n", "7141 Alexander Hamilton ... 28.000000\n", "7142 Rat Queens, Vol. 1: Sass & Sorcery ... 28.000000\n", "7143 Dirty English (English, #1) ... 25.000000\n", "7144 Sea of Poppies (Ibis Trilogy, #1) ... 36.000000\n", "7145 Such a Pretty Fat: One Narcissist's Quest to D... ... 30.000000\n", "7146 No Man's Land (John Puller, #4) ... 25.000000\n", "7147 The Story About Ping ... 20.000000\n", "7148 The Oedipus Cycle: Oedipus Rex/Oedipus at Colo... ... 32.000000\n", "7149 Tough Customer (Mitchell & Associates #2) ... 27.000000\n", "7150 Desert Solitaire ... 32.000000\n", "7151 Pat the Bunny ... 17.000000\n", "7152 The Sign of the Beaver ... 25.000000\n", "7153 All My Friends Are Dead ... 29.000000\n", "7154 Faithless (Grant County, #5) ... 33.000000\n", "7155 American Tabloid (Underworld USA, #1) ... 26.000000\n", "7156 One Thousand Gifts: A Dare to Live Fully Right... ... 33.000000\n", "7157 Depraved Heart (Kay Scarpetta, #23) ... 29.000000\n", "7158 Release Me (Stark Trilogy, #1) ... 34.000000\n", "7159 Skinny Dip ... 32.000000\n", "7160 Bedtime for Frances ... 18.000000\n", "7161 Killing Floor (Jack Reacher, #1) ... 34.000000\n", "7162 Echo Burning (Jack Reacher, #5) ... 33.000000\n", "7163 The Weed That Strings the Hangman's Bag (Flavi... ... 30.000000\n", "7164 Ramona Quimby, Age 8 (Ramona, #6) ... 22.000000\n", "7165 Pedro Páramo ... 29.000000\n", "7166 حوجن [HÌ£awjan] ... 28.000000\n", "7167 Dinosaurs Before Dark (Magic Tree House, #1) ... 26.000000\n", "7168 Ghettoside: A True Story of Murder in America ... 20.000000\n", "7169 Being and Time ... 27.000000\n", "7170 The Kill Artist (Gabriel Allon, #1) ... 28.000000\n", "7171 Sweet Addiction (Sweet Addiction, #1) ... 28.000000\n", "7172 The Flanders Panel ... 27.000000\n", "7173 The Lady in the Lake (Philip Marlowe, #4) ... 35.000000\n", "7174 The Sisters Brothers ... 29.000000\n", "7175 The Target (Will Robie, #3) ... 31.000000\n", "7176 Henry Huggins (Henry Huggins, #1) ... 23.000000\n", "7177 The Three Billy Goats Gruff ... 12.000000\n", "7178 Ghost in the Wires: My Adventures as the World... ... 27.000000\n", "7179 Ruin (Ruin, #1) ... 25.000000\n", "7180 The Poky Little Puppy (A Little Golden Book) ... 21.000000\n", "7181 Tartuffe ... 24.000000\n", "7182 The Orphan Master's Son ... 31.000000\n", "7183 Avatar: The Last Airbender (The Rift, #1) ... 25.000000\n", "7184 Heat ... 19.000000\n", "7185 Turn Right at Machu Picchu: Rediscovering the ... ... 25.000000\n", "7186 Frog and Toad Together (Frog and Toad, #2) ... 21.000000\n", "7187 The Survivor (Mitch Rapp, #14) ... 25.000000\n", "7188 Lick (Stage Dive, #1) ... 28.000000\n", "7189 My Name is Red ... 33.000000\n", "7190 The Odessa File ... 35.000000\n", "7191 The Kept Woman (Will Trent, #8) ... 21.000000\n", "7192 Judgment in Death (In Death, #11) ... 31.000000\n", "7193 Orange Is the New Black ... 29.000000\n", "7194 The Story of Ferdinand ... 24.000000\n", "7195 The Communist Manifesto ... 29.000000\n", "7196 The Jefferson Key (Cotton Malone, #7) ... 29.000000\n", "7197 Beautiful Broken Rules (Broken, #1) ... 29.000000\n", "7198 The Walking Dead, Vol. 02: Miles Behind Us ... 29.000000\n", "7199 Elizabeth the Queen: The Life of a Modern Monarch ... 26.000000\n", "7200 Six Years ... 29.000000\n", "7201 Make Me (Jack Reacher, #20) ... 30.000000\n", "7202 True Evil ... 33.000000\n", "7203 Thoughtless (Thoughtless, #1) ... 29.000000\n", "7204 Empress Orchid (Empress Orchid, #1) ... 33.000000\n", "7205 Winnie the Pooh and Tigger Too (Disney's Wonde... ... 15.000000\n", "7206 Real Murders (Aurora Teagarden, #1) ... 28.000000\n", "7207 Bully (Fall Away, #1) ... 26.000000\n", "7208 When the Game Was Ours ... 19.000000\n", "7209 Disastrous (Disastrous, #1) ... 22.000000\n", "7210 The Black Lyon (Montgomery/Taggert, #1) ... 29.000000\n", "7211 Extreme Prey (Lucas Davenport, #26) ... 21.000000\n", "7212 The Last Seven Months of Anne Frank ... 23.000000\n", "7213 The Cruelest Month (Chief Inspector Armand Gam... ... 27.000000\n", "7214 Rock Chick (Rock Chick, #1) ... 29.000000\n", "7215 Night School ... 26.000000\n", "7216 The Marriage Bargain (Marriage to a Billionair... ... 33.000000\n", "7217 Ice Station Zebra ... 28.000000\n", "7218 The Three Little Pigs (Disney Classic) ... 13.000000\n", "7219 The Devil's Alternative ... 30.000000\n", "7220 The Saggy Baggy Elephant (A Little Golden Book) ... 21.000000\n", "7221 A Fatal Grace (Chief Inspector Armand Gamache,... ... 25.000000\n", "7222 10% Happier: How I Tamed the Voice in My Head,... ... 22.000000\n", "7223 The Unexpected Mrs. Pollifax (Mrs. Pollifax #1) ... 31.000000\n", "7224 Goodnight Nobody ... 28.000000\n", "7225 The Diving Bell and the Butterfly ... 29.000000\n", "7226 Beneath a Marble Sky ... 25.000000\n", "7227 Eats, Shoots & Leaves: The Zero Tolerance Appr... ... 27.000000\n", "7228 Blood Defense (Samantha Brinkman, #1) ... 26.000000\n", "7229 No Second Chance ... 33.000000\n", "7230 Jewels of the Sun (Gallaghers of Ardmore, #1) ... 37.000000\n", "7231 Portrait in Sepia ... 33.000000\n", "7232 A Land More Kind Than Home ... 26.000000\n", "7233 The Walking Dead, Vol. 10: What We Become ... 27.000000\n", "7234 Black-Eyed Susans ... 24.000000\n", "7235 Bed of Roses (Bride Quartet, #2) ... 36.000000\n", "7236 Gathering Prey (Lucas Davenport, #25) ... 26.000000\n", "7237 Twenty-Eight and a Half Wishes (Rose Gardner M... ... 29.000000\n", "7238 The Wall ... 24.000000\n", "7239 Worth the Fight (MMA Fighter, #1) ... 24.000000\n", "7240 The Second Assistant: A Tale from the Bottom o... ... 22.000000\n", "7241 Pillar of Light (The Work and the Glory, #1) ... 30.000000\n", "7242 Fear and Loathing on the Campaign Trail '72 ... 29.000000\n", "7243 The Gods of Guilt (Mickey Haller, #6; Harry Bo... ... 28.000000\n", "7244 The Debutante Divorcee ... 25.000000\n", "7245 Way of the Peaceful Warrior: A Book That Chang... ... 34.000000\n", "7246 Paddle Your Own Canoe: One Man's Fundamentals ... ... 30.000000\n", "7247 The Bourne Objective (Jason Bourne, #8) ... 29.000000\n", "7248 Stone Soup ... 6.333333\n", "7249 Stone Soup ... 6.333333\n", "7250 Stone Soup ... 6.333333\n", "7251 Novecento. Un monologo ... 27.000000\n", "7252 Horton Hatches the Egg ... 23.000000\n", "7253 Our Dumb Century: The Onion Presents 100 Years... ... 18.000000\n", "7254 Angels in America, Part Two: Perestroika ... 28.000000\n", "7255 Year of Yes: How to Dance It Out, Stand In the... ... 21.000000\n", "7256 The Pragmatic Programmer: From Journeyman to M... ... 20.000000\n", "7257 It Had to Be You (Chicago Stars, #1) ... 28.000000\n", "7258 I'm a Stranger Here Myself: Notes on Returning... ... 26.000000\n", "7259 Burn (Breathless, #3) ... 31.000000\n", "7260 The Complete Short Novels ... 28.000000\n", "7261 Something About You (FBI/US Attorney, #1) ... 27.000000\n", "7262 Just My Type: A Book About Fonts ... 27.000000\n", "7263 Tears of the Moon (Gallaghers of Ardmore / Iri... ... 37.000000\n", "7264 Just for You (Little Critter) ... 20.000000\n", "7265 The Gambler ... 28.000000\n", "7266 A Kingdom of Dreams (Westmoreland, #1) ... 28.000000\n", "7267 Lilly's Purple Plastic Purse ... 13.000000\n", "7268 Neither Here nor There: Travels in Europe ... 35.000000\n", "7269 Gentle Rogue (Malory-Anderson Family, #3) ... 34.000000\n", "7270 Just the Sexiest Man Alive ... 29.000000\n", "7271 Where's Spot? ... 19.000000\n", "7272 The Berenstain Bears and Too Much TV ... 16.000000\n", "7273 Broken Prince (The Royals, #2) ... 25.000000\n", "7274 Take This Regret (Take This Regret, #1) ... 30.000000\n", "7275 The Great Railway Bazaar ... 27.000000\n", "7276 The Good Guy ... 35.000000\n", "7277 Elon Musk: Inventing the Future ... 25.000000\n", "7278 Anne Frank: Beyond the Diary - A Photographic ... ... 19.000000\n", "7279 The Empathy Exams: Essays ... 22.000000\n", "7280 Someone to Love (Someone to Love, #1) ... 28.000000\n", "7281 Gorky Park (Arkady Renko, #1) ... 35.000000\n", "7282 Morning, Noon & Night ... 27.000000\n", "7283 The Little Mouse, the Red Ripe Strawberry, and... ... 18.000000\n", "7284 The Adventures of Captain Underpants (Captain ... ... 20.000000\n", "7285 Worth Dying For (Jack Reacher, #15) ... 30.000000\n", "7286 Undone (Will Trent, #3) ... 31.000000\n", "7287 Practice Makes Perfect (Berkley Sensation) ... 29.000000\n", "7288 Heaven, Texas (Chicago Stars, #2) ... 28.000000\n", "7289 The Other Daughter ... 30.000000\n", "7290 Until You (Fall Away, #1.5) ... 26.000000\n", "7291 Blockade Billy ... 34.000000\n", "7292 The Runaway Bunny ... 20.000000\n", "7293 Rush (Breathless, #1) ... 33.000000\n", "7294 August: Osage County ... 29.000000\n", "7295 The Last Full Measure (The Civil War Trilogy, #3) ... 25.000000\n", "7296 My Name is Mary Sutter ... 27.000000\n", "7297 The Art of Travel ... 28.000000\n", "7298 Rock Chick Renegade (Rock Chick, #4) ... 27.000000\n", "7299 Fox in Socks ... 23.000000\n", "7300 There Was An Old Lady Who Swallowed A Fly (Cla... ... 16.000000\n", "7301 Savor the Moment (Bride Quartet, #3) ... 36.000000\n", "7302 The Hundred Dresses ... 21.000000\n", "7303 Come Away with Me (With Me in Seattle, #1) ... 27.000000\n", "7304 Mr. Murder ... 32.000000\n", "7305 PostSecret: Extraordinary Confessions from Ord... ... 22.000000\n", "7306 The Caine Mutiny ... 37.000000\n", "7307 Red Notice: A True Story of High Finance, Murd... ... 25.000000\n", "7308 It's in His Kiss (Bridgertons, #7) ... 30.000000\n", "7309 The Green Mile, Part 5: Night Journey ... 34.000000\n", "7310 Behind Closed Doors ... 25.000000\n", "7311 Sometimes Never (Sometimes Never, #1) ... 23.000000\n", "7312 Long Time Coming ... 24.000000\n", "7313 Batman: The Dark Knight Returns (The Dark Knig... ... 36.000000\n", "7314 The Charlemagne Pursuit (Cotton Malone, #4) ... 30.000000\n", "7315 The Cherry Orchard ... 30.000000\n", "7316 The Holy Bible: English Standard Version ... 33.000000\n", "7317 Angels in America, Part One: Millennium Approa... ... 29.000000\n", "7318 Half Broke Horses ... 32.000000\n", "7319 Arsenic and Old Lace ... 22.000000\n", "7320 The Dirty Girls Social Club (Dirty Girls, #1) ... 25.000000\n", "7321 Calvin and Hobbes ... 34.000000\n", "7322 Scoring Wilder ... 24.000000\n", "7323 I'll Walk Alone ... 31.000000\n", "7324 I Remember Nothing: and Other Reflections ... 24.000000\n", "7325 Curious George Takes a Job ... 19.000000\n", "7326 Y: The Last Man, Vol. 8: Kimono Dragons (Y: Th... ... 22.000000\n", "7327 Agnes and the Hitman ... 32.000000\n", "7328 If You Stay (Beautifully Broken, #1) ... 29.000000\n", "7329 The Authoritative Calvin and Hobbes: A Calvin ... ... 31.000000\n", "7330 The Alienist (Dr. Laszlo Kreizler, #1) ... 38.000000\n", "7331 Something Wonderful (Sequels, #2) ... 30.000000\n", "7332 Black Boy ... 30.000000\n", "7333 Brain on Fire: My Month of Madness ... 26.000000\n", "7334 Seconds ... 27.000000\n", "7335 The Last Child ... 31.000000\n", "7336 Superman for All Seasons ... 25.000000\n", "7337 Supernova: Akar ... 22.000000\n", "7338 Hop On Pop ... 20.000000\n", "7339 The Great Gilly Hopkins ... 22.000000\n", "7340 Checkmate (Neighbor from Hell, #3) ... 27.000000\n", "7341 Nash (Marked Men, #4) ... 27.000000\n", "7342 High Heat (Jack Reacher #17.5) ... 27.000000\n", "7343 Last Orders ... 33.000000\n", "7344 Tikki Tikki Tembo ... 15.000000\n", "7345 Sweet Home (Sweet Home, #1) ... 27.000000\n", "7346 Caddie Woodlawn (Caddie Woodlawn #1) ... 27.000000\n", "7347 Forever You (Forever, #2) ... 26.000000\n", "7348 Faithful Place (Dublin Murder Squad, #3) ... 30.000000\n", "7349 No Easy Day: The Firsthand Account of the Miss... ... 27.000000\n", "7350 Fade Away (Myron Bolitar #3) ... 31.000000\n", "7351 The Miracle at Speedy Motors (No.1 Ladies' Det... ... 32.000000\n", "7352 Darkfall ... 33.000000\n", "7353 Fables, Vol. 1: Legends in Exile ... 28.000000\n", "7354 Inside Out & Back Again ... 20.000000\n", "7355 Then Came You (The Gamblers, #1) ... 31.000000\n", "7356 The Goal (Off-Campus, #4) ... 21.000000\n", "7357 Notorious RBG: The Life and Times of Ruth Bade... ... 21.000000\n", "7358 Down the Rabbit Hole: Curious Adventures and C... ... 24.000000\n", "7359 Chronicle of a Death Foretold ... 31.000000\n", "7360 I Suck at Girls ... 25.000000\n", "7361 Grit: Passion, Perseverance, and the Science o... ... 19.000000\n", "7362 The Sportswriter ... 30.000000\n", "7363 Trouble Is My Business ... 31.000000\n", "7364 The Boy in the Suitcase (Nina Borg, #1) ... 25.000000\n", "7365 Elizabeth Street ... 24.000000\n", "7366 The True Story of the 3 Little Pigs ... 16.000000\n", "7367 The Princess and the Pea ... 13.000000\n", "7368 Why We Suck: A Feel Good Guide to Staying Fat,... ... 28.000000\n", "7369 The Immortal Life of Henrietta Lacks ... 27.000000\n", "7370 Songs in Ordinary Time ... 28.000000\n", "7371 The Last Man (Mitch Rapp, #13) ... 32.000000\n", "7372 Hyperbole and a Half: Unfortunate Situations, ... ... 27.000000\n", "7373 Criminal (Will Trent, #6) ... 30.000000\n", "7374 The Angel of Darkness (Dr. Laszlo Kreizler, #2) ... 31.000000\n", "7375 The Walking Dead, Vol. 06: This Sorrowful Life ... 28.000000\n", "7376 Underground: The Tokyo Gas Attack and the Japa... ... 30.000000\n", "7377 Blue Shoes and Happiness (No. 1 Ladies' Detect... ... 34.000000\n", "7378 There's a Nightmare in My Closet ... 16.000000\n", "7379 The Total Money Makeover: A Proven Plan for Fi... ... 29.000000\n", "7380 The Hero With a Thousand Faces ... 30.000000\n", "7381 Waiting ... 32.000000\n", "7382 Deadline (Virgil Flowers, #8) ... 26.000000\n", "7383 Rejoice (Redemption, #4) ... 25.000000\n", "7384 Eve (Eve Duncan, #12; Eve, Quinn and Bonnie #1) ... 30.000000\n", "7385 Scrappy Little Nobody ... 25.000000\n", "7386 The Butterfly Garden (The Collector #1) ... 25.000000\n", "7387 The Affair (Jack Reacher, #16) ... 32.000000\n", "7388 The Brutal Telling (Chief Inspector Armand Gam... ... 28.000000\n", "7389 Smoke Gets in Your Eyes: And Other Lessons fro... ... 23.000000\n", "7390 Born in Ice (Born In Trilogy, #2) ... 34.000000\n", "7391 Diary of a Worm ... 14.000000\n", "7392 The Perfect Game (The Perfect Game, #1) ... 28.000000\n", "7393 When Beauty Tamed the Beast (Fairy Tales, #2) ... 33.000000\n", "7394 The Green Mile, Part 4: The Bad Death of Eduar... ... 35.000000\n", "7395 Crooked Letter, Crooked Letter ... 25.000000\n", "7396 The English Girl (Gabriel Allon, #13) ... 29.000000\n", "7397 Beauty from Surrender (Beauty, #2) ... 26.000000\n", "7398 The Wedding (Lairds' Fiancées, #2) ... 34.000000\n", "7399 Seven Years to Sin ... 35.000000\n", "7400 No Place to Hide: Edward Snowden, the NSA, and... ... 26.000000\n", "7401 Are You My Mother? ... 14.500000\n", "7402 Are You My Mother? ... 14.500000\n", "7403 This Man Confessed (This Man, #3) ... 30.000000\n", "7404 Guilty as Sin (Deer Lake, #2) ... 29.000000\n", "7405 Darkness, Take My Hand (Kenzie & Gennaro, #2) ... 32.000000\n", "7406 Charade (Games, #1) ... 24.000000\n", "7407 If You Take a Mouse to School ... 18.000000\n", "7408 The Voice of the Night ... 29.000000\n", "7409 Hero (Hero, #1) ... 26.000000\n", "7410 The Lost Continent: Travels in Small Town America ... 32.000000\n", "7411 What the Bleep Do We Know!?: Discovering the E... ... 13.000000\n", "7412 The Long Walk: The True Story of a Trek to Fre... ... 33.000000\n", "7413 Train to Pakistan ... 33.000000\n", "7414 Eating the Dinosaur ... 25.000000\n", "7415 The Hypnotist (Joona Linna, #1) ... 33.000000\n", "7416 Antifragile: Things That Gain from Disorder ... 24.000000\n", "7417 The Innocent (Will Robie, #1) ... 28.000000\n", "7418 Thief (Love Me with Lies, #3) ... 25.000000\n", "7419 The Swerve: How the World Became Modern ... 30.000000\n", "7420 The Wicked + The Divine, Vol. 1: The Faust Act ... 30.000000\n", "7421 Attack of the Deranged Mutant Killer Monster S... ... 31.000000\n", "7422 Mr. Brown Can Moo! Can You? ... 22.000000\n", "7423 Talking as Fast as I Can: From Gilmore Girls t... ... 23.000000\n", "7424 In a Sunburned Country ... 33.000000\n", "7425 The Mistake (Off-Campus, #2) ... 24.000000\n", "7426 Anyone But You ... 28.000000\n", "7427 Y: The Last Man, Vol. 1: Unmanned ... 25.000000\n", "7428 Ever After (Lost Love, #2) ... 25.000000\n", "7429 Al Capone Does My Shirts (Al Capone at Alcatra... ... 20.000000\n", "7430 The Venetian Betrayal (Cotton Malone, #3) ... 31.000000\n", "7431 It Starts with Food: Discover the Whole30 and ... ... 25.000000\n", "7432 There's a Wocket in My Pocket! ... 20.000000\n", "7433 The Survivors Club ... 31.000000\n", "7434 Friction ... 25.000000\n", "7435 If You Take a Mouse to the Movies ... 22.000000\n", "7436 The Ugly Duckling ... 20.000000\n", "7437 Happy, Happy, Happy ... 29.000000\n", "7438 Blood Memory ... 34.000000\n", "7439 In the Plex: How Google Thinks, Works, and Sha... ... 22.000000\n", "7440 Breath, Eyes, Memory ... 30.000000\n", "7441 Jesus Calling: Enjoying Peace in His Presence ... 31.000000\n", "7442 The Couple Next Door ... 20.000000\n", "7443 Fables, Vol. 5: The Mean Seasons ... 24.000000\n", "7444 How Children Succeed: Grit, Curiosity, and the... ... 24.000000\n", "7445 Meditations ... 27.000000\n", "7446 Sins & Needles (The Artists Trilogy, #1) ... 27.000000\n", "7447 The Berenstain Bears Go to School ... 18.000000\n", "7448 Broken Harbour (Dublin Murder Squad, #4) ... 27.000000\n", "7449 Love Is a Mix Tape ... 27.000000\n", "7450 An Essay Concerning Human Understanding ... 21.000000\n", "7451 Beneath This Man (This Man, #2) ... 31.000000\n", "7452 Mother Courage and Her Children ... 29.000000\n", "7453 The Lone Ranger and Tonto Fistfight in Heaven ... 33.000000\n", "7454 The Power of Now: A Guide to Spiritual Enlight... ... 34.000000\n", "7455 The Mothers ... 22.000000\n", "7456 Fables, Vol. 4: March of the Wooden Soldiers ... 24.000000\n", "7457 يوتوبيا ... 29.000000\n", "7458 Lord of Scoundrels (Scoundrels, #3) ... 33.000000\n", "7459 Whiskey Beach ... 30.000000\n", "7460 Corduroy ... 21.000000\n", "7461 Travel Team ... 21.000000\n", "7462 The Rainbow Fish ... 15.000000\n", "7463 Three Little Kittens ... 14.000000\n", "7464 Papillon ... 34.000000\n", "7465 Think of a Number (Dave Gurney, #1) ... 31.000000\n", "7466 Outliers: The Story of Success ... 29.000000\n", "7467 The Berenstain Bears' Trouble at School ... 15.000000\n", "7468 SuperFreakonomics: Global Cooling, Patriotic P... ... 27.000000\n", "7469 Brown Girl Dreaming ... 17.000000\n", "7470 Notorious Nineteen (Stephanie Plum, #19) ... 29.000000\n", "7471 Committed: A Skeptic Makes Peace with Marriage ... 30.000000\n", "7472 Windmills of the Gods ... 29.000000\n", "7473 The Midwife's Apprentice ... 20.000000\n", "7474 Avoiding Commitment (Avoiding, #1) ... 28.000000\n", "7475 The Sociopath Next Door ... 28.000000\n", "7476 Real (Real, #1) ... 29.000000\n", "7477 Raven Black (Shetland Island, #1) ... 29.000000\n", "7478 Death Comes for the Archbishop ... 27.000000\n", "7479 Hide (Detective D.D. Warren, #2) ... 32.000000\n", "7480 Jacob Have I Loved ... 29.000000\n", "7481 Amelia Bedelia (Amelia Bedelia #1) ... 18.000000\n", "7482 Bird by Bird: Some Instructions on Writing and... ... 37.000000\n", "7483 Uncle Vanya ... 26.000000\n", "7484 The Confessor (Gabriel Allon, #3) ... 29.000000\n", "7485 Operation Mincemeat: How a Dead Man and a Biza... ... 25.000000\n", "7486 Madeline ... 19.000000\n", "7487 The Secret History of the Pink Carnation (Pink... ... 33.000000\n", "7488 The Women of Brewster Place ... 27.000000\n", "7489 The Righteous Mind: Why Good People are Divide... ... 22.000000\n", "7490 Harvest ... 36.000000\n", "7491 Lead (Stage Dive, #3) ... 26.000000\n", "7492 Dearly Devoted Dexter (Dexter, #2) ... 31.000000\n", "7493 Intensity ... 36.000000\n", "7494 If You Give a Moose a Muffin ... 21.000000\n", "7495 On the Way to the Wedding (Bridgertons, #8) ... 31.000000\n", "7496 All the Missing Girls ... 24.000000\n", "7497 The Lake (The Lake Trilogy #1) ... 25.000000\n", "7498 The Lemonade War (The Lemonade War, #1) ... 19.000000\n", "7499 This Body of Death (Inspector Lynley, #16) ... 27.000000\n", "7500 A Civil Action ... 27.000000\n", "7501 I Have Lived a Thousand Years ... 25.000000\n", "7502 The Protector (O'Malley #4) ... 32.000000\n", "7503 The Devil All the Time ... 26.000000\n", "7504 Abducted (Lizzy Gardner #1) ... 24.000000\n", "7505 Every Dead Thing (Charlie Parker, #1) ... 32.000000\n", "7506 One with You (Crossfire, #5) ... 28.000000\n", "7507 Turtle in Paradise ... 20.000000\n", "7508 When Breath Becomes Air ... 22.000000\n", "7509 Strange Pilgrims ... 31.000000\n", "7510 Swindle (Swindle, #1) ... 21.000000\n", "7511 Darkest Fear (Myron Bolitar #7) ... 28.000000\n", "7512 We Should All Be Feminists ... 22.000000\n", "7513 Twisted (Tangled, #2) ... 24.000000\n", "7514 Lean In: Women, Work, and the Will to Lead ... 28.000000\n", "7515 Damaged (Damaged, #1) ... 27.000000\n", "7516 Drop Dead Healthy: One Man's Humble Quest for ... ... 25.000000\n", "7517 The Gifts of Imperfection: Let Go of Who You T... ... 26.000000\n", "7518 The Bone Garden ... 34.000000\n", "7519 The Highly Sensitive Person: How to Thrive Whe... ... 30.000000\n", "7520 Four Blondes ... 27.000000\n", "7521 Remy (Real, #3) ... 32.000000\n", "7522 Heads in Beds: A Reckless Memoir of Hotels, Hu... ... 23.000000\n", "7523 The Associate ... 31.000000\n", "7524 Field of Prey (Lucas Davenport, #24) ... 27.000000\n", "7525 Made in America: An Informal History of the En... ... 32.000000\n", "7526 The Burning Room (Harry Bosch, #19; Harry Bosc... ... 25.000000\n", "7527 The Areas of My Expertise: An Almanac of Compl... ... 25.000000\n", "7528 Girls in Love (Girls, #1) ... 23.000000\n", "7529 Explosive Eighteen (Stephanie Plum, #18) ... 29.000000\n", "7530 The Quiet Game ... 32.000000\n", "7531 The Arrangement: The Ferro Family (The Arrange... ... 23.000000\n", "7532 What Remains: A Memoir of Fate, Friendship, an... ... 24.000000\n", "7533 The Sweet Gum Tree ... 25.000000\n", "7534 Civilization and Its Discontents ... 25.000000\n", "7535 Hellboy, Vol. 1: Seed of Destruction (Hellboy,... ... 25.000000\n", "7536 The Darkest Hour (KGI, #1) ... 30.000000\n", "7537 The Hunt for Red October (Jack Ryan Universe, #4) ... 37.000000\n", "7538 No One Belongs Here More Than You ... 32.000000\n", "7539 For the Love: Fighting for Grace in a World of... ... 21.000000\n", "7540 First to Kill (Nathan McBride, #1) ... 26.000000\n", "7541 You Are Not So Smart: Why You Have Too Many Fr... ... 26.000000\n", "7542 Notes from a Small Island ... 34.000000\n", "7543 Fight with Me (With Me in Seattle, #2) ... 28.000000\n", "7544 Flat Stanley (Flat Stanley, #1) ... 20.000000\n", "7545 Killing Yourself to Live: 85% of a True Story ... 27.000000\n", "7546 The Enemy (Jack Reacher, #8) ... 34.000000\n", "7547 Homer Price (A Puffin Book) ... 20.000000\n", "7548 The Forever of Ella and Micha (The Secret, #2) ... 25.000000\n", "7549 Her Final Breath (Tracy Crosswhite, #2) ... 22.000000\n", "7550 Bitter Is the New Black: Confessions of a Cond... ... 29.000000\n", "7551 I Can Read With My Eyes Shut! ... 20.000000\n", "7552 Gone Tomorrow (Jack Reacher, #13) ... 32.000000\n", "7553 Tell No One ... 33.000000\n", "7554 The Girl In The Ice (Detective Erika Foster, #1) ... 25.000000\n", "7555 Hard as It Gets (Hard Ink, #1) ... 28.000000\n", "7556 Still Life (Chief Inspector Armand Gamache, #1) ... 23.000000\n", "7557 Forever with You (Fixed, #3) ... 27.000000\n", "7558 Yertle the Turtle and Other Stories ... 19.000000\n", "7559 Full Dark, No Stars ... 35.000000\n", "7560 Claim Me (Stark Trilogy, #2) ... 31.000000\n", "7561 The Short and Tragic Life of Robert Peace: A B... ... 19.000000\n", "7562 The Lion (John Corey, #5) ... 29.000000\n", "7563 Critique of Pure Reason ... 27.000000\n", "7564 Danny and the Dinosaur (An I Can Read Book) ... 20.000000\n", "7565 Too Late ... 22.000000\n", "7566 Mein Kampf ... 28.000000\n", "7567 Aura ... 30.000000\n", "7568 Sullivan's Island (Lowcountry Tales, #1) ... 24.000000\n", "7569 Again the Magic (Wallflowers, #0) ... 31.000000\n", "7570 Kiss an Angel ... 30.000000\n", "7571 Little Bear's Friend ... 19.000000\n", "7572 Toujours Provence ... 21.000000\n", "7573 In the Miso Soup ... 27.000000\n", "7574 Medea ... 23.000000\n", "7575 Sleepwalk With Me and Other Painfully True Sto... ... 21.000000\n", "7576 Raid (Unfinished Hero, #3) ... 27.000000\n", "7577 Danger in the Shadows (O'Malley #0.5) ... 35.000000\n", "7578 The Walking Dead, Vol. 09: Here We Remain ... 26.000000\n", "7579 The War that Saved My Life (The War That Saved... ... 19.000000\n", "7580 Driven (Driven, #1) ... 27.000000\n", "7581 Big Nate: In a Class by Himself (Big Nate Nove... ... 20.000000\n", "7582 Double Indemnity ... 30.000000\n", "7583 Getting Things Done: The Art of Stress-Free Pr... ... 31.000000\n", "7584 Henry & Ramona ... 10.000000\n", "7585 Harry the Dirty Dog ... 17.000000\n", "7586 The Gift (Crown's Spies, #3) ... 34.000000\n", "7587 Tempting the Best Man (Gamble Brothers, #1) ... 24.000000\n", "7588 Double Act ... 26.000000\n", "7589 The Talent Code: Unlocking the Secret of Skill... ... 23.000000\n", "7590 Breathing Lessons ... 35.000000\n", "7591 Persuader (Jack Reacher, #7) ... 34.000000\n", "7592 The Secret Diaries of Miss Miranda Cheever (Be... ... 32.000000\n", "7593 For You (The 'Burg, #1) ... 28.000000\n", "7594 Your Heart Belongs to Me ... 30.000000\n", "7595 Pretty in Plaid ... 28.000000\n", "7596 Survival in Auschwitz ... 20.000000\n", "7597 Live from New York: An Uncensored History of S... ... 23.000000\n", "7598 Chinese Cinderella: The True Story of an Unwan... ... 31.000000\n", "7599 Hold Tight ... 33.000000\n", "7600 A Book of Five Rings: The Classic Guide to Str... ... 32.000000\n", "7601 Native Tongue (Skink, #2) ... 29.000000\n", "7602 A Thousand Acres ... 31.000000\n", "7603 The 48 Laws of Power ... 28.000000\n", "7604 Executive Power (Mitch Rapp, #6) ... 34.000000\n", "7605 The Lion's Lady (Crown's Spies, #1) ... 33.000000\n", "7606 How the García Girls Lost Their Accents ... 29.000000\n", "7607 War ... 24.000000\n", "7608 Heartbreaker (Buchanan-Renard, #1) ... 34.000000\n", "7609 Steve Jobs ... 30.000000\n", "7610 All In (The Blackstone Affair, #2) ... 28.000000\n", "7611 The Luminaries ... 38.000000\n", "7612 The Brain That Changes Itself: Stories of Pers... ... 25.000000\n", "7613 Rock Chick Regret (Rock Chick, #7) ... 26.000000\n", "7614 The Very Hungry Caterpillar Board Book ... 18.000000\n", "7615 Fire Inside (Chaos, #2) ... 26.000000\n", "7616 Damaged 2 (Damaged, #2) ... 23.000000\n", "7617 The Forgotten (John Puller, #2) ... 29.000000\n", "7618 The Accident ... 28.000000\n", "7619 Hunger Makes Me a Modern Girl ... 21.000000\n", "7620 The Federalist Papers ... 23.000000\n", "7621 The Watsons Go to Birmingham - 1963 ... 19.000000\n", "7622 The Social Animal: The Hidden Sources of Love,... ... 25.000000\n", "7623 You Can Win: A Step by Step Tool for Top Achie... ... 17.000000\n", "7624 Rumors of War (Children of the Promise, #1) ... 29.000000\n", "7625 Eat and Run: My Unlikely Journey to Ultramarat... ... 25.000000\n", "7626 Naked (The Blackstone Affair, #1) ... 29.000000\n", "7627 The Little Red Hen (Little Golden Book) ... 14.000000\n", "7628 Sushi for Beginners ... 33.000000\n", "7629 Mrs. Kennedy and Me: An Intimate Memoir ... 22.000000\n", "7630 Fifty Shades Duo: Fifty Shades Darker / Fifty ... ... 16.000000\n", "7631 Five Point Someone ... 28.000000\n", "7632 Lab Girl ... 22.000000\n", "7633 Fever (Breathless, #2) ... 33.000000\n", "7634 Nothing to Lose (Jack Reacher, #12) ... 33.000000\n", "7635 Born in Shame (Born In Trilogy, #3) ... 36.000000\n", "7636 1421: The Year China Discovered America ... 26.000000\n", "7637 Neil Patrick Harris: Choose Your Own Autobiogr... ... 24.000000\n", "7638 Empty Mansions: The Mysterious Life of Huguett... ... 21.000000\n", "7639 Bad Luck and Trouble (Jack Reacher, #11) ... 32.000000\n", "7640 Outbreak (Dr. Marissa Blumenthal, #1) ... 35.000000\n", "7641 Secrets to the Grave (Oak Knoll, #2) ... 27.000000\n", "7642 The Berenstain Bears and the Messy Room ... 18.000000\n", "7643 Flash and Bones (Temperance Brennan, #14) ... 28.000000\n", "7644 One Night at the Call Center ... 25.000000\n", "7645 The Prize ... 32.000000\n", "7646 Mike Mulligan and His Steam Shovel ... 18.000000\n", "7647 Preacher, Volume 2: Until the End of the World ... 23.000000\n", "7648 Dr. Seuss's ABC: An Amazing Alphabet Book! (Br... ... 20.000000\n", "7649 The Phoenix Project: A Novel About IT, DevOps,... ... 24.000000\n", "7650 Born in Fire (Born In Trilogy, #1) ... 36.000000\n", "7651 Out ... 30.000000\n", "7652 Term Limits ... 31.000000\n", "7653 No Time for Goodbye (No Time For Goodbye #1) ... 32.000000\n", "7654 If I Were You (Inside Out, #1) ... 30.000000\n", "7655 The Kind Worth Killing ... 24.000000\n", "7656 Taking Shots (Assassins, #1) ... 28.000000\n", "7657 Just a Mess (Little Critter) ... 18.000000\n", "7658 Lies My Teacher Told Me ... 28.000000\n", "7659 Live to Tell (Detective D.D. Warren, #4) ... 28.000000\n", "7660 Kindle Paperwhite User's Guide ... 12.903226\n", "7661 Junie B. Jones and the Stupid Smelly Bus (Jun... ... 23.000000\n", "7662 Hafalan Shalat Delisa ... 16.000000\n", "7663 The Making of the Atomic Bomb ... 26.000000\n", "7664 Mistress ... 31.000000\n", "7665 Killing Pablo: The Hunt for the World's Greate... ... 29.000000\n", "7666 The Last Lecture ... 30.000000\n", "7667 Saving Grace ... 32.000000\n", "7668 The Day of the Locust ... 27.000000\n", "7669 Little Bear ... 18.000000\n", "7670 Mother of Pearl ... 28.000000\n", "7671 The English Spy (Gabriel Allon, #15) ... 28.000000\n", "7672 The Inner Circle (Culper Ring, #1) ... 20.000000\n", "7673 Why Men Love Bitches: From Doormat to Dreamgir... ... 28.000000\n", "7674 Nothing Lasts Forever ... 31.000000\n", "7675 The Fixed Trilogy (Fixed, #1-3) ... 24.000000\n", "7676 The Road to Character ... 20.000000\n", "7677 The Amber Room ... 31.000000\n", "7678 Rainbow Boys (Rainbow Trilogy, #1) ... 26.000000\n", "7679 Path of the Assassin (Scot Harvath, #2) ... 28.000000\n", "7680 Revolution 2020: Love, Corruption, Ambition ... 26.000000\n", "7681 The Hook Up (Game On, #1) ... 24.000000\n", "7682 Antigone ... 28.000000\n", "7683 The Sound of Gravel ... 19.000000\n", "7684 A Death in the Family ... 31.000000\n", "7685 A Wanted Man (Jack Reacher, #17) ... 26.000000\n", "7686 The Introvert Advantage: How to Thrive in an E... ... 29.000000\n", "7687 Clifford's Halloween ... 18.000000\n", "7688 The Grouchy Ladybug ... 17.000000\n", "7689 Just Kids ... 28.000000\n", "7690 Lethal ... 31.000000\n", "7691 Overruled (The Legal Briefs, #1) ... 24.000000\n", "7692 Don't Let's Go to the Dogs Tonight ... 31.000000\n", "7693 Go, Dog. Go! ... 24.000000\n", "7694 Transmetropolitan, Vol. 1: Back on the Street ... ... 26.000000\n", "7695 Avatar: The Last Airbender: The Lost Adventures ... 30.000000\n", "7696 Do-It-Yourself Book (Diary of a Wimpy Kid) ... 23.000000\n", "7697 We Were Soldiers Once... and Young: Ia Drang -... ... 25.000000\n", "7698 The Woman Warrior ... 27.000000\n", "7699 The Better Angels of Our Nature: Why Violence ... ... 23.000000\n", "7700 The Marriage Mistake (Marriage to a Billionair... ... 30.000000\n", "7701 Devil Bones (Temperance Brennan, #11) ... 33.000000\n", "7702 Lawrence in Arabia: War, Deceit, Imperial Foll... ... 26.000000\n", "7703 Innocent Erendira and Other Stories ... 32.000000\n", "7704 The Pelican Brief ... 33.000000\n", "7705 Chasing The Night (Eve Duncan, #11; Catherine ... ... 27.000000\n", "7706 The Jester ... 33.000000\n", "7707 M Train ... 26.000000\n", "7708 The Keepsake (Rizzoli & Isles, #7) ... 31.000000\n", "7709 When the Lion Feeds (Courtney, #1) ... 31.000000\n", "7710 Thrive: The Third Metric to Redefining Success... ... 22.000000\n", "7711 The Magic of Thinking Big ... 29.000000\n", "7712 To Sir Phillip, With Love (Bridgertons, #5) ... 29.000000\n", "7713 Curious George Visits the Library ... 16.000000\n", "7714 The Little Engine That Could ... 17.000000\n", "7715 The Glass Palace ... 33.000000\n", "7716 The Woods ... 33.000000\n", "7717 Smashed: Story of a Drunken Girlhood ... 28.000000\n", "7718 Tourist Season ... 29.000000\n", "7719 The Social Contract ... 20.000000\n", "7720 Gang Leader for a Day: A Rogue Sociologist Tak... ... 24.000000\n", "7721 Curious George Goes to the Hospital ... 14.000000\n", "7722 The Best Laid Plans ... 30.000000\n", "7723 One False Move (Myron Bolitar #5) ... 27.000000\n", "7724 Open City ... 27.000000\n", "7725 Bread and Jam for Frances ... 19.000000\n", "7726 Homer's Odyssey ... 30.000000\n", "7727 The Emperor's Tomb (Cotton Malone, #6) ... 28.000000\n", "7728 Mile 81 ... 23.000000\n", "7729 Zeitoun ... 23.000000\n", "7730 The Trespasser (Dublin Murder Squad #6) ... 22.000000\n", "7731 Eat That Frog!: 21 Great Ways to Stop Procrast... ... 25.000000\n", "7732 Miss Nelson Is Back (Miss Nelson, #2) ... 16.000000\n", "7733 On the Street Where You Live ... 31.000000\n", "7734 We're Going on a Bear Hunt ... 18.000000\n", "7735 The Beet Queen ... 23.000000\n", "7736 Better: A Surgeon's Notes on Performance ... 28.000000\n", "7737 Big Nate on a Roll (Big Nate Novels, #3) ... 21.000000\n", "7738 Agamemnon (Oresteia, #1) ... 24.000000\n", "7739 Snowmen at Night ... 14.000000\n", "7740 Tintin in Tibet (Tintin, #20) ... 29.000000\n", "7741 Motorcycle Man (Dream Man, #4) ... 27.000000\n", "7742 Not That Kind of Girl: A Young Woman Tells You... ... 26.000000\n", "7743 The Complete Maus (Maus, #1-2) ... 20.000000\n", "7744 The Jordan Rules ... 15.000000\n", "7745 Not My Father's Son ... 20.000000\n", "7746 Down to You (The Bad Boys, #1) ... 29.000000\n", "7747 The Crossover ... 15.000000\n", "7748 America (The Book): A Citizen's Guide to Democ... ... 27.000000\n", "7749 Whitney, My Love (Westmoreland, #2) ... 33.000000\n", "7750 The Subtle Art of Not Giving a F*ck: A Counter... ... 25.000000\n", "7751 Put Me in the Zoo ... 19.000000\n", "7752 Sister of My Heart ... 28.000000\n", "7753 Rules ... 21.000000\n", "7754 Pucked (Pucked, #1) ... 24.000000\n", "7755 Portrait of a Spy (Gabriel Allon, #11) ... 29.000000\n", "7756 Low Country ... 19.000000\n", "7757 Twilight: The Graphic Novel, Vol. 2 (Twilight... ... 26.000000\n", "7758 Basket Case ... 29.000000\n", "7759 Catch Me (Detective D.D. Warren, #6) ... 30.000000\n", "7760 Paradise ... 35.000000\n", "7761 Second Son (Jack Reacher, #15.5) ... 27.000000\n", "7762 Die Trying (Jack Reacher, #2) ... 31.000000\n", "7763 The Face of Fear ... 32.000000\n", "7764 Hope: A Memoir of Survival in Cleveland ... 22.000000\n", "7765 Chuck Klosterman IV: A Decade of Curious Peopl... ... 24.000000\n", "7766 The Story of Philosophy: The Lives and Opinion... ... 30.000000\n", "7767 The Submissive (Submissive, #1) ... 30.000000\n", "7768 I is for Innocent (Kinsey Millhone, #9) ... 32.000000\n", "7769 Bad Feminist ... 24.000000\n", "7770 The Last Juror ... 31.000000\n", "7771 Become a Better You: 7 Keys to Improving Your ... ... 20.000000\n", "7772 A Million Miles in a Thousand Years: What I Le... ... 27.000000\n", "7773 The Life and Times of the Thunderbolt Kid ... 34.000000\n", "7774 Kisscut (Grant County, #2) ... 30.000000\n", "7775 The Geography of Bliss: One Grump's Search for... ... 24.000000\n", "7776 Genius: The Life and Science of Richard Feynman ... 23.000000\n", "7777 Hell's Angels: A Strange and Terrible Saga ... 26.000000\n", "7778 Cycle of the Werewolf ... 34.000000\n", "7779 Skin Tight (Mick Stranahan, #1) ... 27.000000\n", "7780 Frog and Toad Are Friends (Frog and Toad, #1) ... 16.000000\n", "7781 Just After Sunset ... 36.000000\n", "7782 Another Bullshit Night in Suck City ... 19.000000\n", "7783 The Ghost Map: The Story of London's Most Terr... ... 21.000000\n", "7784 Apology ... 29.000000\n", "7785 The Trial and Death of Socrates ... 22.000000\n", "7786 Mistakes Were Made (But Not by Me): Why We Jus... ... 22.000000\n", "7787 My Life on the Road ... 21.000000\n", "7788 Under the Banner of Heaven: A Story of Violent... ... 28.000000\n", "7789 Let's Pretend This Never Happened: A Mostly Tr... ... 26.000000\n", "7790 The Gulag Archipelago 1918-1956 ... 27.000000\n", "7791 The Walking Dead, Vol. 07: The Calm Before ... 29.000000\n", "7792 Hiroshima ... 31.000000\n", "7793 Troublemaker: Surviving Hollywood and Scientology ... 19.000000\n", "7794 We3 ... 26.000000\n", "7795 Transfer of Power (Mitch Rapp, #3) ... 32.000000\n", "7796 Reasonable Doubt: Volume 3 (Reasonable Doubt, #3) ... 21.000000\n", "7797 Strange Highways ... 34.000000\n", "7798 Rock Chick Revolution (Rock Chick, #8) ... 28.000000\n", "7799 Beyond Good and Evil ... 26.000000\n", "7800 The Good Husband of Zebra Drive (No. 1 Ladies'... ... 33.000000\n", "7801 The Bourne Ultimatum (Jason Bourne, #3) ... 35.000000\n", "7802 Tall, Tatted and Tempting (The Reed Brothers, #1) ... 25.000000\n", "7803 Dolores Claiborne ... 38.000000\n", "7804 The Walking Dead, Vol. 13: Too Far Gone ... 25.000000\n", "7805 Kindle User's Guide ... 16.071429\n", "7806 Lean Mean Thirteen (Stephanie Plum, #13) ... 31.000000\n", "7807 Reunion (Redemption, #5) ... 24.000000\n", "7808 The Power (The Secret, #2) ... 27.000000\n", "7809 Cinderella ... 20.000000\n", "7810 Knight (Unfinished Hero, #1) ... 28.000000\n", "7811 Bloodline ... 32.000000\n", "7812 How Music Works ... 24.000000\n", "7813 In a People House ... 19.000000\n", "7814 The Tenth Insight: Holding the Vision (Celesti... ... 26.000000\n", "7815 Play with Me (With Me in Seattle, #3) ... 28.000000\n", "7816 The Gay Science ... 24.000000\n", "7817 Tar Baby ... 31.000000\n", "7818 Blackout: Remembering the Things I Drank to Fo... ... 20.000000\n", "7819 Alive: The Story of the Andes Survivors ... 26.000000\n", "7820 Beyond Reach (Grant County, #6) ... 33.000000\n", "7821 Under Locke ... 23.000000\n", "7822 The Bridge of San Luis Rey ... 32.000000\n", "7823 Ceremony ... 28.000000\n", "7824 The Third Secret ... 28.000000\n", "7825 March ... 32.000000\n", "7826 The Essential Calvin and Hobbes: A Calvin and ... ... 33.000000\n", "7827 The Wealth of Nations ... 27.000000\n", "7828 When You Are Engulfed in Flames ... 31.000000\n", "7829 Vision in White (Bride Quartet, #1) ... 35.000000\n", "7830 Men Explain Things to Me ... 22.000000\n", "7831 The Power of Myth ... 28.000000\n", "7832 Fame (Firstborn, #1) ... 24.000000\n", "7833 Sweet Surrender (Sweet, #1) ... 29.000000\n", "7834 Change Your Thoughts - Change Your Life: Livin... ... 26.000000\n", "7835 My Life in France ... 27.000000\n", "7836 Julie of the Wolves (Julie of the Wolves, #1) ... 26.000000\n", "7837 The 3 Mistakes of My Life ... 28.000000\n", "7838 Jake Undone (Jake, #1) ... 25.000000\n", "7839 Steal Like an Artist: 10 Things Nobody Told Yo... ... 23.000000\n", "7840 Out from Boneville (Bone, #1) ... 29.000000\n", "7841 A Death in Sweden ... 24.000000\n", "7842 The Walking Dead, Vol. 08: Made to Suffer ... 28.000000\n", "7843 5 cm ... 17.000000\n", "7844 Live Wire (Myron Bolitar #10) ... 29.000000\n", "7845 Just Me and My Dad (Little Critter) ... 17.000000\n", "7846 The Indispensable Calvin and Hobbes ... 32.000000\n", "7847 Three Junes ... 31.000000\n", "7848 Big Rock ... 21.000000\n", "7849 The End of Your Life Book Club ... 26.000000\n", "7850 The Brethren ... 32.000000\n", "7851 The Fifth Witness (Mickey Haller, #5; Harry Bo... ... 29.000000\n", "7852 Gideon's Sword (Gideon Crew, #1) ... 31.000000\n", "7853 Lysistrata ... 23.000000\n", "7854 Wonder Woman, Volume 1: Blood ... 27.000000\n", "7855 The Great Shark Hunt: Strange Tales from a Str... ... 23.000000\n", "7856 Stephen King's N. ... 22.000000\n", "7857 Lost in Shangri-la: A True Story of Survival, ... ... 23.000000\n", "7858 I Too Had a Love Story ... 25.000000\n", "7859 How to Win Friends and Influence People ... 30.000000\n", "7860 Unveiled: Tamar (Lineage of Grace #1) ... 23.000000\n", "7861 The Anti-Christ ... 24.000000\n", "7862 Hollywood Dirt (Hollywood Dirt, #1) ... 24.000000\n", "7863 The Unofficial Harry Potter Cookbook: From Cau... ... 27.000000\n", "7864 Sincerely, Carter (Sincerely Carter, #1) ... 22.000000\n", "7865 Auschwitz ... 24.000000\n", "7866 Pinkalicious ... 16.000000\n", "7867 Two Little Girls in Blue ... 32.000000\n", "7868 One for the Money (Stephanie Plum, #1) ... 32.000000\n", "7869 What Every Body is Saying: An Ex-FBI Agent's G... ... 25.000000\n", "7870 In Real Life ... 22.000000\n", "7871 A Mother's Reckoning: Living in the Aftermath ... ... 18.000000\n", "7872 Waiting to Be Heard: A Memoir ... 25.000000\n", "7873 Trouble ... 25.000000\n", "7874 Zealot: The Life and Times of Jesus of Nazareth ... 26.000000\n", "7875 Own the Wind (Chaos, #1) ... 26.000000\n", "7876 Fever Dream (Pendergast, #10) ... 28.000000\n", "7877 Llama Llama Red Pajama ... 14.000000\n", "7878 Vanished (Callahan & McLane #1) ... 21.000000\n", "7879 The Sympathizer ... 26.000000\n", "7880 Never Seduce a Scot (The Montgomerys and Armst... ... 29.000000\n", "7881 Imagine: How Creativity Works ... 21.000000\n", "7882 An Invisible Thread: The True Story of an 11-Y... ... 24.000000\n", "7883 Freakonomics: A Rogue Economist Explores the H... ... 30.000000\n", "7884 The Tin Roof Blowdown (Dave Robicheaux, #16) ... 25.000000\n", "7885 Smokin' Seventeen (Stephanie Plum, #17) ... 30.000000\n", "7886 Body Double (Rizzoli & Isles, #4) ... 32.000000\n", "7887 Stenhuggaren (Patrik Hedström, #3) ... 30.000000\n", "7888 Frédéric ... 15.000000\n", "7889 Complete Me (Stark Trilogy, #3) ... 29.000000\n", "7890 The Firm (Penguin Readers, Level 5) ... 36.000000\n", "7891 The Hit (Will Robie, #2) ... 30.000000\n", "7892 Beyond Band of Brothers: The War Memoirs of Ma... ... 23.000000\n", "7893 The Sleeping Doll (Kathryn Dance, #1) ... 35.000000\n", "7894 Say You're One of Them ... 32.000000\n", "7895 Conversations with God: An Uncommon Dialogue, ... ... 30.000000\n", "7896 The Symposium ... 28.000000\n", "7897 Good Night, Gorilla ... 19.000000\n", "7898 Superman: Red Son ... 28.000000\n", "7899 Rock Chick Reckoning (Rock Chick, #6) ... 28.000000\n", "7900 Unseen (Will Trent, #7) ... 28.000000\n", "7901 Escape ... 23.000000\n", "7902 The Cove (FBI Thriller #1) ... 30.000000\n", "7903 Miss Nelson Is Missing! (Miss Nelson, #1) ... 15.000000\n", "7904 Gone (Quincy & Rainie, #5) ... 32.000000\n", "7905 A Death in Vienna (Gabriel Allon, #4) ... 31.000000\n", "7906 Frog and Toad All Year (Frog and Toad, #3) ... 21.000000\n", "7907 The Voyages of Doctor Dolittle (Doctor Dolittl... ... 32.000000\n", "7908 Second Treatise of Government ... 23.000000\n", "7909 V is for Vengeance (Kinsey Millhone, #22) ... 30.000000\n", "7910 The View from Saturday ... 24.000000\n", "7911 Shoe Dog: A Memoir by the Creator of NIKE ... 23.000000\n", "7912 Say Goodbye (Quincy & Rainie, #6) ... 30.000000\n", "7913 A Long Way Gone: Memoirs of a Boy Soldier ... 31.000000\n", "7914 Paula ... 32.000000\n", "7915 More Than This (More Than, #1) ... 23.000000\n", "7916 Where Men Win Glory: The Odyssey of Pat Tillman ... 27.000000\n", "7917 The Little Old Lady Who Was Not Afraid of Anyt... ... 16.000000\n", "7918 Crush (Crush, #1) ... 23.000000\n", "7919 Coming Clean ... 19.000000\n", "7920 Running Blind (Jack Reacher, #4) ... 30.000000\n", "7921 Perfection (Neighbor from Hell, #2) ... 24.000000\n", "7922 Last to Die (Rizzoli & Isles, #10) ... 28.000000\n", "7923 Gerald's Game ... 39.000000\n", "7924 Black Rose (In the Garden, #2) ... 34.000000\n", "7925 Mad River (Virgil Flowers, #6) ... 27.000000\n", "7926 The Greatest Salesman in the World ... 29.000000\n", "7927 Tobacco Road (Brown Thrasher Books) ... 26.000000\n", "7928 Most Talkative: Stories from the Front Lines o... ... 19.000000\n", "7929 The I Ching or Book of Changes ... 22.000000\n", "7930 Second Chance Boyfriend (One Week Girlfriend, #2) ... 27.000000\n", "7931 Never Go Back (Jack Reacher, #18) ... 28.000000\n", "7932 The Great Influenza: The Story of the Deadlies... ... 24.000000\n", "7933 The Twelve Tribes of Hattie ... 28.000000\n", "7934 The Blank Slate: The Modern Denial of Human Na... ... 21.000000\n", "7935 Born on a Blue Day: Inside the Extraordinary M... ... 23.000000\n", "7936 Flotsam ... 11.000000\n", "7937 Play (Stage Dive, #2) ... 26.000000\n", "7938 Nightmares and Dreamscapes ... 37.000000\n", "7939 I Am Not Myself These Days ... 26.000000\n", "7940 Mr. Darcy's Diary (Jane Austen Heroes, #1) ... 28.000000\n", "7941 Out of the Dust ... 18.000000\n", "7942 Joey Pigza Swallowed the Key (Joey Pigza, #1) ... 17.000000\n", "7943 Mine (Real, #2) ... 30.000000\n", "7944 The Tao of Physics: An Exploration of the Para... ... 22.000000\n", "7945 Taken (Elvis Cole, #15; Joe Pike, #4) ... 29.000000\n", "7946 The Dirty Life: On Farming, Food, and Love ... 21.000000\n", "7947 The Misanthrope ... 24.000000\n", "7948 The Collectors (Camel Club, #2) ... 32.000000\n", "7949 Millions of Cats ... 18.000000\n", "7950 Small Sacrifices: A True Story of Passion and ... ... 24.000000\n", "7951 Full Tilt (Full #2) ... 29.000000\n", "7952 Hard Choices ... 27.000000\n", "7953 Little Red Riding Hood ... 15.000000\n", "7954 Transmetropolitan, Vol. 5: Lonely City (Transm... ... 29.000000\n", "7955 Well-Schooled in Murder (Inspector Lynley, #3) ... 25.000000\n", "7956 The Johnstown Flood ... 23.000000\n", "7957 Ball Four ... 29.000000\n", "7958 Cape Fear ... 22.000000\n", "7959 Full House (Full #1) ... 28.000000\n", "7960 Discourse on Method ... 24.000000\n", "7961 The Boy Who Harnessed the Wind: Creating Curre... ... 27.000000\n", "7962 Long Day's Journey Into Night ... 29.000000\n", "7963 Hidden Order (Scot Harvath, #12) ... 28.000000\n", "7964 A Severe Mercy: A Story of Faith, Tragedy and ... ... 31.000000\n", "7965 The Firm ... 35.000000\n", "7966 Close Range ... 26.000000\n", "7967 The Onion Field ... 27.000000\n", "7968 Prior Bad Acts (Kovac and Liska, #3) ... 34.000000\n", "7969 Behind the Beautiful Forevers: Life, Death, an... ... 24.000000\n", "7970 The Untethered Soul: The Journey Beyond Yourself ... 27.000000\n", "7971 The Cat Who Could Read Backwards (Cat Who..., #1) ... 31.000000\n", "7972 The River of Doubt: Theodore Roosevelt's Darke... ... 24.000000\n", "7973 The Book on the Taboo Against Knowing Who You Are ... 25.000000\n", "7974 Mile High (Up in the Air, #2) ... 29.000000\n", "7975 One Crazy Summer (Gaither Sisters, #1) ... 17.000000\n", "7976 Sacred (Kenzie & Gennaro, #3) ... 26.000000\n", "7977 Redemption (Redemption, #1) ... 27.000000\n", "7978 The Secret of the Unicorn (Tintin, #11) ... 24.000000\n", "7979 Avoiding Responsibility (Avoiding, #2) ... 26.000000\n", "7980 Eyes Wide Open (The Blackstone Affair, #3) ... 28.000000\n", "7981 Dream Man ... 28.000000\n", "7982 Remember (Redemption, #2) ... 25.000000\n", "7983 Too Much Happiness ... 34.000000\n", "7984 Never Love a Highlander (McCabe Trilogy, #3) ... 27.000000\n", "7985 Orthodoxy ... 31.000000\n", "7986 The Hare With Amber Eyes: A Family's Century o... ... 28.000000\n", "7987 The Calvin and Hobbes Tenth Anniversary Book ... 29.000000\n", "7988 Aunt Julia and the Scriptwriter ... 29.000000\n", "7989 Plum Spooky (Stephanie Plum, #14.5) ... 25.000000\n", "7990 Meditations on First Philosophy ... 22.000000\n", "7991 Waking Up: A Guide to Spirituality Without Rel... ... 25.000000\n", "7992 A Child Called \"It\" (Dave Pelzer #1) ... 31.000000\n", "7993 The Measure of a Lady ... 32.000000\n", "7994 The High Window (Philip Marlowe, #3) ... 33.000000\n", "7995 Dear Life: Stories ... 33.000000\n", "7996 Interpreter of Maladies ... 35.000000\n", "7997 The Last Boyfriend (Inn BoonsBoro, #2) ... 31.000000\n", "7998 Daring to Dream (Dream Trilogy, #1) ... 36.000000\n", "7999 Wave ... 24.000000\n", "8000 The Five Chinese Brothers ... 15.000000\n", "8001 The Hat ... 15.000000\n", "8002 Batman: The Dark Knight Returns #1 ... 19.000000\n", "8003 The Stinky Cheese Man and Other Fairly Stupid ... ... 18.000000\n", "8004 Stormy Weather ... 29.000000\n", "8005 Six Days of the Condor ... 25.000000\n", "8006 The Flame and the Flower ... 32.000000\n", "8007 Detroit: An American Autopsy ... 20.000000\n", "8008 The Devotion of Suspect X ... 31.000000\n", "8009 King of the Wind: The Story of the Godolphin A... ... 25.000000\n", "8010 The Messenger (Gabriel Allon, #6) ... 27.000000\n", "8011 Istanbul: Memories and the City ... 26.000000\n", "8012 The Four Agreements: A Practical Guide to Pers... ... 34.000000\n", "8013 Until Trevor (Until, #2) ... 25.000000\n", "8014 The Proposal (The Proposition, #2) ... 27.000000\n", "8015 King (King, #1) ... 23.000000\n", "8016 How We Decide ... 22.000000\n", "8017 Escape from Camp 14: One Man's Remarkable Odys... ... 26.000000\n", "8018 The Divan ... 18.000000\n", "8019 A Kiss for Little Bear (An I Can Read Book) by... ... 16.000000\n", "8020 A New Earth: Awakening to Your Life's Purpose ... 34.000000\n", "8021 The One Thing: The Surprisingly Simple Truth B... ... 25.000000\n", "8022 The Power of Habit: Why We Do What We Do in Li... ... 26.000000\n", "8023 100 Love Sonnets ... 30.000000\n", "8024 Friend-Zoned (Friend-Zoned, #1) ... 23.000000\n", "8025 There are No Children Here: The Story of Two B... ... 24.000000\n", "8026 El túnel ... 28.000000\n", "8027 The Silent Girl (Rizzoli & Isles, #9) ... 28.000000\n", "8028 Paradise (Second Opportunities, #1) ... 29.000000\n", "8029 Rock with Me (With Me in Seattle, #4) ... 25.000000\n", "8030 Same Kind of Different as Me ... 29.000000\n", "8031 Deep Down (Jack Reacher, #16.5) ... 27.000000\n", "8032 Hearts in Darkness (Hearts in Darkness, #1) ... 26.000000\n", "8033 House of M ... 27.000000\n", "8034 My Booky Wook ... 24.000000\n", "8035 Dear Zoo: A Lift-the-Flap Book ... 19.000000\n", "8036 The King of Torts ... 29.000000\n", "8037 Now You See Her ... 30.000000\n", "8038 The Invisible Wall: A Love Story That Broke Ba... ... 26.000000\n", "8039 Black Hole ... 26.000000\n", "8040 Chicken Soup for the Soul ... 30.000000\n", "8041 The Testament of Mary ... 30.000000\n", "8042 God's Smuggler ... 27.000000\n", "8043 Assassination Vacation ... 25.000000\n", "8044 One Shot (Jack Reacher, #9) ... 34.000000\n", "8045 Beauty from Pain (Beauty, #1) ... 26.000000\n", "8046 The Alibi ... 30.000000\n", "8047 You're Never Weird on the Internet (Almost) ... 27.000000\n", "8048 The Perfect Hope (Inn Boonsboro, #3) ... 30.000000\n", "8049 A Virtuous Woman ... 26.000000\n", "8050 Until November (Until, #1) ... 25.000000\n", "8051 Cinderella Ate My Daughter: Dispatches from th... ... 19.000000\n", "8052 The Rainbow Comes and Goes: A Mother and Son O... ... 20.000000\n", "8053 Whispers ... 31.000000\n", "8054 Amazing Grace ... 13.000000\n", "8055 Tao Te Ching ... 28.000000\n", "8056 Into the Darkest Corner ... 27.000000\n", "8057 The Meaning of Marriage: Facing the Complexiti... ... 30.000000\n", "8058 A Higher Call: An Incredible True Story of Com... ... 26.000000\n", "8059 Bomb: The Race to Build—and Steal—the Worl... ... 17.000000\n", "8060 Broken (Will Trent, #4) ... 31.000000\n", "8061 The Willpower Instinct: How Self-Control Works... ... 23.000000\n", "8062 Please Stop Laughing at Me... One Woman's Insp... ... 29.000000\n", "8063 The Millionaire Mind ... 24.000000\n", "8064 The Histories ... 30.000000\n", "8065 Politics ... 22.000000\n", "8066 The Everything Store: Jeff Bezos and the Age o... ... 26.000000\n", "8067 Caps for Sale: A Tale of a Peddler, Some Monke... ... 16.000000\n", "8068 The Monster of Florence ... 27.000000\n", "8069 Fatal Vision ... 24.000000\n", "8070 The Days Are Just Packed: A Calvin and Hobbes ... ... 31.000000\n", "8071 Price of a Kiss (Forbidden Men, #1) ... 23.000000\n", "8072 The One You Love (Emma Holden Suspense Mystery... ... 26.000000\n", "8073 Maus II: A Survivor's Tale: And Here My Troubl... ... 29.000000\n", "8074 Alexander and the Terrible, Horrible, No Good,... ... 16.000000\n", "8075 Rival (Fall Away, #2) ... 25.000000\n", "8076 The Man Who Listens to Horses ... 19.000000\n", "8077 The Broker ... 33.000000\n", "8078 The Mephisto Club (Rizzoli & Isles, #6) ... 31.000000\n", "8079 The Art of Thinking Clearly ... 24.000000\n", "8080 Without Fail (Jack Reacher, #6) ... 30.000000\n", "8081 Don't Sweat the Small Stuff ... and it's all s... ... 28.000000\n", "8082 Boundaries: When to Say Yes, How to Say No to ... ... 17.000000\n", "8083 Carter Reed (Carter Reed, #1) ... 25.000000\n", "8084 Just One Look ... 29.000000\n", "8085 The Upside of Irrationality: The Unexpected Be... ... 21.000000\n", "8086 Wit ... 24.000000\n", "8087 Band of Brothers: E Company, 506th Regiment, 1... ... 33.000000\n", "8088 Krakatoa: The Day the World Exploded ... 23.000000\n", "8089 All-Star Superman, Vol. 2 ... 24.000000\n", "8090 Maniac Magee ... 24.000000\n", "8091 Planetary, Volume 1: All Over the World and Ot... ... 23.000000\n", "8092 god is Not Great: How Religion Poisons Everything ... 30.000000\n", "8093 Sea Swept (Chesapeake Bay Saga, #1) ... 34.000000\n", "8094 Almost Heaven (Sequels, #3) ... 30.000000\n", "8095 Tripwire (Jack Reacher, #3) ... 27.000000\n", "8096 The Incredible Hulk: Planet Hulk ... 23.000000\n", "8097 The Street Lawyer ... 33.000000\n", "8098 Sweet Tooth, Volume 1: Out of the Deep Woods ... 22.000000\n", "8099 Devoured (Devoured, #1) ... 26.000000\n", "8100 Five Dialogues: Euthyphro, Apology, Crito, Men... ... 24.000000\n", "8101 You've Been Warned ... 35.000000\n", "8102 Spider Bones (Temperance Brennan, #13) ... 30.000000\n", "8103 The Oresteia (Ορέστεια, #1-3) ... 25.000000\n", "8104 The Whole Truth (A. Shaw, #1) ... 29.000000\n", "8105 Crazy For You ... 28.000000\n", "8106 Thinking, Fast and Slow ... 26.000000\n", "8107 Cage (Corps Security, #2) ... 24.000000\n", "8108 Crashed (Driven, #3) ... 27.000000\n", "8109 Night Shift ... 36.000000\n", "8110 Oogy: The Dog Only a Family Could Love ... 31.000000\n", "8111 I Want My Hat Back ... 16.000000\n", "8112 The Wall of Winnipeg and Me ... 22.000000\n", "8113 The Lincoln Lawyer (Mickey Haller, #1; Harry B... ... 33.000000\n", "8114 Mortality ... 26.000000\n", "8115 The Executioner's Song ... 25.000000\n", "8116 Hawkeye, Volume 2: Little Hits ... 25.000000\n", "8117 Transmetropolitan, Vol. 4: The New Scum (Trans... ... 26.000000\n", "8118 The Day Jimmy's Boa Ate the Wash ... 18.000000\n", "8119 Miss Rumphius ... 19.000000\n", "8120 Man and His Symbols ... 22.000000\n", "8121 Kisses from Katie: A Story of Relentless Love ... ... 29.000000\n", "8122 Far from the Tree: Parents, Children, and the ... ... 25.000000\n", "8123 Democracy in America ... 23.000000\n", "8124 Self Matters: Creating Your Life from the Insi... ... 18.000000\n", "8125 The Hungry Tide ... 32.000000\n", "8126 A Dark Lure ... 21.000000\n", "8127 Asterios Polyp ... 27.000000\n", "8128 The Alexandria Link (Cotton Malone, #2) ... 32.000000\n", "8129 Back Roads ... 28.000000\n", "8130 The Story of a Shipwrecked Sailor ... 29.000000\n", "8131 Fools Rush In (Weddings by Bella, #1) ... 22.000000\n", "8132 The Complete Poems 1927-1979 ... 24.000000\n", "8133 The Keeper of Lost Causes (Department Q, #1) ... 30.000000\n", "8134 Book of Mormon, Doctrine and Covenants, Pearl ... ... 28.000000\n", "8135 At Peace (The 'Burg, #2) ... 27.000000\n", "8136 Forever Black (Forever, #1) ... 25.000000\n", "8137 Shadow Fires ... 30.000000\n", "8138 Drift: The Unmooring of American Military Power ... 23.000000\n", "8139 Can Love Happen Twice? ... 23.000000\n", "8140 The World Is Flat: A Brief History of the Twen... ... 26.000000\n", "8141 The Mixed-Up Chameleon ... 15.000000\n", "8142 The Sinner (Rizzoli & Isles, #3) ... 30.000000\n", "8143 Convicted (Consequences, #3) ... 27.000000\n", "8144 Plum Lucky (Stephanie Plum, #13.5) ... 29.000000\n", "8145 The Day the Crayons Quit ... 18.000000\n", "8146 Superman: Birthright ... 27.000000\n", "8147 Runaways, Vol. 1: Pride and Joy (Runaways, #1) ... 24.000000\n", "8148 Lots of Candles, Plenty of Cake ... 22.000000\n", "8149 Georgiana: Duchess of Devonshire ... 22.000000\n", "8150 Feel the Fear and Do It Anyway ... 25.000000\n", "8151 Utilitarianism ... 24.000000\n", "8152 An Innocent Client ... 22.000000\n", "8153 The Monkey's Raincoat (Elvis Cole, #1) ... 25.000000\n", "8154 Where Are You Now? ... 30.000000\n", "8155 Unfamiliar Fishes ... 24.000000\n", "8156 Birdman (Jack Caffery, #1) ... 30.000000\n", "8157 The Cross of Lead (Crispin, #1) ... 23.000000\n", "8158 The One That Got Away ... 21.000000\n", "8159 My Fair Lazy: One Reality Television Addict's ... ... 23.000000\n", "8160 Love's Executioner and Other Tales of Psychoth... ... 24.000000\n", "8161 Magical Thinking: True Stories ... 31.000000\n", "8162 Calling Doctor Amelia Bedelia ... 14.000000\n", "8163 The Search (Eve Duncan, #3) ... 26.000000\n", "8164 The 4-Hour Body: An Uncommon Guide to Rapid Fa... ... 28.000000\n", "8165 Hand, Hand, Fingers, Thumb ... 19.000000\n", "8166 Onward: How Starbucks Fought for Its Life with... ... 28.000000\n", "8167 Split Second (Sean King & Michelle Maxwell, #1) ... 27.000000\n", "8168 The Weight of Glory ... 33.000000\n", "8169 The Five Love Languages: How to Express Heartf... ... 29.000000\n", "8170 Seduction and Snacks (Chocolate Lovers, #1) ... 25.000000\n", "8171 It's a Magical World: A Calvin and Hobbes Coll... ... 30.000000\n", "8172 Alone (Detective D.D. Warren, #1) ... 29.000000\n", "8173 Smile ... 21.000000\n", "8174 The Liars' Club ... 31.000000\n", "8175 The Mermaids Singing (Tony Hill & Carol Jordan... ... 31.000000\n", "8176 The 7 Habits of Highly Effective People: Power... ... 33.000000\n", "8177 She Said Yes: The Unlikely Martyrdom of Cassie... ... 26.000000\n", "8178 The Greatest Generation ... 28.000000\n", "8179 Avatar Volume 1: The Last Airbender (Avatar #1) ... 16.000000\n", "8180 A is for Alibi (Kinsey Millhone, #1) ... 28.000000\n", "8181 Hotel du Lac ... 32.000000\n", "8182 Gone, Baby, Gone (Kenzie & Gennaro, #4) ... 33.000000\n", "8183 Strega Nona ... 18.000000\n", "8184 Alert (Michael Bennett, #8) ... 24.000000\n", "8185 The Wrong Side of Goodbye (Harry Bosch, #21; H... ... 23.000000\n", "8186 The House of Thunder ... 31.000000\n", "8187 Moonlight Becomes You ... 30.000000\n", "8188 In the Night Kitchen ... 17.000000\n", "8189 Back Spin (Myron Bolitar #4) ... 25.000000\n", "8190 61 Hours (Jack Reacher, #14) ... 33.000000\n", "8191 Llama Llama Mad at Mama ... 16.000000\n", "8192 Hawkeye, Volume 1: My Life as a Weapon ... 30.000000\n", "8193 Found in You (Fixed, #2) ... 26.000000\n", "8194 Playing for Keeps (Neighbor from Hell, #1) ... 24.000000\n", "8195 Gone for Good ... 33.000000\n", "8196 Stone Cold (Camel Club, #3) ... 30.000000\n", "8197 The Partly Cloudy Patriot ... 25.000000\n", "8198 The Neighbor (Detective D.D. Warren, #3) ... 29.000000\n", "8199 Half the Sky: Turning Oppression into Opportun... ... 22.000000\n", "8200 Night Owl (Night Owl, #1) ... 23.000000\n", "8201 Three Times Lucky (Tupelo Landing, #1) ... 19.000000\n", "8202 The Perfect Husband (Quincy & Rainie, #1) ... 29.000000\n", "8203 A Cry In The Night ... 32.000000\n", "8204 The Innocent Man: Murder and Injustice in a Sm... ... 28.000000\n", "8205 The Tenth Justice ... 30.000000\n", "8206 The Analects ... 22.000000\n", "8207 MWF Seeking BFF: My Yearlong Search For A New ... ... 21.000000\n", "8208 Neighbor Dearest ... 20.000000\n", "8209 Berserk, Vol. 1 (Berserk, #1) ... 26.000000\n", "8210 Scarpetta (Kay Scarpetta, #16) ... 31.000000\n", "8211 Bury My Heart at Wounded Knee: An Indian Histo... ... 33.000000\n", "8212 Tyrant (King, #2) ... 21.000000\n", "8213 The Google Story: Inside the Hottest Business,... ... 23.000000\n", "8214 The First Commandment (Scot Harvath, #6) ... 28.000000\n", "8215 Void Moon ... 29.000000\n", "8216 The Bronze Bow ... 27.000000\n", "8217 The Moral Landscape: How Science Can Determine... ... 25.000000\n", "8218 The Secret River ... 30.000000\n", "8219 Mindset: The New Psychology of Success ... 24.000000\n", "8220 The Thing Around Your Neck ... 25.000000\n", "8221 Jesus Freaks: Stories of Those Who Stood for J... ... 27.000000\n", "8222 Lumberjanes, Vol. 1: Beware the Kitten Holy ... 21.000000\n", "8223 Ricochet ... 29.000000\n", "8224 Hideaway ... 30.000000\n", "8225 The Rainmaker ... 32.000000\n", "8226 Two for the Dough (Stephanie Plum, #2) ... 30.000000\n", "8227 The Devil's Punchbowl ... 30.000000\n", "8228 I'm OK - You're OK ... 20.000000\n", "8229 Deliver Us from Evil (A. Shaw, #2) ... 33.000000\n", "8230 Flaggermusmannen (Harry Hole, #1) ... 32.000000\n", "8231 Plum Lovin' (Stephanie Plum, #12.5) ... 29.000000\n", "8232 The Girl with the Lower Back Tattoo ... 22.000000\n", "8233 Jamberry ... 16.000000\n", "8234 Without You, There Is No Us: My Time with the ... ... 21.000000\n", "8235 The Checklist Manifesto: How to Get Things Right ... 21.000000\n", "8236 Girl in a Band ... 22.000000\n", "8237 How to Tell If Your Cat Is Plotting to Kill You ... 26.000000\n", "8238 Absolute Fear (New Orleans, #4) ... 29.000000\n", "8239 Eileen ... 26.000000\n", "8240 Jewel ... 27.000000\n", "8241 1776 ... 31.000000\n", "8242 The Apprentice (Rizzoli & Isles, #2) ... 30.000000\n", "8243 The Very Busy Spider ... 16.000000\n", "8244 I Am America (And So Can You!) ... 26.000000\n", "8245 Growing Up Amish ... 22.000000\n", "8246 Pursuit of Honor (Mitch Rapp, #12) ... 31.000000\n", "8247 Fixed on You (Fixed, #1) ... 26.000000\n", "8248 The Final Detail (Myron Bolitar #6) ... 28.000000\n", "8249 The Tipping Point: How Little Things Can Make ... ... 29.000000\n", "8250 Devil in a Blue Dress (Easy Rawlins, #1) ... 30.000000\n", "8251 La tregua ... 29.000000\n", "8252 In Flight (Up in the Air, #1) ... 28.000000\n", "8253 Discourse on Method and Meditations on First P... ... 24.000000\n", "8254 The School of Essential Ingredients ... 31.000000\n", "8255 Cross Bones (Temperance Brennan, #8) ... 32.000000\n", "8256 Little Princes: One Man's Promise to Bring Hom... ... 28.000000\n", "8257 Indelible (Grant County, #4) ... 32.000000\n", "8258 Belly Laughs: The Naked Truth About Pregnancy ... ... 21.000000\n", "8259 Motor Mouth (Alex Barnaby #2) ... 29.000000\n", "8260 Narrative of the Life of Frederick Douglass ... 33.000000\n", "8261 Blue Nights ... 27.000000\n", "8262 Justice: What's the Right Thing to Do? ... 24.000000\n", "8263 Women, Food and God: An Unexpected Path to Alm... ... 23.000000\n", "8264 Akira, Vol. 1 ... 27.000000\n", "8265 My Lobotomy ... 24.000000\n", "8266 Inside, Outside, Upside Down (Berenstain Bears... ... 16.000000\n", "8267 Catherine the Great: Portrait of a Woman ... 27.000000\n", "8268 Asterix the Gaul (Asterix, #1) ... 26.000000\n", "8269 Crisis on Infinite Earths ... 27.000000\n", "8270 The Billionaire Wins the Game (Billionaire Bac... ... 24.000000\n", "8271 Trouble in Mudbug (Ghost-in-Law, #1) ... 24.000000\n", "8272 A Fish Out of Water ... 16.000000\n", "8273 Girls' Night In ... 20.000000\n", "8274 Games People Play ... 28.000000\n", "8275 If You Ask Me (And of Course You Won't) ... 20.000000\n", "8276 Silken Prey (Lucas Davenport, #23) ... 29.000000\n", "8277 L.A. Confidential (L.A. Quartet, #3) ... 29.000000\n", "8278 Bones Are Forever (Temperance Brennan, #15) ... 27.000000\n", "8279 The Tale of Three Trees ... 18.000000\n", "8280 Shiloh (Shiloh, #1) ... 24.000000\n", "8281 Total Control ... 32.000000\n", "8282 Are You There, Vodka? It's Me, Chelsea ... 28.000000\n", "8283 The Case for Faith: A Journalist Investigates ... ... 29.000000\n", "8284 Smoke Screen ... 28.000000\n", "8285 Rudolph the Red-Nosed Reindeer ... 18.000000\n", "8286 Olivia ... 14.000000\n", "8287 The Feminine Mystique ... 29.000000\n", "8288 Merle's Door: Lessons from a Freethinking Dog ... 30.000000\n", "8289 Let's Explore Diabetes with Owls ... 24.000000\n", "8290 Dear Theo ... 26.000000\n", "8291 The Sculptor ... 23.000000\n", "8292 Journals ... 22.000000\n", "8293 Maximum City: Bombay Lost and Found ... 28.000000\n", "8294 Civil War: A Marvel Comics Event ... 30.000000\n", "8295 Travesuras de la niña mala ... 31.000000\n", "8296 Einstein: His Life and Universe ... 31.000000\n", "8297 The Dressmaker of Khair Khana: Five Sisters, O... ... 26.000000\n", "8298 The Four Loves ... 25.000000\n", "8299 Proof of Heaven: A Neurosurgeon's Journey into... ... 27.000000\n", "8300 Bright Lights, Big Ass: A Self-Indulgent, Surl... ... 28.000000\n", "8301 All-Star Superman, Vol. 1 ... 26.000000\n", "8302 Deeper Than the Dead (Oak Knoll, #1) ... 28.000000\n", "8303 Kabul Beauty School: An American Woman Goes Be... ... 23.000000\n", "8304 Lit ... 27.000000\n", "8305 FRUiTS ... 12.000000\n", "8306 The Success Principles: How to Get from Where ... ... 24.000000\n", "8307 Sarah, Plain and Tall (Sarah, Plain and Tall, #1) ... 22.000000\n", "8308 Command Authority (Jack Ryan Universe, #16) ... 30.000000\n", "8309 Gifted Hands: The Ben Carson Story ... 27.000000\n", "8310 Homicidal Psycho Jungle Cat: A Calvin and Hobb... ... 29.000000\n", "8311 Evicted: Poverty and Profit in the American City ... 19.000000\n", "8312 To Rise Again at a Decent Hour ... 30.000000\n", "8313 Vinegar Hill ... 25.000000\n", "8314 Blue Dahlia (In the Garden, #1) ... 33.000000\n", "8315 Brain Rules: 12 Principles for Surviving and T... ... 25.000000\n", "8316 My Beloved World ... 22.000000\n", "8317 Bossypants ... 25.000000\n", "8318 The Umbrella Academy, Vol. 1: The Apocalypse S... ... 28.000000\n", "8319 Pilgrim at Tinker Creek ... 31.000000\n", "8320 The Rise and Fall of the Third Reich: A Histor... ... 30.000000\n", "8321 Hitch-22: A Memoir ... 27.000000\n", "8322 X-Men: The Dark Phoenix Saga ... 30.000000\n", "8323 Remember Me ... 26.000000\n", "8324 The Millionaire Next Door: The Surprising Secr... ... 26.000000\n", "8325 The Face Of Deception (Eve Duncan, #1) ... 30.000000\n", "8326 30 Days of Night, Vol. 1 ... 24.000000\n", "8327 Daily Rituals: How Artists Work ... 23.000000\n", "8328 Your Best Life Now: 7 Steps to Living at Your ... ... 26.000000\n", "8329 Body Movers (Body Movers, #1) ... 23.000000\n", "8330 No god but God: The Origins, Evolution and Fut... ... 28.000000\n", "8331 The Book with No Pictures ... 18.000000\n", "8332 Death du Jour (Temperance Brennan, #2) ... 32.000000\n", "8333 It Ain't Me, Babe (Hades Hangmen, #1) ... 20.000000\n", "8334 Princess: A True Story of Life Behind the Veil... ... 28.000000\n", "8335 Friends and Lovers ... 17.000000\n", "8336 Triptych (Will Trent, #1) ... 31.000000\n", "8337 Love Warrior ... 21.000000\n", "8338 Sex Criminals, Vol. 1: One Weird Trick ... 26.000000\n", "8339 Wrong (Wrong, #1) ... 23.000000\n", "8340 NYPD Red 2 (NYPD Red, #2) ... 30.000000\n", "8341 The Little House ... 16.000000\n", "8342 The Rest Is Noise: Listening to the Twentieth ... ... 24.000000\n", "8343 The Secret Servant (Gabriel Allon, #7) ... 30.000000\n", "8344 Truce (Neighbor from Hell, #4) ... 25.000000\n", "8345 Runaway ... 35.000000\n", "8346 A Long Way Home ... 26.000000\n", "8347 The Worst Hard Time: The Untold Story of Those... ... 27.000000\n", "8348 The Element: How Finding Your Passion Changes ... ... 25.000000\n", "8349 Still Foolin' 'Em: Where I've Been, Where I'm ... ... 22.000000\n", "8350 Flash Boys: A Wall Street Revolt ... 26.000000\n", "8351 Once and Always (Sequels, #1) ... 28.000000\n", "8352 Wrong Bed, Right Guy (Come Undone, #1) ... 26.000000\n", "8353 If You Give a Pig a Party ... 16.000000\n", "8354 Deal Breaker (Myron Bolitar #1) ... 29.000000\n", "8355 The Bully Pulpit: Theodore Roosevelt, William ... ... 24.000000\n", "8356 Talent is Overrated: What Really Separates Wor... ... 19.000000\n", "8357 Brown Bear, Brown Bear, What Do You See? ... 15.000000\n", "8358 Beautiful Boy: A Father's Journey Through His ... ... 26.000000\n", "8359 Scott Pilgrim, Volume 3: Scott Pilgrim & The I... ... 30.000000\n", "8360 Quiet: The Power of Introverts in a World That... ... 21.000000\n", "8361 Hope to Die (Alex Cross, #22) ... 28.000000\n", "8362 Manhunt: The 12-Day Chase for Lincoln's Killer ... 28.000000\n", "8363 Born to Run ... 24.000000\n", "8364 Port Mortuary (Kay Scarpetta, #18) ... 30.000000\n", "8365 Tribute ... 31.000000\n", "8366 The Five Love Languages of Children ... 25.000000\n", "8367 Batman: Year One ... 31.000000\n", "8368 Maus I: A Survivor's Tale: My Father Bleeds Hi... ... 27.000000\n", "8369 Anti-Stepbrother ... 20.000000\n", "8370 Горе от ума ... 15.000000\n", "8371 True Compass: A Memoir ... 21.000000\n", "8372 The Absent One (Department Q, #2) ... 26.000000\n", "8373 SantaLand Diaries ... 24.000000\n", "8374 Many Lives, Many Masters: The True Story of a ... ... 26.000000\n", "8375 Separation of Power (Mitch Rapp, #5) ... 32.000000\n", "8376 Tractatus Logico-Philosophicus ... 23.000000\n", "8377 The Undercover Economist ... 28.000000\n", "8378 Metro Girl (Alex Barnaby, #1) ... 29.000000\n", "8379 A Sand County Almanac and Sketches Here and There ... 24.000000\n", "8380 Vanish (Rizzoli & Isles, #5) ... 31.000000\n", "8381 All Souls: A Family Story from Southie ... 24.000000\n", "8382 The Stories of Eva Luna ... 28.000000\n", "8383 The Nine: Inside the Secret World of the Supre... ... 22.000000\n", "8384 Through My Eyes ... 24.000000\n", "8385 The Other Wes Moore: One Name, Two Fates ... 22.000000\n", "8386 Dexter Is Delicious (Dexter, #5) ... 27.000000\n", "8387 The Argonauts ... 21.000000\n", "8388 Daun Yang Jatuh Tak Pernah Membenci Angin ... 15.000000\n", "8389 Proof ... 23.000000\n", "8390 Until You (Westmoreland, #3) ... 32.000000\n", "8391 Dexter By Design (Dexter, #4) ... 28.000000\n", "8392 The Obsession ... 27.000000\n", "8393 The Runaway Jury ... 34.000000\n", "8394 Protect and Defend (Mitch Rapp, #10) ... 31.000000\n", "8395 7: An Experimental Mutiny Against Excess ... 20.000000\n", "8396 Stumbling on Happiness ... 22.000000\n", "8397 Consequences (Consequences, #1) ... 25.000000\n", "8398 Truth (Consequences, #2) ... 26.000000\n", "8399 Hillbilly Elegy: A Memoir of a Family and Cult... ... 19.000000\n", "8400 Storm of the Century: An Original Screenplay ... 30.000000\n", "8401 The Big Nowhere (L.A. Quartet, #2) ... 27.000000\n", "8402 C is for Corpse (Kinsey Millhone, #3) ... 30.000000\n", "8403 Disappearing Acts ... 22.000000\n", "8404 The Death of Superman ... 26.000000\n", "8405 Q is for Quarry (Kinsey Millhone, #17) ... 30.000000\n", "8406 What Looks Like Crazy on an Ordinary Day (Idle... ... 27.000000\n", "8407 Deep (Stage Dive, #4) ... 23.000000\n", "8408 The Hidden Child (Patrik Hedström, #5) ... 29.000000\n", "8409 Independence Day ... 38.000000\n", "8410 The Next Accident (Quincy & Rainie, #3) ... 30.000000\n", "8411 Chronicles, Vol. 1 ... 33.000000\n", "8412 The Krishna Key ... 26.000000\n", "8413 The Winner ... 31.000000\n", "8414 You Belong To Me ... 28.000000\n", "8415 The Sweet Potato Queens' Book of Love ... 26.000000\n", "8416 Death at La Fenice (Commissario Brunetti, #1) ... 25.000000\n", "8417 The North Water ... 26.000000\n", "8418 F is for Fugitive (Kinsey Millhone, #6) ... 29.000000\n", "8419 Extreme Measures (Mitch Rapp, #11) ... 31.000000\n", "8420 for colored girls who have considered suicide/... ... 26.000000\n", "8421 Anne Frank : The Biography ... 22.000000\n", "8422 Long Lost (Myron Bolitar #9) ... 31.000000\n", "8423 Accidentally on Purpose (Accidentally on Purpo... ... 24.000000\n", "8424 Trace (Kay Scarpetta, #13) ... 29.000000\n", "8425 The Unlikely Spy ... 24.000000\n", "8426 The Lions of Lucerne (Scot Harvath, #1) ... 30.000000\n", "8427 Leo ... 27.000000\n", "8428 Poetics ... 24.000000\n", "8429 The Prize Winner of Defiance, Ohio: How My Mot... ... 21.000000\n", "8430 14th Deadly Sin (Women’s Murder Club, #14) ... 28.000000\n", "8431 The Obstacle Is the Way: The Timeless Art of T... ... 19.000000\n", "8432 Drop Shot (Myron Bolitar #2) ... 31.000000\n", "8433 I Feel Bad about My Neck: And Other Thoughts o... ... 24.000000\n", "8434 Suspect (Scott James & Maggie, #1) ... 26.000000\n", "8435 The Tender Bar ... 30.000000\n", "8436 Amelia Bedelia and the Surprise Shower ... 16.000000\n", "8437 Victims (Alex Delaware, #27) ... 28.000000\n", "8438 Presumed Innocent ... 35.000000\n", "8439 The Proper Care and Feeding of Husbands ... 19.000000\n", "8440 Red Mist (Kay Scarpetta, #19) ... 28.000000\n", "8441 A Year in Provence ... 34.000000\n", "8442 The Partner ... 31.000000\n", "8443 A Bargain for Frances ... 18.000000\n", "8444 The Twelfth Card (Lincoln Rhyme, #6) ... 26.000000\n", "8445 The Wordy Shipmates ... 24.000000\n", "8446 Stuck-Up Suit ... 21.000000\n", "8447 Bossman ... 21.000000\n", "8448 Scott Pilgrim, Volume 1: Scott Pilgrim's Preci... ... 32.000000\n", "8449 Swamp Thing, Vol. 1: Saga of the Swamp Thing ... 27.000000\n", "8450 Three to Get Deadly (Stephanie Plum, #3) ... 29.000000\n", "8451 Backstage Pass (Sinners on Tour, #1) ... 27.000000\n", "8452 The Invisible Gorilla: And Other Ways Our Intu... ... 19.000000\n", "8453 G is for Gumshoe (Kinsey Millhone, #7) ... 30.000000\n", "8454 The Known World ... 33.000000\n", "8455 Judy Moody (Judy Moody, # 1) ... 23.000000\n", "8456 Without Remorse (Jack Ryan Universe, #1) ... 32.000000\n", "8457 The Broken Wings ... 26.000000\n", "8458 The Dry (Aaron Falk, #1) ... 22.000000\n", "8459 The Guns of August ... 28.000000\n", "8460 The Third Victim (Quincy & Rainie, #2) ... 31.000000\n", "8461 Predictably Irrational: The Hidden Forces That... ... 24.000000\n", "8462 Identity Crisis ... 27.000000\n", "8463 Fighting for Flight (Fighting, #1) ... 25.000000\n", "8464 The Man With a Load of Mischief (Richard Jury,... ... 27.000000\n", "8465 I Was Told There'd Be Cake ... 28.000000\n", "8466 Roller Girl ... 9.000000\n", "8467 I Heard That Song Before ... 24.000000\n", "8468 The Friend Zone (Game On, #2) ... 21.000000\n", "8469 Doubt ... 26.000000\n", "8470 Heartsick (Archie Sheridan & Gretchen Lowell, #1) ... 31.000000\n", "8471 The Reef ... 37.000000\n", "8472 Through the Woods ... 20.000000\n", "8473 The Pacific ... 22.000000\n", "8474 The Power of Your Subconscious Mind ... 28.000000\n", "8475 The Killing Hour (Quincy & Rainie, #4) ... 29.000000\n", "8476 U Is for Undertow (Kinsey Millhone, #21) ... 29.000000\n", "8477 The Seven Spiritual Laws of Success: A Practic... ... 26.000000\n", "8478 Help Thanks Wow: The Three Essential Prayers ... 21.000000\n", "8479 The Black Swan: The Impact of the Highly Impro... ... 27.000000\n", "8480 My Story: \"A Child Called It\", \"The Lost Boy\",... ... 23.000000\n", "8481 Persepolis, Volume 1 ... 23.000000\n", "8482 Astonishing X-Men, Volume 1: Gifted ... 26.000000\n", "8483 Mystery (Alex Delaware, #26) ... 26.000000\n", "8484 Dog on It (A Chet and Bernie Mystery #1) ... 27.000000\n", "8485 The Matarese Circle (Matarese #1) ... 34.000000\n", "8486 Miracles ... 30.000000\n", "8487 Letter to My Daughter ... 31.000000\n", "8488 The Christmas List ... 27.000000\n", "8489 Marvels ... 27.000000\n", "8490 Wait for It ... 21.000000\n", "8491 Wild Fire (John Corey, #4) ... 28.000000\n", "8492 'Tis (Frank McCourt, #2) ... 34.000000\n", "8493 Logicomix: An epic search for truth ... 22.000000\n", "8494 Up to Me (The Bad Boys, #2) ... 27.000000\n", "8495 Sizzling Sixteen (Stephanie Plum, #16) ... 31.000000\n", "8496 The Negotiator ... 29.000000\n", "8497 Maid for the Billionaire (Legacy Collection, #1) ... 24.000000\n", "8498 Avatar: The Last Airbender (The Promise, #2) ... 27.000000\n", "8499 The New Drawing on the Right Side of the Brain ... 17.000000\n", "8500 Common Sense, The Rights of Man and Other Esse... ... 21.000000\n", "8501 Tweak: Growing Up On Methamphetamines ... 30.000000\n", "8502 Rising Tides (Chesapeake Bay Saga, #2) ... 32.000000\n", "8503 The Abolition of Man ... 30.000000\n", "8504 Creepshow ... 22.000000\n", "8505 Chocolate Chip Cookie Murder (Hannah Swensen, #1) ... 26.000000\n", "8506 The Far Side Gallery ... 24.000000\n", "8507 The English Assassin (Gabriel Allon, #2) ... 29.000000\n", "8508 The Nazi Officer's Wife: How One Jewish Woman ... ... 26.000000\n", "8509 The Color of Water: A Black Man's Tribute to H... ... 26.000000\n", "8510 Zero Day (John Puller, #1) ... 30.000000\n", "8511 The Simple Truth ... 29.000000\n", "8512 The Girl Before ... 26.000000\n", "8513 The Yacoubian Building ... 25.000000\n", "8514 Miracle in the Andes ... 24.000000\n", "8515 The Poet (Jack McEvoy, #1; Harry Bosch Univers... ... 32.000000\n", "8516 The Three Sisters ... 31.000000\n", "8517 La Carte et le territoire ... 24.000000\n", "8518 Vagabonding: An Uncommon Guide to the Art of L... ... 26.000000\n", "8519 The Icarus Agenda ... 29.000000\n", "8520 Eiger Dreams: Ventures Among Men and Mountains ... 20.000000\n", "8521 The Mitten ... 14.000000\n", "8522 Is Your Mama a Llama? ... 14.000000\n", "8523 Why Be Happy When You Could Be Normal? ... 28.000000\n", "8524 Citizen: An American Lyric ... 19.000000\n", "8525 Bad Blood (Virgil Flowers, #4) ... 26.000000\n", "8526 Bella Tuscany ... 26.000000\n", "8527 Big Nate Strikes Again (Big Nate Novels, #2) ... 18.000000\n", "8528 Divine Justice (Camel Club, #4) ... 30.000000\n", "8529 Reasonable Doubt: Volume 2 (Reasonable Doubt, #2) ... 21.000000\n", "8530 We Wish to Inform You That Tomorrow We Will Be... ... 26.000000\n", "8531 Monster in His Eyes (Monster in His Eyes, #1) ... 23.000000\n", "8532 Book of the Dead (Kay Scarpetta, #15) ... 32.000000\n", "8533 Left to Tell: Discovering God Amidst the Rwand... ... 20.000000\n", "8534 Falling Leaves: The Memoir of an Unwanted Chin... ... 29.000000\n", "8535 Barnyard Dance ... 18.000000\n", "8536 Until Nico (Until, #4) ... 25.000000\n", "8537 The Rembrandt Affair (Gabriel Allon, #10) ... 27.000000\n", "8538 A Stolen Life ... 27.000000\n", "8539 Five Little Monkeys Jumping on the Bed ... 13.000000\n", "8540 Like a Fire Burning (The Work and the Glory, #2) ... 29.000000\n", "8541 B is for Burglar (Kinsey Millhone, #2) ... 30.000000\n", "8542 Stepbrother Dearest ... 22.000000\n", "8543 Kulti ... 21.000000\n", "8544 Destiny of the Republic: A Tale of Madness, Me... ... 20.000000\n", "8545 The Third Option (Mitch Rapp, #4) ... 30.000000\n", "8546 Foxe's Book of Martyrs ... 23.000000\n", "8547 The Happiness Hypothesis: Finding Modern Truth... ... 22.000000\n", "8548 The Fire Next Time ... 25.000000\n", "8549 206 Bones (Temperance Brennan, #12) ... 30.000000\n", "8550 The Now Habit: A Strategic Program for Overcom... ... 25.000000\n", "8551 The Last Patriot (Scot Harvath, #7) ... 27.000000\n", "8552 Where Good Ideas Come From: The Natural Histor... ... 18.000000\n", "8553 Dear Mr. Henshaw (Leigh Botts, #1) ... 20.000000\n", "8554 All Around the Town ... 27.000000\n", "8555 Truth Will Prevail (The Work and the Glory, #3) ... 24.000000\n", "8556 You'll Grow Out of It ... 18.000000\n", "8557 Loving What Is: Four Questions That Can Change... ... 19.000000\n", "8558 Kill Me If You Can ... 30.000000\n", "8559 Don't Let the Pigeon Drive the Bus! ... 14.000000\n", "8560 Existentialism Is a Humanism ... 22.000000\n", "8561 Hostile Witness (Witness Series, #1) ... 19.000000\n", "8562 D-Day, June 6, 1944: The Battle for the Norman... ... 28.000000\n", "8563 Run Baby Run ... 20.000000\n", "8564 Killing Lincoln: The Shocking Assassination th... ... 27.000000\n", "8565 Black Lies ... 22.000000\n", "8566 In Harm's Way: The Sinking of the U.S.S. India... ... 26.000000\n", "8567 Seducing Cinderella (Fighting for Love, #1) ... 21.000000\n", "8568 Red Lily (In the Garden, #3) ... 32.000000\n", "8569 David Gets In Trouble ... 18.000000\n", "8570 Autobiography of a Yogi ... 27.000000\n", "8571 We Need New Names ... 28.000000\n", "8572 Four to Score (Stephanie Plum, #4) ... 29.000000\n", "8573 Saving Faith ... 31.000000\n", "8574 2 States: The Story of My Marriage ... 28.000000\n", "8575 The Key to Rebecca ... 27.000000\n", "8576 The Calvin and Hobbes Lazy Sunday Book ... 28.000000\n", "8577 Knight & Stay (Knight, #2) ... 25.000000\n", "8578 The Preacher (Patrik Hedström, #2) ... 28.000000\n", "8579 Girl Walks into a Bar . . .: Comedy Calamities... ... 19.000000\n", "8580 Visions of Sugar Plums (Stephanie Plum, #8.5) ... 26.000000\n", "8581 The Surgeon (Rizzoli & Isles, #1) ... 32.000000\n", "8582 Bad Rep (Bad Rep, #1) ... 23.000000\n", "8583 The Science of Getting Rich ... 19.000000\n", "8584 Round Ireland with a Fridge ... 26.000000\n", "8585 Rock Me (Ross Siblings, #2) ... 26.000000\n", "8586 Desert Flower ... 30.000000\n", "8587 The Summons ... 32.000000\n", "8588 Beyond Belief: My Secret Life Inside Scientolo... ... 23.000000\n", "8589 Connected (Connections, #1) ... 26.000000\n", "8590 American Assassin (Mitch Rapp, #1) ... 32.000000\n", "8591 Scaredy Squirrel (Scaredy Squirrel) ... 16.000000\n", "8592 Unleashed (Ross Siblings, #1) ... 24.000000\n", "8593 Indemnity Only (V.I. Warshawski, #1) ... 25.000000\n", "8594 Some Assembly Required: A Journal of My Son's ... ... 20.000000\n", "8595 Certain Prey (Lucas Davenport, #10) ... 31.000000\n", "8596 The Wisdom of Crowds ... 22.000000\n", "8597 Winter in Tokyo ... 22.000000\n", "8598 Mr. Perfect ... 30.000000\n", "8599 The Broken Window (Lincoln Rhyme, #8) ... 32.000000\n", "8600 On the Genealogy of Morals/Ecce Homo ... 22.000000\n", "8601 Guilty Wives ... 31.000000\n", "8602 There's Treasure Everywhere: A Calvin and Hobb... ... 29.000000\n", "8603 La casa de Bernarda Alba ... 25.000000\n", "8604 Blankets ... 25.000000\n", "8605 A Year Down Yonder (A Long Way from Chicago, #2) ... 23.000000\n", "8606 A Drink Before the War (Kenzie & Gennaro, #1) ... 26.000000\n", "8607 A Faint Cold Fear (Grant County, #3) ... 33.000000\n", "8608 The Seven Principles for Making Marriage Work:... ... 28.000000\n", "8609 The Life of Elizabeth I ... 25.000000\n", "8610 Memories, Dreams, Reflections ... 20.000000\n", "8611 رباعيات خياÙ\n", " ... 21.000000\n", "8612 How to Stop Worrying and Start Living ... 26.000000\n", "8613 First Family (Sean King & Michelle Maxwell, #4) ... 33.000000\n", "8614 The Bone People ... 29.000000\n", "8615 Honeymoon (Honeymoon, #1) ... 30.000000\n", "8616 The Princess Diarist ... 23.000000\n", "8617 The Unwanted Wife (Unwanted, #1) ... 24.000000\n", "8618 Chew, Vol. 1: Taster's Choice ... 22.000000\n", "8619 Private Games (Private #3) ... 33.000000\n", "8620 Carry On, Mr. Bowditch ... 22.000000\n", "8621 Surrender Your Love (Surrender Your Love, #1) ... 25.000000\n", "8622 Adulthood Is a Myth (Sarah's Scribbles, #1) ... 24.000000\n", "8623 Open Season (Joe Pickett, #1) ... 29.000000\n", "8624 The Famished Road ... 33.000000\n", "8625 Chasing Fire ... 33.000000\n", "8626 Open ... 26.000000\n", "8627 The Narrow Road to the Deep North ... 34.000000\n", "8628 Janet Evanovich Three and Four Two-Book Set (S... ... 18.000000\n", "8629 K is for Killer (Kinsey Millhone, #11) ... 30.000000\n", "8630 The Scarpetta Factor (Kay Scarpetta, #17) ... 29.000000\n", "8631 Rough Country (Virgil Flowers, #3) ... 27.000000\n", "8632 Raw (RAW Family, #1) ... 23.000000\n", "8633 The Vision ... 28.000000\n", "8634 The Problem of Pain ... 29.000000\n", "8635 Sang Pemimpi (Tetralogi Laskar Pelangi, #2) ... 22.000000\n", "8636 Cradle and All ... 30.000000\n", "8637 Diary ng Panget ... 21.000000\n", "8638 Punk 57 ... 21.000000\n", "8639 Consent to Kill (Mitch Rapp, #8) ... 32.000000\n", "8640 Icebound ... 30.000000\n", "8641 Dirty (Dive Bar, #1) ... 21.000000\n", "8642 What to Expect When You're Expecting ... 23.000000\n", "8643 Devil's Game (Reapers MC, #3) ... 22.000000\n", "8644 The Very Quiet Cricket ... 14.000000\n", "8645 Stones Into Schools: Promoting Peace With Book... ... 23.000000\n", "8646 Sheep in a Jeep ... 14.000000\n", "8647 The Dogs of Riga (Kurt Wallander, #2) ... 26.000000\n", "8648 The Last Precinct (Kay Scarpetta, #11) ... 31.000000\n", "8649 Wasted: A Memoir of Anorexia and Bulimia ... 27.000000\n", "8650 Avatar: The Last Airbender (The Promise, #1) ... 28.000000\n", "8651 Fearless Fourteen (Stephanie Plum, #14) ... 27.000000\n", "8652 Why I Am Not a Christian and Other Essays on R... ... 26.000000\n", "8653 Three Cups of Tea: One Man's Mission to Promot... ... 26.000000\n", "8654 Bad Kitty ... 14.000000\n", "8655 The Lion's Game (John Corey, #2) ... 29.000000\n", "8656 Flaskepost fra P (Afdeling Q, #3) ... 26.000000\n", "8657 The Killing Game (Eve Duncan, #2) ... 27.000000\n", "8658 A Piece of Cake ... 26.000000\n", "8659 The Game Changer (The Perfect Game, #2) ... 24.000000\n", "8660 美少女戦士セーラームーン新è£\n", "版 ... ... 30.000000\n", "8661 Undaunted Courage: The Pioneering First Missio... ... 26.000000\n", "8662 Drama ... 16.000000\n", "8663 Ghost World ... 25.000000\n", "8664 Habibi ... 26.000000\n", "8665 Prisoner of My Desire ... 26.000000\n", "8666 Reasonable Doubt: Volume 1 (Reasonable Doubt, #1) ... 20.000000\n", "8667 The Big Short: Inside the Doomsday Machine ... 26.000000\n", "8668 Bad Things (Tristan & Danika, #1) ... 25.000000\n", "8669 Promise Me (Myron Bolitar #8) ... 30.000000\n", "8670 Panda Bear, Panda Bear, What Do You See? ... 15.000000\n", "8671 Are You Afraid of the Dark? ... 33.000000\n", "8672 Chasing Darkness (Elvis Cole, #12) ... 30.000000\n", "8673 Ride Steady (Chaos, #3) ... 25.000000\n", "8674 Deception (Alex Delaware, #25) ... 24.000000\n", "8675 Fargo Rock City: A Heavy Metal Odyssey in Rura... ... 19.000000\n", "8676 Confederates in the Attic: Dispatches from the... ... 28.000000\n", "8677 Moo, Baa, La La La! ... 17.000000\n", "8678 Owl Babies ... 13.000000\n", "8679 Sounder ... 18.000000\n", "8680 Choosing to SEE ... 23.000000\n", "8681 Maid for Love (Gansett Island Series, #1) ... 23.000000\n", "8682 H is for Homicide (Kinsey Millhone, #8) ... 30.000000\n", "8683 Mercy (Buchanan-Renard, #2) ... 30.000000\n", "8684 How Do Dinosaurs Say Good Night? ... 15.000000\n", "8685 Undeniable (Undeniable, #1) ... 21.000000\n", "8686 Stories I Only Tell My Friends ... 24.000000\n", "8687 I Love You Through and Through ... 15.000000\n", "8688 The Husband ... 32.000000\n", "8689 The Letters of Vincent van Gogh ... 26.000000\n", "8690 Be Here Now ... 23.000000\n", "8691 Think and Grow Rich: The Landmark Bestseller -... ... 24.000000\n", "8692 Willing Captive ... 24.000000\n", "8693 The Elements of Style ... 25.000000\n", "8694 Red Rabbit (Jack Ryan Universe, #3) ... 31.000000\n", "8695 The Sellout ... 28.000000\n", "8696 Sunset Express (Elvis Cole, #6) ... 24.000000\n", "8697 Half Blood Blues ... 30.000000\n", "8698 Conquer Your Love (Surrender Your Love, #2) ... 23.000000\n", "8699 Nicholas and Alexandra ... 27.000000\n", "8700 Rainbow Six (Jack Ryan Universe, #10) ... 29.000000\n", "8701 Mortal Prey (Lucas Davenport, #13) ... 30.000000\n", "8702 All Over But the Shoutin' ... 27.000000\n", "8703 The Pursuit of God ... 30.000000\n", "8704 Debt Inheritance (Indebted, #1) ... 21.000000\n", "8705 Blindsighted (Grant County, #1) ... 32.000000\n", "8706 Bud, Not Buddy ... 20.000000\n", "8707 Adrift: Seventy-Six Days Lost at Sea ... 22.000000\n", "8708 Naked ... 32.000000\n", "8709 Moscow Rules (Gabriel Allon, #8) ... 26.000000\n", "8710 Club Shadowlands (Masters of the Shadowlands, #1) ... 23.000000\n", "8711 All But My Life: A Memoir ... 23.000000\n", "8712 The Crossing (Harry Bosch, #20; Mickey Haller,... ... 25.000000\n", "8713 The Burning Wire (Lincoln Rhyme, #9) ... 28.000000\n", "8714 American Vampire, Vol. 1 ... 20.000000\n", "8715 Blood on Snow (Blood on Snow, #1) ... 29.000000\n", "8716 The Dance Of Anger: A Woman's Guide to Changin... ... 22.000000\n", "8717 Funny in Farsi: A Memoir of Growing Up Iranian... ... 26.000000\n", "8718 Dicey's Song (Tillerman Cycle, #2) ... 22.000000\n", "8719 History of the Peloponnesian War ... 27.000000\n", "8720 Blueberries for Sal ... 16.000000\n", "8721 The Warmth of Other Suns: The Epic Story of Am... ... 24.000000\n", "8722 1491: New Revelations of the Americas Before C... ... 27.000000\n", "8723 Attack on Titan, Vol. 1 (Attack on Titan, #1) ... 29.000000\n", "8724 Fallen (Will Trent, #5) ... 26.000000\n", "8725 Wicca: A Guide for the Solitary Practitioner ... 25.000000\n", "8726 Waking Up Married (Waking Up, #1) ... 20.000000\n", "8727 No Logo ... 26.000000\n", "8728 Leadership and Self-Deception: Getting Out of ... ... 27.000000\n", "8729 Where I Belong (Alabama Summer, #1) ... 19.000000\n", "8730 Clementine (Clementine, #1) ... 15.000000\n", "8731 On the Night You Were Born ... 20.000000\n", "8732 The Concrete Blonde (Harry Bosch, #3; Harry Bo... ... 27.000000\n", "8733 Thomas Jefferson: The Art of Power ... 25.000000\n", "8734 Helmet for My Pillow ... 22.000000\n", "8735 The Whipping Boy ... 20.000000\n", "8736 The Richest Man in Babylon ... 27.000000\n", "8737 A Grief Observed ... 31.000000\n", "8738 Nine Parts of Desire: The Hidden World of Isla... ... 25.000000\n", "8739 Touching the Void: The True Story of One Man's... ... 26.000000\n", "8740 J is for Judgment (Kinsey Millhone, #10) ... 30.000000\n", "8741 On Photography ... 24.000000\n", "8742 The Wives of Henry VIII ... 25.000000\n", "8743 Break No Bones (Temperance Brennan, #9) ... 31.000000\n", "8744 Being and Nothingness ... 25.000000\n", "8745 Eleanor of Aquitaine: A Life ... 24.000000\n", "8746 The Stories of John Cheever ... 27.000000\n", "8747 Night Fall (John Corey, #3) ... 28.000000\n", "8748 The Pigeon Wants a Puppy! ... 15.000000\n", "8749 The Camel Club (Camel Club, #1) ... 31.000000\n", "8750 The Redeemer (Harry Hole, #6) ... 30.000000\n", "8751 Creativity, Inc.: Overcoming the Unseen Forces... ... 24.000000\n", "8752 Journal 64 (Afdeling Q, #4) ... 24.000000\n", "8753 Metaphysics ... 21.000000\n", "8754 The Cold Moon (Lincoln Rhyme, #7) ... 31.000000\n", "8755 Dominic (Slater Brothers, #1) ... 21.000000\n", "8756 Montana Sky ... 32.000000\n", "8757 NYPD Red (NYPD Red, #1) ... 29.000000\n", "8758 Men Are from Mars, Women Are from Venus ... 31.000000\n", "8759 Private Berlin (Private #5) ... 30.000000\n", "8760 Music of the Heart (Runaway Train, #1) ... 23.000000\n", "8761 Kingdom Come ... 27.000000\n", "8762 Willpower: Rediscovering the Greatest Human St... ... 24.000000\n", "8763 There Was an Old Lady Who Swallowed a Fly ... 14.000000\n", "8764 Codependent No More: How to Stop Controlling O... ... 28.000000\n", "8765 Strengths Finder 2.0 ... 24.000000\n", "8766 On Death and Dying ... 21.000000\n", "8767 Collapse: How Societies Choose to Fail or Succeed ... 23.000000\n", "8768 Kill Shot (Mitch Rapp, #2) ... 26.000000\n", "8769 Appointment in Samarra ... 26.000000\n", "8770 Holding the Dream (Dream Trilogy #2) ... 35.000000\n", "8771 The Search ... 29.000000\n", "8772 The Last Detective (Elvis Cole, #9) ... 24.000000\n", "8773 The Happiness Advantage: The Seven Principles ... ... 25.000000\n", "8774 Madeline and the Bad Hat ... 17.000000\n", "8775 The Confessions of Nat Turner ... 28.000000\n", "8776 Orientalism ... 21.000000\n", "8777 Team of Rivals: The Political Genius of Abraha... ... 27.000000\n", "8778 Deadly Decisions (Temperance Brennan, #3) ... 31.000000\n", "8779 Sweetheart (Archie Sheridan & Gretchen Lowell,... ... 26.000000\n", "8780 Mastery ... 22.000000\n", "8781 True Love Story ... 22.000000\n", "8782 Rock Bottom (Tristan & Danika, #2) ... 22.000000\n", "8783 Wemberly Worried ... 8.000000\n", "8784 The Definitive Book of Body Language ... 23.000000\n", "8785 Polar Bear, Polar Bear, What Do You Hear? ... 14.000000\n", "8786 The Idiot Girls' Action-Adventure Club: True T... ... 28.000000\n", "8787 Crucial Conversations: Tools for Talking When ... ... 29.000000\n", "8788 How Google Works ... 25.000000\n", "8789 Me: Stories of My Life ... 29.000000\n", "8790 Heat Lightning (Virgil Flowers, #2) ... 26.000000\n", "8791 The Cradle Will Fall ... 27.000000\n", "8792 Knight & Play (Knight, #1) ... 26.000000\n", "8793 A Distant Mirror: The Calamitous 14th Century ... 31.000000\n", "8794 Wanted ... 23.000000\n", "8795 Heavier Than Heaven: A Biography of Kurt Cobain ... 31.000000\n", "8796 Damaged: The Heartbreaking True Story of a For... ... 24.000000\n", "8797 Daddy's Little Girl ... 25.000000\n", "8798 See Jane Score (Chinooks Hockey Team, #2) ... 26.000000\n", "8799 Switch: How to Change Things When Change Is Hard ... 22.000000\n", "8800 Cocky Bastard ... 23.000000\n", "8801 Reaper's Property (Reapers MC, #1) ... 24.000000\n", "8802 Two Treatises of Government ... 18.000000\n", "8803 Nine Dragons (Harry Bosch, #15; Mickey Haller,... ... 28.000000\n", "8804 Buried Prey (Lucas Davenport, #21) ... 28.000000\n", "8805 How Soccer Explains the World ... 17.000000\n", "8806 High Noon ... 33.000000\n", "8807 E is for Evidence (Kinsey Millhone, #5) ... 28.000000\n", "8808 Come Back, Amelia Bedelia ... 13.000000\n", "8809 The Client ... 33.000000\n", "8810 The Looming Tower: Al-Qaeda and the Road to 9/11 ... 24.000000\n", "8811 Preacher, Volume 4: Ancient History ... 23.000000\n", "8812 RoomHate ... 20.000000\n", "8813 Déjà Dead (Temperance Brennan, #1) ... 32.000000\n", "8814 Long Walk to Freedom ... 31.000000\n", "8815 Stupid White Men ... 22.000000\n", "8816 D is for Deadbeat (Kinsey Millhone, #4) ... 28.000000\n", "8817 Wicked Ties (Wicked Lovers, #1) ... 26.000000\n", "8818 Nemesis (Harry Hole, #4) ... 31.000000\n", "8819 Confessions ... 25.000000\n", "8820 The Sentry (Elvis Cole, #14; Joe Pike, #3) ... 22.000000\n", "8821 The Pigeon Finds a Hot Dog! ... 16.000000\n", "8822 Stone Butch Blues ... 22.000000\n", "8823 Rich Dad, Poor Dad ... 31.000000\n", "8824 Forgotten God: Reversing Our Tragic Neglect of... ... 30.000000\n", "8825 Bonhoeffer: Pastor, Martyr, Prophet, Spy ... 26.000000\n", "8826 El Deafo ... 11.000000\n", "8827 Skinny Bitch ... 29.000000\n", "8828 Batman: Whatever Happened to the Caped Crusader? ... 25.000000\n", "8829 Benjamin Franklin: An American Life ... 26.000000\n", "8830 The Lost Boy (Dave Pelzer #2) ... 28.000000\n", "8831 Captive in the Dark (The Dark Duet, #1) ... 22.000000\n", "8832 Fancy Nancy ... 13.000000\n", "8833 Up from Slavery ... 28.000000\n", "8834 Absolute Power ... 32.000000\n", "8835 The Black Echo (Harry Bosch, #1; Harry Bosch U... ... 27.000000\n", "8836 Crush It!: Why Now Is the Time to Cash In on Y... ... 23.000000\n", "8837 Where Are the Children? ... 28.000000\n", "8838 Rock Hard (Sinners on Tour, #2) ... 27.000000\n", "8839 The Rape of Nanking ... 23.000000\n", "8840 Point of Impact (Bob Lee Swagger, #1) ... 33.000000\n", "8841 Lunch in Paris: A Love Story, with Recipes ... 21.000000\n", "8842 The Road Less Traveled: A New Psychology of Lo... ... 27.000000\n", "8843 Simple Abundance: A Daybook of Comfort and Joy ... 21.000000\n", "8844 The Know-It-All: One Man's Humble Quest to Bec... ... 26.000000\n", "8845 Northern Lights ... 35.000000\n", "8846 Night Chills ... 29.000000\n", "8847 The War of Art: Break Through the Blocks & Win... ... 28.000000\n", "8848 Marching Powder: A True Story of Friendship, C... ... 19.000000\n", "8849 Batman: Hush ... 31.000000\n", "8850 The Ice Princess (Patrik Hedström, #1) ... 31.000000\n", "8851 The Revenge of the Baby-Sat ... 30.000000\n", "8852 Silent Prey (Lucas Davenport #4) ... 31.000000\n", "8853 Anya's Ghost ... 18.000000\n", "8854 12th of Never (Women's Murder Club, #12) ... 29.000000\n", "8855 Marie Antoinette: The Journey ... 29.000000\n", "8856 Groundwork of the Metaphysics of Morals ... 19.000000\n", "8857 Don't Blink ... 26.000000\n", "8858 The Vagina Monologues ... 27.000000\n", "8859 The First Rule (Elvis Cole, #13; Joe Pike, #2) ... 24.000000\n", "8860 Bear Snores On ... 13.000000\n", "8861 Teacher Man (Frank McCourt, #3) ... 30.000000\n", "8862 Lucky Man ... 26.000000\n", "8863 P is for Peril (Kinsey Millhone, #16) ... 29.000000\n", "8864 Tinkers ... 30.000000\n", "8865 Loves Music, Loves to Dance ... 30.000000\n", "8866 Unlucky 13 (Women’s Murder Club, #13) ... 29.000000\n", "8867 Make Way for Ducklings ... 15.000000\n", "8868 Love Left Behind ... 23.000000\n", "8869 The Boy Who Came Back from Heaven: A Remarkabl... ... 15.000000\n", "8870 Zero to One: Notes on Startups, or How to Buil... ... 23.000000\n", "8871 Ice Cold (Rizzoli & Isles, #8) ... 27.000000\n", "8872 Sweeney Todd: The Demon Barber of Fleet Street ... 18.000000\n", "8873 And the Band Played On: Politics, People, and ... ... 25.000000\n", "8874 The Bone Collector (Lincoln Rhyme, #1) ... 32.000000\n", "8875 Random Family: Love, Drugs, Trouble, and Comin... ... 23.000000\n", "8876 Wings of Fire: An Autobiography ... 23.000000\n", "8877 15th Affair (Women's Murder Club #15) ... 20.000000\n", "8878 The Apostle (Scot Harvath, #8) ... 28.000000\n", "8879 The Philosophy of Andy Warhol (From A to B and... ... 22.000000\n", "8880 The Six Wives of Henry VIII ... 29.000000\n", "8881 Shrill: Notes from a Loud Woman ... 17.000000\n", "8882 The Perfect Storm: A True Story of Men Against... ... 26.000000\n", "8883 الÙ\n", "رحوÙ\n", " ... 23.000000\n", "8884 I'll Be Seeing You ... 27.000000\n", "8885 The Story of My Experiments With Truth ... 29.000000\n", "8886 The Bear and the Dragon (Jack Ryan Universe, #11) ... 30.000000\n", "8887 Life Application Study Bible: NIV ... 23.000000\n", "8888 Monday Mourning (Temperance Brennan, #7) ... 29.000000\n", "8889 Eleven on Top (Stephanie Plum, #11) ... 28.000000\n", "8890 The Black Ice (Harry Bosch, #2; Harry Bosch Un... ... 27.000000\n", "8891 The Places in Between ... 26.000000\n", "8892 Take the Cannoli ... 21.000000\n", "8893 Dry ... 31.000000\n", "8894 Amusing Ourselves to Death: Public Discourse i... ... 22.000000\n", "8895 Rich Dad's Guide to Investing: What the Rich I... ... 25.000000\n", "8896 Finding the Dream (Dream Trilogy #3) ... 33.000000\n", "8897 Clear and Present Danger (Jack Ryan Universe, #6) ... 29.000000\n", "8898 Black List (Scot Harvath, #11) ... 29.000000\n", "8899 Possible Side Effects ... 27.000000\n", "8900 Fatal Voyage (Temperance Brennan, #4) ... 30.000000\n", "8901 Flow: The Psychology of Optimal Experience ... 24.000000\n", "8902 أقوÙ\n", " قيلا ... 22.000000\n", "8903 How Will You Measure Your Life? ... 22.000000\n", "8904 Not Without My Daughter ... 23.000000\n", "8905 الفيل الأزرق ... 23.000000\n", "8906 Persepolis: The Story of a Childhood (Persepol... ... 21.000000\n", "8907 After the Night ... 27.000000\n", "8908 The Going-To-Bed Book ... 19.000000\n", "8909 Steel Magnolias (DPS Acting Edition) ... 14.000000\n", "8910 The Face ... 33.000000\n", "8911 Who Will Cry When You Die? Life Lessons from t... ... 23.000000\n", "8912 The Complete Persepolis ... 26.000000\n", "8913 The Honest Truth About Dishonesty: How We Lie ... ... 18.000000\n", "8914 Headhunters ... 29.000000\n", "8915 A Return to Love: Reflections on the Principle... ... 23.000000\n", "8916 Astonishing X-Men, Volume 2: Dangerous ... 26.000000\n", "8917 M is for Malice (Kinsey Millhone, #13) ... 31.000000\n", "8918 Secret Prey (Lucas Davenport, #9) ... 29.000000\n", "8919 The Aquitaine Progression ... 25.000000\n", "8920 Rubicon: The Last Years of the Roman Republic ... 30.000000\n", "8921 The 4-Hour Workweek ... 27.000000\n", "8922 The Redbreast (Harry Hole, #3) ... 29.000000\n", "8923 Superman: Whatever Happened to the Man of Tomo... ... 20.000000\n", "8924 Zen Mind, Beginner's Mind: Informal Talks on Z... ... 29.000000\n", "8925 Tales of a Female Nomad: Living at Large in th... ... 21.000000\n", "8926 Fear and Trembling ... 23.000000\n", "8927 Owen ... 15.000000\n", "8928 Ways of Seeing ... 23.000000\n", "8929 Grave Secrets (Temperance Brennan, #5) ... 30.000000\n", "8930 Maximum Ride, Vol. 1 (Maximum Ride: The Manga,... ... 27.000000\n", "8931 Batman, Volume 1: The Court of Owls ... 25.000000\n", "8932 1st to Die (Women's Murder Club, #1) ... 32.000000\n", "8933 Private London (Private #4) ... 28.000000\n", "8934 The Paradox of Choice: Why More Is Less ... 20.000000\n", "8935 The Lucifer Effect: Understanding How Good Peo... ... 21.000000\n", "8936 Dark of the Moon (Virgil Flowers, #1) ... 26.000000\n", "8937 Mountains Beyond Mountains: The Quest of Dr. P... ... 23.000000\n", "8938 Eye of the Storm (Sean Dillon, #1) ... 28.000000\n", "8939 Hot Ticket (Sinners on Tour, #3) ... 26.000000\n", "8940 Captivating: Unveiling the Mystery of a Woman'... ... 28.000000\n", "8941 الحرافيش ... 27.000000\n", "8942 Sylvester and the Magic Pebble ... 17.000000\n", "8943 Sudden Prey (Lucas Davenport, #8) ... 31.000000\n", "8944 River, Cross My Heart ... 24.000000\n", "8945 Innocent (Kindle County Legal Thriller, #8) ... 25.000000\n", "8946 The Secret Art of Dr. Seuss ... 16.000000\n", "8947 Auschwitz: A Doctor's Eyewitness Account ... 21.000000\n", "8948 The Power of Positive Thinking ... 25.000000\n", "8949 An Army at Dawn: The War in North Africa, 1942... ... 26.000000\n", "8950 The Watchman (Elvis Cole, #11; Joe Pike, #1) ... 27.000000\n", "8951 Black Hills ... 33.000000\n", "8952 Laskar Pelangi (Tetralogi Laskar Pelangi, #1) ... 24.000000\n", "8953 What to Expect the First Year (What to Expect) ... 24.000000\n", "8954 Mouse Paint ... 11.000000\n", "8955 Hot Six (Stephanie Plum, #6) ... 28.000000\n", "8956 From Beirut to Jerusalem ... 24.000000\n", "8957 The Defector (Gabriel Allon, #9) ... 27.000000\n", "8958 The Scarecrow (Jack McEvoy, #2) ... 27.000000\n", "8959 Radical: Taking Back Your Faith from the Ameri... ... 26.000000\n", "8960 True Blue ... 28.000000\n", "8961 The Speed of Trust: The One Thing that Changes... ... 25.000000\n", "8962 First They Killed My Father: A Daughter of Cam... ... 29.000000\n", "8963 High Five (Stephanie Plum, #5) ... 26.000000\n", "8964 Grounded (Up in the Air, #3) ... 25.000000\n", "8965 The Greater Journey: Americans in Paris ... 25.000000\n", "8966 NurtureShock: New Thinking About Children ... 23.000000\n", "8967 The Power of Full Engagement: Managing Energy,... ... 19.000000\n", "8968 Don't Let the Pigeon Stay Up Late! ... 15.000000\n", "8969 Scott Pilgrim, Volume 4: Scott Pilgrim Gets It... ... 29.000000\n", "8970 Black Like Me ... 28.000000\n", "8971 Crazy Love: Overwhelmed by a Relentless God ... 30.000000\n", "8972 The Art of Happiness ... 30.000000\n", "8973 T is for Trespass (Kinsey Millhone, #20) ... 28.000000\n", "8974 The Neon Rain (Dave Robicheaux, #1) ... 26.000000\n", "8975 The Blessing Way (Leaphorn & Chee, #1) ... 26.000000\n", "8976 Superman: Earth One, Volume 1 ... 27.000000\n", "8977 The Upanishads: Translations from the Sanskrit ... 19.000000\n", "8978 Chosen Prey (Lucas Davenport, #12) ... 31.000000\n", "8979 Simple Genius (Sean King & Michelle Maxwell, #3) ... 30.000000\n", "8980 Click, Clack, Moo: Cows That Type ... 12.000000\n", "8981 Chesapeake Blue (Chesapeake Bay Saga, #4) ... 32.000000\n", "8982 Shattered ... 24.000000\n", "8983 Screw It, Let's Do It: Lessons In Life ... 25.000000\n", "8984 Medium Raw: A Bloody Valentine to the World of... ... 23.000000\n", "8985 The Napping House ... 13.000000\n", "8986 Gorillas in the Mist ... 19.000000\n", "8987 Prince of Fire (Gabriel Allon, #5) ... 26.000000\n", "8988 Dibs in Search of Self ... 17.000000\n", "8989 Last Words ... 25.000000\n", "8990 Ghost Soldiers: The Epic Account of World War ... ... 25.000000\n", "8991 A Walk Across America ... 20.000000\n", "8992 The Irresistible Revolution: Living as an Ordi... ... 27.000000\n", "8993 A Whole New Mind: Why Right-Brainers Will Rule... ... 22.000000\n", "8994 Simply Irresistible (Chinooks Hockey Team, #1) ... 28.000000\n", "8995 Cross My Heart (Alex Cross, #21) ... 28.000000\n", "8996 Running with Scissors ... 33.000000\n", "8997 Rework ... 26.000000\n", "8998 Velocity ... 32.000000\n", "8999 Leave Me Breathless (Ross Siblings, #3) ... 25.000000\n", "9000 Getting to Yes: Negotiating an Agreement Witho... ... 25.000000\n", "9001 A History of the World in 6 Glasses ... 24.000000\n", "9002 Track of the Cat (Anna Pigeon, #1) ... 27.000000\n", "9003 Love Wins: A Book About Heaven, Hell, and the ... ... 26.000000\n", "9004 Savage Inequalities: Children in America's Sch... ... 17.000000\n", "9005 The Te of Piglet ... 27.000000\n", "9006 Money, and the Law of Attraction: Learning to ... ... 17.000000\n", "9007 Chicka Chicka Boom Boom ... 14.000000\n", "9008 Police (Harry Hole, #10) ... 29.000000\n", "9009 With the Old Breed: At Peleliu and Okinawa ... 24.000000\n", "9010 The Carrot Seed ... 13.000000\n", "9011 Chelsea Chelsea Bang Bang ... 24.000000\n", "9012 Evil at Heart (Archie Sheridan & Gretchen Lowe... ... 27.000000\n", "9013 Tales of the South Pacific ... 28.000000\n", "9014 This One Summer ... 17.000000\n", "9015 The Path Between the Seas: The Creation of the... ... 23.000000\n", "9016 Standing for Something: 10 Neglected Virtues T... ... 24.000000\n", "9017 The Spirit Catches You and You Fall Down: A Hm... ... 21.000000\n", "9018 Finger Lickin' Fifteen (Stephanie Plum, #15) ... 27.000000\n", "9019 Pride of Baghdad ... 24.000000\n", "9020 Love and Respect: The Love She Most Desires; T... ... 28.000000\n", "9021 Reaper's Legacy (Reapers MC, #2) ... 21.000000\n", "9022 Carolina Moon ... 32.000000\n", "9023 Surprised by Joy: The Shape of My Early Life ... 28.000000\n", "9024 DC: The New Frontier, Volume 1 ... 24.000000\n", "9025 Shock Wave (Virgil Flowers, #5) ... 23.000000\n", "9026 Blow Fly (Kay Scarpetta, #12) ... 29.000000\n", "9027 O is for Outlaw (Kinsey Millhone, #15) ... 30.000000\n", "9028 The Man from Beijing ... 24.000000\n", "9029 Manufacturing Consent: The Political Economy o... ... 23.000000\n", "9030 Awaken the Giant Within: How to Take Immediate... ... 21.000000\n", "9031 Social Intelligence: The New Science of Human ... ... 24.000000\n", "9032 Mennonite in a Little Black Dress: A Memoir of... ... 27.000000\n", "9033 Blaze ... 34.000000\n", "9034 The Game: Penetrating the Secret Society of Pi... ... 28.000000\n", "9035 Women Who Love Too Much: When You Keep Wishing... ... 20.000000\n", "9036 American on Purpose: The Improbable Adventures... ... 21.000000\n", "9037 Patriot Games (Jack Ryan Universe, #2) ... 30.000000\n", "9038 The Reversal (Harry Bosch, #16; Mickey Haller,... ... 25.000000\n", "9039 Seven Up (Stephanie Plum, #7) ... 29.000000\n", "9040 1493: Uncovering the New World Columbus Created ... 22.000000\n", "9041 Creed (Unfinished Hero, #2) ... 25.000000\n", "9042 Forever My Girl (The Beaumont Series, #1) ... 22.000000\n", "9043 From Hell ... 30.000000\n", "9044 Inner Harbor (Chesapeake Bay Saga, #3) ... 33.000000\n", "9045 March: Book One (March, #1) ... 17.000000\n", "9046 Open Season ... 28.000000\n", "9047 While My Pretty One Sleeps ... 23.000000\n", "9048 The Power of Intention: Learning to Co-create ... ... 25.000000\n", "9049 Dress Your Family in Corduroy and Denim ... 30.000000\n", "9050 Strength in What Remains: A Journey of Remembr... ... 21.000000\n", "9051 Trunk Music (Harry Bosch, #5; Harry Bosch Univ... ... 26.000000\n", "9052 The Secret Race: Inside the Hidden World of th... ... 19.000000\n", "9053 Joni: An Unforgettable Story ... 19.000000\n", "9054 Reviving Ophelia: Saving the Selves of Adolesc... ... 18.000000\n", "9055 Incidents in the Life of a Slave Girl ... 21.000000\n", "9056 Economics in One Lesson: The Shortest & Surest... ... 26.000000\n", "9057 The Autobiography of Benjamin Franklin ... 28.000000\n", "9058 Founding Brothers: The Revolutionary Generation ... 25.000000\n", "9059 Hell's Corner (Camel Club, #5) ... 30.000000\n", "9060 Getting Stoned with Savages: A Trip Through th... ... 21.000000\n", "9061 The Tibetan Book of Living and Dying ... 22.000000\n", "9062 Execution: The Discipline of Getting Things Done ... 24.000000\n", "9063 A Girl Named Zippy ... 22.000000\n", "9064 Lost Light (Harry Bosch, #9; Harry Bosch Unive... ... 30.000000\n", "9065 Secrets of the Millionaire Mind: Mastering the... ... 25.000000\n", "9066 When Bad Things Happen to Good People ... 22.000000\n", "9067 David Goes To School ... 15.000000\n", "9068 Scott Pilgrim, Volume 2: Scott Pilgrim vs. The... ... 32.000000\n", "9069 Naked Economics: Undressing the Dismal Science ... 22.000000\n", "9070 The Heavenly Man: The Remarkable True Story of... ... 22.000000\n", "9071 My Life ... 26.000000\n", "9072 Rules of Prey (Lucas Davenport, #1) ... 31.000000\n", "9073 عزازيل ... 25.000000\n", "9074 Twelve Sharp (Stephanie Plum, #12) ... 29.000000\n", "9075 Battle Hymn of the Tiger Mother ... 22.000000\n", "9076 The Hole in Our Gospel: What does God expect o... ... 22.000000\n", "9077 The Black Box (Harry Bosch, #18; Harry Bosch U... ... 27.000000\n", "9078 Takedown (Scot Harvath, #5) ... 24.000000\n", "9079 Sail ... 31.000000\n", "9080 Le bleu est une couleur chaude ... 20.000000\n", "9081 Waiter Rant: Thanks for the Tip-Confessions of... ... 26.000000\n", "9082 A Perfect Evil (Maggie O'Dell, #1) ... 27.000000\n", "9083 Bringing Up Bébé: One American Mother Discov... ... 14.000000\n", "9084 Praying God's Word: Breaking Free From Spiritu... ... 20.000000\n", "9085 Beautifully Damaged (Beautifully Damaged, #1) ... 20.000000\n", "9086 N is for Noose (Kinsey Millhone, #14) ... 30.000000\n", "9087 The Audacity of Hope: Thoughts on Reclaiming t... ... 24.000000\n", "9088 Batman: The Killing Joke ... 32.000000\n", "9089 Batman, Volume 3: Death of the Family ... 25.000000\n", "9090 Autumn in Paris ... 22.000000\n", "9091 The Last Coyote (Harry Bosch, #4; Harry Bosch ... ... 26.000000\n", "9092 How to Talk to Anyone: 92 Little Tricks for Bi... ... 21.000000\n", "9093 King Leopold's Ghost ... 25.000000\n", "9094 Cockroaches (Harry Hole, #2) ... 29.000000\n", "9095 Mufaro's Beautiful Daughters: An African Tale ... 12.000000\n", "9096 The Places That Scare You: A Guide to Fearless... ... 21.000000\n", "9097 90 Minutes in Heaven: A True Story of Death an... ... 24.000000\n", "9098 Operating Instructions: A Journal of My Son's ... ... 21.000000\n", "9099 Pretend You Don't See Her ... 26.000000\n", "9100 Dead End in Norvelt ... 17.000000\n", "9101 Batman: The Long Halloween ... 31.000000\n", "9102 If Chins Could Kill: Confessions of a B-Movie ... ... 27.000000\n", "9103 Darkness Visible: A Memoir of Madness ... 22.000000\n", "9104 The Sum of All Fears (Jack Ryan Universe, #7) ... 30.000000\n", "9105 Jimmy Corrigan, the Smartest Kid on Earth ... 26.000000\n", "9106 Contagious: Why Things Catch On ... 22.000000\n", "9107 The Faithful Spy (John Wells, #1) ... 29.000000\n", "9108 No Ordinary Time: Franklin and Eleanor Rooseve... ... 26.000000\n", "9109 Avatar: The Last Airbender (The Search, #1) ... 28.000000\n", "9110 L.A. Requiem (Elvis Cole, #8) ... 27.000000\n", "9111 Paris to the Moon ... 29.000000\n", "9112 Don't Waste Your Life ... 30.000000\n", "9113 Bones to Ashes (Temperance Brennan, #10) ... 29.000000\n", "9114 Soul Eater, Vol. 02 (Soul Eater, #2) ... 25.000000\n", "9115 Holy Cow: An Indian Adventure ... 26.000000\n", "9116 The Endurance: Shackleton's Legendary Antarcti... ... 22.000000\n", "9117 The Long Hard Road Out of Hell ... 29.000000\n", "9118 The $100 Startup: Reinvent the Way You Make a ... ... 22.000000\n", "9119 The First World War ... 23.000000\n", "9120 The Snowy Day ... 14.000000\n", "9121 How to Make Love Like a Porn Star: A Cautionar... ... 26.000000\n", "9122 The Miracle of Mindfulness: An Introduction to... ... 26.000000\n", "9123 Black Cherry Blues (Dave Robicheaux, #3) ... 21.000000\n", "9124 Ten Apples Up On Top! ... 15.000000\n", "9125 The Billionaire's Obsession ~ Simon (The Billi... ... 23.000000\n", "9126 The Imitation of Christ ... 24.000000\n", "9127 Cruel & Unusual (Kay Scarpetta, #4) ... 31.000000\n", "9128 Broken Prey (Lucas Davenport, #16) ... 28.000000\n", "9129 Ultimate Spider-Man, Volume 1: Power and Respo... ... 27.000000\n", "9130 Shine Not Burn (Shine Not Burn, #1) ... 23.000000\n", "9131 The Twelve Caesars ... 26.000000\n", "9132 A Brief History of Seven Killings ... 33.000000\n", "9133 Traveling Mercies: Some Thoughts on Faith ... 25.000000\n", "9134 Why We Get Fat: And What to Do About It ... 23.000000\n", "9135 L is for Lawless (Kinsey Millhone, #12) ... 29.000000\n", "9136 Phantom (Harry Hole, #9) ... 27.000000\n", "9137 Chill Factor ... 29.000000\n", "9138 The Center Cannot Hold: My Journey Through Mad... ... 21.000000\n", "9139 For Women Only: What You Need to Know about th... ... 22.000000\n", "9140 The Cross and the Switchblade ... 23.000000\n", "9141 Look Me in the Eye: My Life with Asperger's ... 23.000000\n", "9142 The Scarlatti Inheritance ... 31.000000\n", "9143 Drinking: A Love Story ... 21.000000\n", "9144 The Chamber ... 27.000000\n", "9145 Threat Vector (Jack Ryan Universe, #15) ... 30.000000\n", "9146 The Case for a Creator: A Journalist Investiga... ... 23.000000\n", "9147 The Longest Day ... 28.000000\n", "9148 Daytripper ... 24.000000\n", "9149 Sway: The Irresistible Pull of Irrational Beha... ... 18.000000\n", "9150 The Stone Monkey (Lincoln Rhyme, #4) ... 34.000000\n", "9151 Wolverine: Origin ... 22.000000\n", "9152 Stolen Innocence: My Story of Growing Up in a ... ... 22.000000\n", "9153 The Villa ... 33.000000\n", "9154 Preacher, Volume 5: Dixie Fried ... 22.000000\n", "9155 The Troubled Man (Kurt Wallander, #10) ... 26.000000\n", "9156 Wishful Drinking ... 21.000000\n", "9157 The Heart of a Woman ... 25.000000\n", "9158 Predator (Kay Scarpetta, #14) ... 30.000000\n", "9159 Pedagogy of the Oppressed ... 21.000000\n", "9160 Eat to Live: The Revolutionary Formula for Fas... ... 27.000000\n", "9161 The Odd Couple ... 22.000000\n", "9162 Bound by Honor (Born in Blood Mafia Chronicles... ... 21.000000\n", "9163 Jesus Land ... 24.000000\n", "9164 The Hard Thing About Hard Things: Building a B... ... 23.000000\n", "9165 Dark Star Safari: Overland from Cairo to Cape ... ... 23.000000\n", "9166 Hard Eight (Stephanie Plum, #8) ... 27.000000\n", "9167 Fish: A Proven Way to Boost Morale and Improve... ... 22.000000\n", "9168 The Mastery of Love: A Practical Guide to the ... ... 24.000000\n", "9169 Frida Kahlo: 1907-1954 Pain and Passion ... 12.000000\n", "9170 The Brass Verdict (Harry Bosch, #14; Mickey Ha... ... 27.000000\n", "9171 My Horizontal Life: A Collection of One-Night ... ... 23.000000\n", "9172 A Stranger Is Watching ... 23.000000\n", "9173 Double Time (Sinners on Tour, #5) ... 22.000000\n", "9174 The Gift of Therapy: An Open Letter to a New G... ... 17.000000\n", "9175 Life Together: The Classic Exploration of Chri... ... 23.000000\n", "9176 Tintin in the Land of the Soviets (Tintin #1) ... 24.000000\n", "9177 The Botany of Desire: A Plant's-Eye View of th... ... 22.000000\n", "9178 Spying in High Heels (High Heels, #1) ... 21.000000\n", "9179 The Matlock Paper ... 28.000000\n", "9180 Hateship, Friendship, Courtship, Loveship, Mar... ... 30.000000\n", "9181 The Postcard Killers ... 30.000000\n", "9182 Panserhjerte (Harry Hole, #8) ... 31.000000\n", "9183 The Ragamuffin Gospel: Good News for the Bedra... ... 29.000000\n", "9184 The Long Tail: Why the Future of Business is S... ... 22.000000\n", "9185 The First 90 Days, Updated and Expanded: Criti... ... 24.000000\n", "9186 Living Buddha, Living Christ ... 25.000000\n", "9187 A Man Named Dave (Dave Pelzer #3) ... 28.000000\n", "9188 Wethering the Storm (The Storm, #2) ... 21.000000\n", "9189 Axel (Corps Security, #1) ... 23.000000\n", "9190 Born a Crime: Stories From a South African Chi... ... 18.000000\n", "9191 Sex at Dawn: The Prehistoric Origins of Modern... ... 24.000000\n", "9192 Hornet's Nest (Andy Brazil, #1) ... 28.000000\n", "9193 Parts (Parts, #1) ... 11.000000\n", "9194 Shadow Prey (Lucas Davenport, #2) ... 31.000000\n", "9195 Unnatural Exposure (Kay Scarpetta, #8) ... 30.000000\n", "9196 EntreLeadership: 20 Years of Practical Busines... ... 23.000000\n", "9197 Elizabeth: The Struggle for the Throne ... 22.000000\n", "9198 The Bedwetter: Stories of Courage, Redemption,... ... 22.000000\n", "9199 It's Not About the Bike: My Journey Back to Life ... 27.000000\n", "9200 The 20th Century Art Book ... 15.000000\n", "9201 The Road to Serfdom ... 23.000000\n", "9202 5 Very Good Reasons to Punch a Dolphin in the ... ... 26.000000\n", "9203 Step on a Crack (Michael Bennett, #1) ... 33.000000\n", "9204 Midnight Bayou ... 32.000000\n", "9205 Confessions of an Economic Hit Man ... 25.000000\n", "9206 Sidetracked (Kurt Wallander, #5) ... 27.000000\n", "9207 Mornings on Horseback ... 22.000000\n", "9208 Scar Tissue ... 35.000000\n", "9209 City of Bones (Harry Bosch, #8; Harry Bosch Un... ... 28.000000\n", "9210 Giraffes Can't Dance ... 13.000000\n", "9211 Our Band Could Be Your Life: Scenes from the A... ... 18.000000\n", "9212 Stolen Prey (Lucas Davenport, #22) ... 28.000000\n", "9213 Emotional Intelligence 2.0 ... 21.000000\n", "9214 Maktub ... 16.000000\n", "9215 The Case for Christ ... 27.000000\n", "9216 The Vanished Man (Lincoln Rhyme, #5) ... 33.000000\n", "9217 The Baller: A Down and Dirty Football Novel ... 20.000000\n", "9218 Tears of Tess (Monsters in the Dark, #1) ... 19.000000\n", "9219 Grace (Eventually): Thoughts on Faith ... 23.000000\n", "9220 Gone (Michael Bennett, #6) ... 29.000000\n", "9221 Unbearable Lightness: A Story of Loss and Gain ... 24.000000\n", "9222 Batman: The Dark Knight Strikes Again (The Dar... ... 23.000000\n", "9223 The Post-American World ... 24.000000\n", "9224 My Stroke of Insight: A Brain Scientist's Pers... ... 20.000000\n", "9225 Plan B: Further Thoughts on Faith ... 25.000000\n", "9226 Hour Game (Sean King & Michelle Maxwell, #2) ... 32.000000\n", "9227 Colonel Roosevelt ... 23.000000\n", "9228 The Drop (Harry Bosch, #17; Harry Bosch Univer... ... 28.000000\n", "9229 On Becoming Baby Wise: Giving Your Infant the ... ... 24.000000\n", "9230 The Drama of the Gifted Child: The Search for ... ... 23.000000\n", "9231 Mind Prey (Lucas Davenport, #7) ... 30.000000\n", "9232 French Women Don't Get Fat: The Secret of Eati... ... 25.000000\n", "9233 Persepolis 2: The Story of a Return (Persepoli... ... 21.000000\n", "9234 Salt: A World History ... 25.000000\n", "9235 Color: A Natural History of the Palette ... 25.000000\n", "9236 The Cardinal of the Kremlin (Jack Ryan Univers... ... 26.000000\n", "9237 Tramp for the Lord ... 19.000000\n", "9238 No, David! ... 12.000000\n", "9239 Gonzo: The Life of Hunter S. Thompson ... 16.000000\n", "9240 John Adams ... 25.000000\n", "9241 Ten Big Ones (Stephanie Plum, #10) ... 27.000000\n", "9242 The Wretched of the Earth ... 22.000000\n", "9243 Sanctuary ... 30.000000\n", "9244 Not a Fan: Becoming a Completely Committed Fol... ... 27.000000\n", "9245 com نسيان ... 20.000000\n", "9246 The Year of Living Biblically: One Man's Humbl... ... 24.000000\n", "9247 A Bridge Too Far ... 23.000000\n", "9248 The Narrows (Harry Bosch, #10; Harry Bosch Uni... ... 29.000000\n", "9249 The Finkler Question ... 33.000000\n", "9250 How to Talk So Kids Will Listen & Listen So Ki... ... 27.000000\n", "9251 What's So Amazing About Grace? ... 27.000000\n", "9252 The New Jim Crow: Mass Incarceration in the Ag... ... 20.000000\n", "9253 Epilogue (The Dark Duet, #3) ... 24.000000\n", "9254 Stay Hungry Stay Foolish ... 17.000000\n", "9255 Blowback (Scot Harvath, #4) ... 27.000000\n", "9256 Wait for Me (Against All Odds, #1) ... 21.000000\n", "9257 Emotional Intelligence: Why It Can Matter More... ... 28.000000\n", "9258 Duck On A Bike ... 14.000000\n", "9259 The Cost of Discipleship ... 28.000000\n", "9260 The Seven Storey Mountain ... 24.000000\n", "9261 Grain Brain: The Surprising Truth about Wheat,... ... 25.000000\n", "9262 Chasing the Dime ... 26.000000\n", "9263 The Far Side Gallery 3 ... 25.000000\n", "9264 Hellblazer: Original Sins ... 20.000000\n", "9265 Angels Flight (Harry Bosch, #6; Harry Bosch Un... ... 26.000000\n", "9266 The Sex Lives of Cannibals: Adrift in the Equa... ... 25.000000\n", "9267 The Portable Atheist: Essential Readings for t... ... 27.000000\n", "9268 A Theory of Justice ... 16.000000\n", "9269 Time for Bed ... 12.000000\n", "9270 The Power of a Praying Wife ... 24.000000\n", "9271 The Dip: A Little Book That Teaches You When t... ... 23.000000\n", "9272 Sin City: Una Dura Despedida, #1 de 3 ... 11.702128\n", "9273 Drive: The Surprising Truth About What Motivat... ... 23.000000\n", "9274 A Single Shard ... 20.000000\n", "9275 One Step Behind (Kurt Wallander, #7) ... 27.000000\n", "9276 Hark! A Vagrant ... 20.000000\n", "9277 From Head to Toe ... 17.000000\n", "9278 The Five Dysfunctions of a Team: A Leadership ... ... 24.000000\n", "9279 The Fall of Berlin 1945 ... 22.000000\n", "9280 Mayflower: A Story of Courage, Community, and War ... 26.000000\n", "9281 Hide and Seek ... 30.000000\n", "9282 The Coffin Dancer (Lincoln Rhyme, #2) ... 32.000000\n", "9283 The Overlook (Harry Bosch, #13; Harry Bosch Un... ... 28.000000\n", "9284 Clapton: The Autobiography ... 27.000000\n", "9285 When Rabbit Howls ... 20.000000\n", "9286 Eyes of Prey (Lucas Davenport, #3) ... 30.000000\n", "9287 Seduced in the Dark (The Dark Duet, #2) ... 21.000000\n", "9288 Where Is God When It Hurts? ... 22.000000\n", "9289 My Friend Dahmer ... 16.000000\n", "9290 See You at the Top ... 20.000000\n", "9291 The 8th Habit: From Effectiveness to Greatness ... 25.000000\n", "9292 Body of Evidence (Kay Scarpetta, #2) ... 31.000000\n", "9293 Batman, Volume 2: The City of Owls ... 22.000000\n", "9294 Full Black (Scot Harvath, #10) ... 24.000000\n", "9295 Point of Origin (Kay Scarpetta, #9) ... 29.000000\n", "9296 The Pursuit of Holiness ... 27.000000\n", "9297 11th Hour (Women's Murder Club, #11) ... 28.000000\n", "9298 The Devil's Star (Harry Hole, #5) ... 29.000000\n", "9299 The Body Farm (Kay Scarpetta, #5) ... 32.000000\n", "9300 The Fifth Woman (Kurt Wallander, #6) ... 27.000000\n", "9301 Kaffir Boy: An Autobiography ... 22.000000\n", "9302 The Sacred Romance Drawing Closer To The Heart... ... 23.000000\n", "9303 The Dot ... 12.000000\n", "9304 Burn (Michael Bennett, #7) ... 25.000000\n", "9305 All That Remains (Kay Scarpetta, #3) ... 33.000000\n", "9306 Night Prey (Lucas Davenport, #6) ... 30.000000\n", "9307 Almost French: Love and a New Life in Paris ... 22.000000\n", "9308 Ask and It Is Given: Learning to Manifest Your... ... 22.000000\n", "9309 Act of Treason (Mitch Rapp, #9) ... 28.000000\n", "9310 Stalingrad: The Fateful Siege, 1942–1943 ... 23.000000\n", "9311 Memorial Day (Mitch Rapp, #7) ... 26.000000\n", "9312 History of Beauty ... 19.000000\n", "9313 The Tycoon's Revenge (Baby for the Billionaire... ... 22.000000\n", "9314 The First American: The Life and Times of Benj... ... 24.000000\n", "9315 Nudge: Improving Decisions About Health, Wealt... ... 20.000000\n", "9316 The Ipcress File (Secret File, #1) ... 27.000000\n", "9317 Rumpelstiltskin ... 14.000000\n", "9318 The Beatles Anthology ... 24.000000\n", "9319 First Things First ... 25.000000\n", "9320 باب الخروج: رسالة علي الÙ\n", "Ù... ... 24.000000\n", "9321 The Jesus I Never Knew ... 24.000000\n", "9322 Corrupt (Devil's Night, #1) ... 19.000000\n", "9323 The Snowman (Harry Hole, #7) ... 27.000000\n", "9324 Breaking the Spell: Religion as a Natural Phen... ... 20.000000\n", "9325 Preacher, Volume 7: Salvation ... 23.000000\n", "9326 The Quickie ... 29.000000\n", "9327 Last Man Standing ... 31.000000\n", "9328 Batman: Earth One, Volume 1 ... 26.000000\n", "9329 Hidden Riches ... 32.000000\n", "9330 Geisha, a Life ... 29.000000\n", "9331 Bare Bones (Temperance Brennan, #6) ... 29.000000\n", "9332 Searching for God Knows What ... 20.000000\n", "9333 The Sixth Man (Sean King & Michelle Maxwell, #5) ... 30.000000\n", "9334 Foreign Influence (Scot Harvath, #9) ... 25.000000\n", "9335 A Darkness More Than Night (Harry Bosch, #7; T... ... 29.000000\n", "9336 Secrets of the Vine: Breaking Through to Abund... ... 17.000000\n", "9337 Fooled by Randomness: The Hidden Role of Chanc... ... 23.000000\n", "9338 The Knowledge of the Holy ... 30.000000\n", "9339 American Lion: Andrew Jackson in the White House ... 23.000000\n", "9340 Justice, Volume 1 ... 18.000000\n", "9341 Attack on Titan: No Regrets, Volume 01 ... 29.000000\n", "9342 The One Minute Manager ... 25.000000\n", "9343 The Burden of Proof ... 30.000000\n", "9344 How the Irish Saved Civilization ... 28.000000\n", "9345 Let Me Call You Sweetheart ... 27.000000\n", "9346 NYPD Red 3 (NYPD Red, #3) ... 25.000000\n", "9347 Animal, Vegetable, Miracle: A Year of Food Life ... 25.000000\n", "9348 Happy Accidents: A Memoir ... 22.000000\n", "9349 Preacher, Volume 3: Proud Americans ... 20.000000\n", "9350 Founders at Work: Stories of Startups' Early Days ... 20.000000\n", "9351 Scott Pilgrim, Volume 5: Scott Pilgrim Vs. the... ... 27.000000\n", "9352 Breaking Free: Discover the Victory of Total S... ... 19.000000\n", "9353 Officer Buckle & Gloria ... 11.000000\n", "9354 Dead or Alive (Jack Ryan Universe, #13) ... 32.000000\n", "9355 Relish: My Life in the Kitchen ... 16.000000\n", "9356 Cross Justice (Alex Cross, #23) ... 28.000000\n", "9357 Letter to a Christian Nation ... 22.000000\n", "9358 A Wolf at the Table ... 26.000000\n", "9359 Catering to Nobody (A Goldy Bear Culinary Myst... ... 22.000000\n", "9360 Thank You, Mr. Falker ... 9.000000\n", "9361 Winter Prey (Lucas Davenport, #5) ... 29.000000\n", "9362 Preacher, Volume 9: Alamo ... 23.000000\n", "9363 Cleopatra: A Life ... 25.000000\n", "9364 D.Gray-man, Volume 01 ... 24.000000\n", "9365 Succulent Wild Woman ... 21.000000\n", "9366 Diagnostic and Statistical Manual of Mental Di... ... 17.000000\n", "9367 Start with Why: How Great Leaders Inspire Ever... ... 22.000000\n", "9368 Writing Down the Bones: Freeing the Writer Within ... 30.000000\n", "9369 On Writing Well: The Classic Guide to Writing ... ... 25.000000\n", "9370 The Gemini Contenders ... 29.000000\n", "9371 Preacher, Volume 8: All Hell's a-Coming ... 22.000000\n", "9372 Fullmetal Alchemist, Vol. 1 (Fullmetal Alchemi... ... 32.000000\n", "9373 The Prodigal God: Recovering the Heart of the ... ... 24.000000\n", "9374 Scott Pilgrim, Volume 6: Scott Pilgrim's Fines... ... 30.000000\n", "9375 Official Book Club Selection: A Memoir Accordi... ... 25.000000\n", "9376 Dreams from My Father: A Story of Race and Inh... ... 27.000000\n", "9377 Moon Over Manifest ... 21.000000\n", "9378 The Return of the Prodigal Son: A Story of Hom... ... 25.000000\n", "9379 Swimmy ... 15.000000\n", "9380 Perahu Kertas ... 19.000000\n", "9381 Paddy Clarke Ha Ha Ha ... 33.000000\n", "9382 Black Butler, Vol. 2 (Black Butler, #2) ... 29.000000\n", "9383 Locked On (Jack Ryan Universe, #14) ... 30.000000\n", "9384 Of Course I Love You...! Till I Find Someone B... ... 13.000000\n", "9385 The Seat of the Soul ... 21.000000\n", "9386 The Souls of Black Folk ... 26.000000\n", "9387 Feeling Good: The New Mood Therapy ... 24.000000\n", "9388 Cod: A Biography of the Fish that Changed the ... ... 22.000000\n", "9389 Until Lilly (Until, #3) ... 22.000000\n", "9390 Sickened: The Memoir of a Munchausen by Proxy ... ... 20.000000\n", "9391 ESV Study Bible ... 22.000000\n", "9392 Ashes to Ashes (Kovac and Liska, #1) ... 31.000000\n", "9393 Preacher, Volume 6: War in the Sun ... 21.000000\n", "9394 Freight Train ... 15.000000\n", "9395 Decision Points ... 23.000000\n", "9396 Boomerang: Travels in the New Third World ... 23.000000\n", "9397 Blue Like Jazz: Nonreligious Thoughts on Chris... ... 31.000000\n", "9398 Ox-Cart Man (Picture Puffin) ... 12.000000\n", "9399 How Should We Then Live? The Rise and Decline ... ... 21.000000\n", "9400 This Time Together: Laughter and Reflection ... 21.000000\n", "9401 Go Away, Big Green Monster! ... 14.000000\n", "9402 Washington: A Life ... 23.000000\n", "9403 Making Ideas Happen: Overcoming the Obstacles ... ... 19.000000\n", "9404 1/4 جراÙ\n", " ... 24.000000\n", "9405 From Potter's Field (Kay Scarpetta, #6) ... 28.000000\n", "9406 When Things Fall Apart: Heart Advice for Diffi... ... 22.000000\n", "9407 The Autobiography of Malcolm X ... 25.000000\n", "9408 Always Looking Up: The Adventures of an Incura... ... 26.000000\n", "9409 A. Lincoln ... 22.000000\n", "9410 Barrel Fever: Stories and Essays ... 26.000000\n", "9411 The Automatic Millionaire: A Powerful One-Step... ... 21.000000\n", "9412 The Beauty Myth ... 23.000000\n", "9413 On Becoming a Person: A Therapist's View of Ps... ... 16.000000\n", "9414 Practicing the Power of Now: Essential Teachin... ... 20.000000\n", "9415 To the Nines (Stephanie Plum, #9) ... 27.000000\n", "9416 Tsubasa: RESERVoir CHRoNiCLE, Vol. 01 ... 25.000000\n", "9417 Executive Orders (Jack Ryan Universe, #9) ... 28.000000\n", "9418 More Than a Carpenter ... 27.000000\n", "9419 The Closers (Harry Bosch, #11; Harry Bosch Uni... ... 29.000000\n", "9420 Influence: The Psychology of Persuasion ... 19.000000\n", "9421 The 8th Confession (Women's Murder Club, #8) ... 30.000000\n", "9422 Blue exorcist, Tome 2 ... 26.000000\n", "9423 Means of Ascent (The Years of Lyndon Johnson, #2) ... 23.000000\n", "9424 Truman ... 24.000000\n", "9425 Breaking Night: A Memoir of Forgiveness, Survi... ... 21.000000\n", "9426 Made to Stick: Why Some Ideas Survive and Othe... ... 21.000000\n", "9427 This is Not My Hat ... 11.000000\n", "9428 Wheat Belly: Lose the Wheat, Lose the Weight, ... ... 25.000000\n", "9429 Che Guevara: A Revolutionary Life ... 25.000000\n", "9430 Unlimited Power : The New Science Of Personal ... ... 20.000000\n", "9431 The Empty Chair (Lincoln Rhyme, #3) ... 32.000000\n", "9432 Swimsuit ... 28.000000\n", "9433 Batman: The Black Mirror ... 24.000000\n", "9434 Jesus the Christ ... 27.000000\n", "9435 The Sweet Life in Paris: Delicious Adventures ... ... 25.000000\n", "9436 Batman: Arkham Asylum - A Serious House on Ser... ... 25.000000\n", "9437 Postmortem (Kay Scarpetta, #1) ... 31.000000\n", "9438 The Way of Zen ... 26.000000\n", "9439 Financial Peace Revisited ... 24.000000\n", "9440 The Medium is the Massage ... 16.000000\n", "9441 The Omnivore's Dilemma: A Natural History of F... ... 26.000000\n", "9442 Hellsing, Vol. 01 (Hellsing, #1) ... 23.000000\n", "9443 2nd Chance (Women's Murder Club, #2) ... 31.000000\n", "9444 Embroideries ... 17.000000\n", "9445 State of the Union (Scot Harvath, #3) ... 26.000000\n", "9446 Unbeautifully (Undeniable, #2) ... 19.000000\n", "9447 The Creative Habit: Learn It and Use It for Life ... 23.000000\n", "9448 قÙ\n", "ر على سÙ\n", "رقند ... 22.000000\n", "9449 Facing Your Giants: A David and Goliath Story ... ... 23.000000\n", "9450 On Ugliness ... 21.000000\n", "9451 Ayat-Ayat Cinta ... 16.000000\n", "9452 Frida: A Biography of Frida Kahlo ... 22.000000\n", "9453 Dragon Ball, Vol. 1: The Monkey King (Dragon B... ... 25.000000\n", "9454 Rock the Heart (Black Falcon, #1) ... 25.000000\n", "9455 Lincoln ... 23.000000\n", "9456 Anatomy for the Artist ... 8.000000\n", "9457 Anatomy for the Artist ... 8.000000\n", "9458 Citizen Soldiers: The U. S. Army from the Norm... ... 19.000000\n", "9459 Peace Is Every Step: The Path of Mindfulness i... ... 24.000000\n", "9460 Psycho-Cybernetics, A New Way to Get More Livi... ... 20.000000\n", "9461 Linchpin: Are You Indispensable? ... 22.000000\n", "9462 Batman: Knightfall, Vol. 1: Broken Bat ... 21.000000\n", "9463 The Shock Doctrine: The Rise of Disaster Capit... ... 21.000000\n", "9464 Private #1 Suspect (Private, #2) ... 27.000000\n", "9465 A Sick Day for Amos McGee ... 9.000000\n", "9466 Black Notice (Kay Scarpetta, #10) ... 29.000000\n", "9467 Philosophical Investigations ... 20.000000\n", "9468 Pete the Cat: I Love My White Shoes ... 11.000000\n", "9469 Sin City, Vol. 1: The Hard Goodbye (Sin City, #1) ... 27.000000\n", "9470 Batman and Son ... 25.000000\n", "9471 Tokyo Ghoul, tome 1 (Tokyo Ghoul, #1) ... 27.000000\n", "9472 أنت لي ... 22.000000\n", "9473 Liar's Poker ... 26.000000\n", "9474 ساق الباÙ\n", "بو ... 27.000000\n", "9475 The Lives of the Artists ... 19.000000\n", "9476 Free: The Future of a Radical Price ... 20.000000\n", "9477 April 1865: The Month That Saved America ... 21.000000\n", "9478 Jar City (Inspector Erlendur, #3) ... 26.000000\n", "9479 Discipline and Punish: The Birth of the Prison ... 20.000000\n", "9480 A History of God: The 4,000-Year Quest of Juda... ... 26.000000\n", "9481 Black Butler, Vol. 1 (Black Butler, #1) ... 29.000000\n", "9482 The Society of the Spectacle ... 18.000000\n", "9483 The Love Dare ... 30.000000\n", "9484 The Personal MBA: Master the Art of Business ... 25.000000\n", "9485 Cause of Death (Kay Scarpetta, #7) ... 29.000000\n", "9486 Boy Meets Girl: Say Hello to Courtship ... 25.000000\n", "9487 Knuffle Bunny: A Cautionary Tale (Knuffle Bunn... ... 15.000000\n", "9488 Birthright ... 30.000000\n", "9489 The Heroin Diaries: A Year In The Life Of A Sh... ... 25.000000\n", "9490 I Kissed Dating Goodbye ... 21.000000\n", "9491 Kambing Jantan: Sebuah Catatan Harian Pelajar ... ... 13.000000\n", "9492 The Mighty Storm (The Storm, #1) ... 20.000000\n", "9493 Invisible Prey (Lucas Davenport, #17) ... 28.000000\n", "9494 Negeri 5 Menara (Negeri 5 Menara, #1) ... 19.000000\n", "9495 Blue Smoke ... 29.000000\n", "9496 Batman & Robin: Batman Reborn ... 21.000000\n", "9497 What's the Matter with Kansas? How Conservativ... ... 14.000000\n", "9498 I Will Teach You To Be Rich ... 22.000000\n", "9499 Velvet Elvis: Repainting the Christian Faith ... 25.000000\n", "9500 The Rise of Theodore Roosevelt ... 25.000000\n", "9501 Peace Child: An Unforgettable Story of Primiti... ... 16.000000\n", "9502 Press Here ... 14.000000\n", "9503 I Am Nujood, Age 10 and Divorced ... 22.000000\n", "9504 10th Anniversary (Women's Murder Club, #10) ... 28.000000\n", "9505 Through Gates of Splendor ... 20.000000\n", "9506 Batman: No Man's Land, Vol. 1 ... 12.000000\n", "9507 Sex God: Exploring the Endless Connections bet... ... 22.000000\n", "9508 The Snowball: Warren Buffett and the Business ... ... 25.000000\n", "9509 Unattainable (Undeniable, #3) ... 17.000000\n", "9510 The End of Faith: Religion, Terror, and the Fu... ... 23.000000\n", "9511 Dude, Where's My Country? ... 22.000000\n", "9512 Lifeguard ... 31.000000\n", "9513 India After Gandhi: The History of the World's... ... 25.000000\n", "9514 Extra Yarn (E. B. White Read-Aloud Award. Pict... ... 14.000000\n", "9515 You Can Heal Your Life ... 29.000000\n", "9516 When the Bough Breaks (Alex Delaware, #1) ... 26.000000\n", "9517 Noises Off ... 22.000000\n", "9518 Theodore Rex ... 22.000000\n", "9519 Edensor (Tetralogi Laskar Pelangi, #3) ... 18.000000\n", "9520 Good to Great: Why Some Companies Make the Lea... ... 27.000000\n", "9521 صانع الظلاÙ\n", " ... 23.000000\n", "9522 The Story of Art ... 24.000000\n", "9523 Unorthodox: The Scandalous Rejection of My Has... ... 16.000000\n", "9524 Madeline's Rescue ... 19.000000\n", "9525 Why Mosquitoes Buzz in People's Ears ... 12.000000\n", "9526 The Lean Startup: How Today's Entrepreneurs Us... ... 24.000000\n", "9527 The Path to Power (The Years of Lyndon Johnson... ... 25.000000\n", "9528 Going Rogue: An American Life ... 23.000000\n", "9529 Diary of a Wimpy Kid: #1-4 ... 15.000000\n", "9530 The Lost Painting ... 25.000000\n", "9531 1919 ... 24.000000\n", "9532 sTORI Telling ... 20.000000\n", "9533 Debt of Honor (Jack Ryan Universe, #8) ... 27.000000\n", "9534 The Man Who Smiled (Kurt Wallander, #4) ... 25.000000\n", "9535 Firewall (Wallander, #8) ... 25.000000\n", "9536 أولاد حارتنا ... 10.000000\n", "9537 Stitches ... 19.000000\n", "9538 Knowing God ... 28.000000\n", "9539 Vicious (Sinners of Saint, #1) ... 18.000000\n", "9540 Iron Man: Extremis ... 21.000000\n", "9541 Stand Tall, Molly Lou Melon ... 11.000000\n", "9542 Kira-Kira ... 21.000000\n", "9543 Judge & Jury ... 28.000000\n", "9544 Winning ... 24.000000\n", "9545 Sin City, Vol. 3: The Big Fat Kill (Sin City, #3) ... 29.000000\n", "9546 هيبتا ... 24.000000\n", "9547 Candy Girl: A Year in the Life of an Unlikely ... ... 22.000000\n", "9548 Wonderful Tonight ... 22.000000\n", "9549 Merry Christmas, Alex Cross (Alex Cross, #19) ... 28.000000\n", "9550 Black Butler, Vol. 3 (Black Butler, #3) ... 27.000000\n", "9551 Why Nations Fail: The Origins of Power, Prospe... ... 22.000000\n", "9552 Don't Make Me Think: A Common Sense Approach t... ... 16.000000\n", "9553 An Unquiet Mind: A Memoir of Moods and Madness ... 24.000000\n", "9554 Born Standing Up: A Comic's Life ... 22.000000\n", "9555 Does the Noise in My Head Bother You? ... 23.000000\n", "9556 Batman: Dark Victory ... 27.000000\n", "9557 To Sell Is Human: The Surprising Truth About M... ... 20.000000\n", "9558 The Pioneer Woman Cooks: Recipes from an Accid... ... 22.000000\n", "9559 Ranma ½, Vol. 1 (Ranma ½ (US 2nd), #1) ... 24.000000\n", "9560 Delivering Happiness: A Path to Profits, Passi... ... 20.000000\n", "9561 Sin City, Vol. 2: A Dame to Kill For (Sin City... ... 25.000000\n", "9562 The White Lioness (Kurt Wallander, #3) ... 24.000000\n", "9563 Fairy Tail, Vol. 1 (Fairy Tail, #1) ... 28.000000\n", "9564 Sacred Contracts: Awakening Your Divine Potential ... 20.000000\n", "9565 شكلها باظت ... 14.000000\n", "9566 Pandora Hearts 1å·» ... 22.000000\n", "9567 Capital in the Twenty-First Century ... 23.000000\n", "9568 Better Homes and Gardens New Cook Book ... 23.000000\n", "9569 Prayers for Rain (Kenzie & Gennaro, #5) ... 24.000000\n", "9570 Kitten's First Full Moon ... 12.000000\n", "9571 Batwoman: Elegy ... 20.000000\n", "9572 300 ... 26.000000\n", "9573 Lon Po Po: A Red-Riding Hood Story from China ... 12.000000\n", "9574 4th of July (Women's Murder Club, #4) ... 30.000000\n", "9575 The Teeth of the Tiger (Jack Ryan Universe, #12) ... 29.000000\n", "9576 Knuffle Bunny Too: A Case of Mistaken Identity... ... 12.000000\n", "9577 في قلبي أنثى عبرية ... 26.000000\n", "9578 His Needs, Her Needs: Building an Affair-Proof... ... 20.000000\n", "9579 The Autobiography of Martin Luther King, Jr. ... 20.000000\n", "9580 Fun Home: A Family Tragicomic ... 18.000000\n", "9581 Barefoot in Paris ... 10.000000\n", "9582 Yes, Chef ... 22.000000\n", "9583 Manga Classics: Les Misérables ... 25.000000\n", "9584 Life ... 27.000000\n", "9585 Trump: The Art of the Deal ... 17.000000\n", "9586 Batman: A Death in the Family ... 24.000000\n", "9587 Batman: Hush, Vol. 1 ... 17.000000\n", "9588 Blood Work (Harry Bosch Universe, #8; Terry Mc... ... 28.000000\n", "9589 I Like You: Hospitality Under the Influence ... 22.000000\n", "9590 Deadman Wonderland, Volume 1 (Deadman Wonderla... ... 25.000000\n", "9591 I, Michael Bennett (Michael Bennett, #5) ... 26.000000\n", "9592 The Reason for God: Belief in an Age of Skepti... ... 26.000000\n", "9593 Batman: Hush, Vol. 2 ... 23.000000\n", "9594 3rd Degree (Women's Murder Club, #3) ... 30.000000\n", "9595 The Hidden Messages in Water ... 16.000000\n", "9596 The Mambo Kings Play Songs of Love ... 25.000000\n", "9597 Battle Cry of Freedom ... 27.000000\n", "9598 He Chose the Nails ... 18.000000\n", "9599 Storm Prey (Lucas Davenport, #20) ... 26.000000\n", "9600 Counterfeit Gods: The Empty Promises of Money,... ... 19.000000\n", "9601 Believing Christ: The Parable of the Bicycle a... ... 23.000000\n", "9602 Leading Change ... 23.000000\n", "9603 Wherever You Go, There You Are: Mindfulness Me... ... 26.000000\n", "9604 xxxHolic, Vol. 1 (xxxHOLiC, #1) ... 25.000000\n", "9605 The 80/20 Principle: The Secret to Achieving M... ... 20.000000\n", "9606 Cash ... 23.000000\n", "9607 Tender at the Bone: Growing Up at the Table ... 24.000000\n", "9608 Genghis Khan and the Making of the Modern World ... 23.000000\n", "9609 All Marketers Are Liars: The Power of Telling ... ... 22.000000\n", "9610 Lies Women Believe: And the Truth that Sets Th... ... 20.000000\n", "9611 The Magic Mirror of M.C. Escher ... 13.000000\n", "9612 Master of the Senate (The Years of Lyndon John... ... 24.000000\n", "9613 Batman: The Man Who Laughs ... 22.000000\n", "9614 Echo Park (Harry Bosch, #12; Harry Bosch Unive... ... 28.000000\n", "9615 Kill Alex Cross (Alex Cross #18) ... 26.000000\n", "9616 The Purpose Driven Life: What on Earth Am I He... ... 26.000000\n", "9617 Tortured for Christ N/E ... 27.000000\n", "9618 زغازيغ ... 24.000000\n", "9619 Preacher, Volume 1: Gone to Texas ... 23.000000\n", "9620 The 22 Immutable Laws of Marketing: Violate Th... ... 14.000000\n", "9621 The 5th Horseman (Women's Murder Club, #5) ... 30.000000\n", "9622 Beach Road ... 28.000000\n", "9623 الأسود يليق بك ... 24.000000\n", "9624 The 21 Irrefutable Laws of Leadership: Follow ... ... 23.000000\n", "9625 Creative Visualization: Use the Power of Your ... ... 21.000000\n", "9626 The China Study: The Most Comprehensive Study ... ... 25.000000\n", "9627 Conversations With God: An Uncommon Dialogue, ... ... 20.000000\n", "9628 Bleach, Volume 03 ... 25.000000\n", "9629 Salt Sugar Fat: How the Food Giants Hooked Us ... 24.000000\n", "9630 The Power of a Praying Woman ... 18.000000\n", "9631 Egomaniac ... 15.000000\n", "9632 Angels Fall ... 28.000000\n", "9633 First, Break All the Rules: What the World's G... ... 26.000000\n", "9634 Never Eat Alone: And Other Secrets to Success,... ... 23.000000\n", "9635 Understanding Comics: The Invisible Art ... 22.000000\n", "9636 The Practice of the Presence of God ... 25.000000\n", "9637 Conversations With God: An Uncommon Dialogue, ... ... 15.000000\n", "9638 Influencer: The Power to Change Anything ... 22.000000\n", "9639 The Ascent of Money: A Financial History of th... ... 24.000000\n", "9640 Kick-Ass (Kick-Ass, #1) ... 24.000000\n", "9641 Deceptively Delicious: Simple Secrets to Get Y... ... 16.000000\n", "9642 The Batman Chronicles, Vol. 1 ... 18.000000\n", "9643 Garlic and Sapphires: The Secret Life of a Cri... ... 21.000000\n", "9644 The Law of Attraction: The Basics of the Teach... ... 17.000000\n", "9645 His Excellency: George Washington ... 20.000000\n", "9646 Chobits, Vol. 1 ... 25.000000\n", "9647 What Got You Here Won't Get You There: How Suc... ... 20.000000\n", "9648 Stolen Lives: Twenty Years in a Desert Jail ... 22.000000\n", "9649 Having a Mary Heart in a Martha World: Finding... ... 21.000000\n", "9650 Brunelleschi's Dome: How a Renaissance Genius ... ... 18.000000\n", "9651 Phenomenology of Spirit ... 18.000000\n", "9652 Can't We Talk about Something More Pleasant? ... 13.000000\n", "9653 تاكسي: حواديت الÙ\n", "شاوير ... 24.000000\n", "9654 7th Heaven (Women's Murder Club, #7) ... 29.000000\n", "9655 I, Alex Cross (Alex Cross, #16) ... 29.000000\n", "9656 Kamisama Kiss, Vol. 1 ... 22.000000\n", "9657 Developing the Leader Within You ... 23.000000\n", "9658 Along Came a Spider (Alex Cross, #1) ... 30.000000\n", "9659 Cardcaptor Sakura, Vol. 1 (Cardcaptor Sakura, #1) ... 23.000000\n", "9660 Losing My Virginity: How I've Survived, Had Fu... ... 24.000000\n", "9661 Michelangelo and the Pope's Ceiling ... 22.000000\n", "9662 Having Our Say: The Delany Sisters' First 100 ... ... 16.000000\n", "9663 Try Me (One Night with Sole Regret, #1) ... 18.000000\n", "9664 Final Jeopardy (Alexandra Cooper, #1) ... 24.000000\n", "9665 MeruPuri, Vol. 1 (MeruPuri, #1) ... 28.000000\n", "9666 Naruto, Vol. 11: Impassioned Efforts (Naruto, ... ... 23.000000\n", "9667 Shugo Chara!, Vol. 1: Who Do You Want to Be? (... ... 23.000000\n", "9668 Passion and Purity: Learning to Bring Your Lov... ... 21.000000\n", "9669 Sin City, Vol. 4: That Yellow Bastard (Sin Cit... ... 27.000000\n", "9670 Bleach, Volume 15 ... 23.000000\n", "9671 ڤيرتيجو ... 23.000000\n", "9672 Learned Optimism: How to Change Your Mind and ... ... 20.000000\n", "9673 My Utmost for His Highest ... 22.000000\n", "9674 الطنطورية ... 25.000000\n", "9675 Streams in the Desert ... 17.000000\n", "9676 Alex Cross, Run (Alex Cross, #20) ... 28.000000\n", "9677 شيكاجو ... 23.000000\n", "9678 The Prayer of Jabez: Breaking Through to the ... ... 19.000000\n", "9679 رجال في الشÙ\n", "س ... 24.000000\n", "9680 The Art Book ... 19.000000\n", "9681 Vampire Knight, Vol. 9 ... 23.000000\n", "9682 Cradle to Cradle: Remaking the Way We Make Things ... 18.000000\n", "9683 Great by Choice: Uncertainty, Chaos, and Luck-... ... 21.000000\n", "9684 Four Blind Mice (Alex Cross, #8) ... 30.000000\n", "9685 Desiring God: Meditations of a Christian Hedonist ... 27.000000\n", "9686 Ghost Wars: The Secret History of the CIA, Afg... ... 18.000000\n", "9687 شاب كشك في رحلة البحث عن ا... ... 17.000000\n", "9688 Rachael Ray 365: No Repeats: A Year of Delicio... ... 18.000000\n", "9689 Care of the Soul: A Guide for Cultivating Dept... ... 17.000000\n", "9690 Death Note, Vol. 2: Confluence (Death Note, #2) ... 25.000000\n", "9691 Julie and Julia: 365 Days, 524 Recipes, 1 Tiny... ... 26.000000\n", "9692 Infidel ... 25.000000\n", "9693 Preach My Gospel: A Guide To Missionary Service ... 16.000000\n", "9694 تراب الÙ\n", "اس ... 22.000000\n", "9695 American Sphinx: The Character of Thomas Jeffe... ... 22.000000\n", "9696 Shaman King, Vol. 1: A Shaman in Tokyo ... 19.000000\n", "9697 هشت کتاب ... 16.000000\n", "9698 I Am Ozzy ... 22.000000\n", "9699 The Peacegiver: How Christ Offers to Heal Our ... ... 23.000000\n", "9700 Misquoting Jesus: The Story Behind Who Changed... ... 23.000000\n", "9701 Naruto, Vol. 01: The Tests of the Ninja (Narut... ... 26.000000\n", "9702 A Chair for My Mother ... 11.000000\n", "9703 The Lion and the Mouse ... 10.000000\n", "9704 Ina May's Guide to Childbirth ... 18.000000\n", "9705 واحة الغروب ... 22.000000\n", "9706 Soul Eater, Vol. 01 (Soul Eater, #1) ... 26.000000\n", "9707 The Story of Ruby Bridges ... 10.000000\n", "9708 NARUTO -ナルト- 巻ノ四十三 ... 21.000000\n", "9709 Mary, Mary (Alex Cross, #11) ... 28.000000\n", "9710 Animal-Speak: The Spiritual & Magical Powers o... ... 17.000000\n", "9711 Cardcaptor Sakura: Master of the Clow, Vol. 1 ... ... 25.000000\n", "9712 Fushigi Yûgi: The Mysterious Play, Vol. 1: Pr... ... 24.000000\n", "9713 Alex Cross's Trial (Alex Cross, #15) ... 27.000000\n", "9714 Kiss the Girls (Alex Cross, #2) ... 29.000000\n", "9715 Death Note, Vol. 3: Hard Run (Death Note, #3) ... 26.000000\n", "9716 No One Here Gets Out Alive ... 24.000000\n", "9717 Pyongyang: A Journey in North Korea ... 15.000000\n", "9718 The Happiest Baby on the Block: The New Way to... ... 19.000000\n", "9719 A Course in Miracles ... 19.000000\n", "9720 Seven Days in the Art World ... 21.000000\n", "9721 Healthy Sleep Habits, Happy Child ... 20.000000\n", "9722 Cross Fire (Alex Cross, #17) ... 25.000000\n", "9723 ذاكرة الجسد ... 26.000000\n", "9724 The 9th Judgment (Women's Murder Club, #9) ... 28.000000\n", "9725 Alice in the Country of Hearts, Vol. 01 (Alice... ... 23.000000\n", "9726 The 6th Target (Women's Murder Club, #6) ... 30.000000\n", "9727 The Goal: A Process of Ongoing Improvement ... 24.000000\n", "9728 Black Cat, Volume 01 ... 23.000000\n", "9729 Blue Exorcist, Vol. 1 (Blue Exorcist, #1) ... 24.000000\n", "9730 Betty Crocker's Cookbook ... 19.000000\n", "9731 Purple Cow: Transform Your Business by Being R... ... 20.000000\n", "9732 ثلاثية غرناطة ... 27.000000\n", "9733 If You Want to Walk on Water, You've Got to Ge... ... 19.000000\n", "9734 A Random Walk Down Wall Street ... 19.000000\n", "9735 Death Note, Vol. 1: Boredom (Death Note, #1) ... 23.000000\n", "9736 The History of Sexuality, Volume 1: An Introdu... ... 17.000000\n", "9737 Owl Moon ... 11.000000\n", "9738 The Nasty Bits: Collected Varietal Cuts, Usabl... ... 20.000000\n", "9739 Kitchen Princess, Vol. 01 (Kitchen Princess, #1) ... 23.000000\n", "9740 How I Raised Myself from Failure to Success in... ... 15.000000\n", "9741 فوضى الحواس ... 24.000000\n", "9742 The Holiness of God ... 22.000000\n", "9743 Cross (Alex Cross, #12) ... 32.000000\n", "9744 The Three Pigs ... 12.000000\n", "9745 الجزار ... 21.000000\n", "9746 Wild at Heart: Discovering the Secret of a Man... ... 26.000000\n", "9747 ظل الأفعى ... 21.000000\n", "9748 Full Moon o Sagashite, Vol. 1 ... 24.000000\n", "9749 Cooked: A Natural History of Transformation ... 21.000000\n", "9750 Vampire Knight, Vol. 3 (Vampire Knight, #3) ... 22.000000\n", "9751 Case Closed, Vol. 1 ... 21.000000\n", "9752 Fruits Basket, Vol. 1 ... 26.000000\n", "9753 بضع ساعات في يوÙ\n", " Ù\n", "ا ... 19.000000\n", "9754 Hunter x Hunter, Vol. 01 (Hunter x Hunter, #1) ... 22.000000\n", "9755 Fruits Basket, Vol. 15 ... 25.000000\n", "9756 Anatomy of the Spirit: The Seven Stages of Pow... ... 21.000000\n", "9757 Silence of the Grave (Inspector Erlendur #4) ... 24.000000\n", "9758 رأيت راÙ\n", " الله ... 19.000000\n", "9759 In Defense of Food: An Eater's Manifesto ... 22.000000\n", "9760 The Miracle of Forgiveness ... 19.000000\n", "9761 The Joker ... 24.000000\n", "9762 Too Big to Fail: The Inside Story of How Wall ... ... 24.000000\n", "9763 Tick Tock (Michael Bennett, #4) ... 27.000000\n", "9764 The Diary of Frida Kahlo: An Intimate Self-Por... ... 14.000000\n", "9765 Celebration of Discipline: The Path to Spiritu... ... 27.000000\n", "9766 Naruto, Vol. 05: Exam Hell (Naruto, #5) ... 21.000000\n", "9767 The Pioneer Woman Cooks: Food from My Frontier ... 16.000000\n", "9768 Miles: The Autobiography ... 19.000000\n", "9769 السنجة ... 22.000000\n", "9770 Fast Food Nation: The Dark Side of the All-Ame... ... 22.000000\n", "9771 Tribes: We Need You to Lead Us ... 18.000000\n", "9772 Awakening the Buddha Within: Tibetan Wisdom fo... ... 18.000000\n", "9773 طه الغريب ... 18.000000\n", "9774 Sailor Moon, #1 (Sailor Moon, #1) ... 28.000000\n", "9775 The Judgment of Paris: The Revolutionary Decad... ... 23.000000\n", "9776 Presentation Zen: Simple Ideas on Presentation... ... 14.000000\n", "9777 The Design of Everyday Things ... 23.000000\n", "9778 Give and Take: A Revolutionary Approach to Suc... ... 17.000000\n", "9779 عائد إلى حيفا ... 22.000000\n", "9780 Barbarians at the Gate: The Fall of RJR Nabisco ... 20.000000\n", "9781 Principle-Centered Leadership ... 22.000000\n", "9782 Ù\n", "خطوطة بن إسحاق: Ù\n", "دينة الÙ... ... 21.000000\n", "9783 Bleach, Volume 01 ... 24.000000\n", "9784 نادي السيارات ... 20.000000\n", "9785 Jamie at Home: Cook Your Way to the Good Life ... 18.000000\n", "9786 The Smartest Guys in the Room: The Amazing Ris... ... 17.000000\n", "9787 Vampire Knight, Vol. 2 (Vampire Knight, #2) ... 20.000000\n", "9788 28 حرف ... 18.000000\n", "9789 Fruits Basket, Vol. 3 ... 26.000000\n", "9790 Now, Discover Your Strengths ... 20.000000\n", "9791 InuYasha: Turning Back Time (InuYasha, #1) ... 23.000000\n", "9792 Fruits Basket, Vol. 2 ... 26.000000\n", "9793 The Taste of Home Cookbook ... 13.000000\n", "9794 حوار Ù\n", "ع صديقي الÙ\n", "لحد ... 20.000000\n", "9795 Art and Fear: Observations on the Perils (and ... ... 28.000000\n", "9796 Empire of the Summer Moon: Quanah Parker and t... ... 21.000000\n", "9797 The Joy of Cooking ... 21.000000\n", "9798 Yu Yu Hakusho, Volume 1: Goodbye, Material Wor... ... 20.000000\n", "9799 Tokyo Mew Mew, Vol. 1 (Tokyo Mew Mew, #1) ... 23.000000\n", "9800 Fruits Basket, Vol. 4 ... 25.000000\n", "9801 Run for Your Life (Michael Bennett, #2) ... 30.000000\n", "9802 On Food and Cooking: The Science and Lore of t... ... 21.000000\n", "9803 Too Busy Not to Pray: Slowing Down to Be With God ... 19.000000\n", "9804 Death Note, Vol. 7: Zero (Death Note, #7) ... 24.000000\n", "9805 A Woman After God's Own Heart ... 18.000000\n", "9806 Van Gogh: The Life ... 17.000000\n", "9807 True History of the Kelly Gang ... 28.000000\n", "9808 The Effective Executive: The Definitive Guide ... ... 19.000000\n", "9809 Gakuen Alice, Vol. 01 (Gakuen Alice, #1) ... 22.000000\n", "9810 Worst Case (Michael Bennett, #3) ... 27.000000\n", "9811 Maid-sama! Vol. 02 (Maid-sama! #2) ... 21.000000\n", "9812 Fruits Basket, Vol. 14 ... 23.000000\n", "9813 Rich Dad's Cashflow Quadrant: Rich Dad's Guide... ... 22.000000\n", "9814 D.N.Angel, Vol. 1 (D.N.Angel, #1) ... 22.000000\n", "9815 Rurouni Kenshin, Vol. 1: Meiji Swordsman Roman... ... 22.000000\n", "9816 Hetalia: Axis Powers, Vol. 1 (Hetalia: Axis Po... ... 22.000000\n", "9817 A Homemade Life: Stories and Recipes from My K... ... 19.000000\n", "9818 One Piece, Volume 01: Romance Dawn (One Piece,... ... 25.000000\n", "9819 Yotsuba&!, Vol. 01 (Yotsuba&! #1) ... 25.000000\n", "9820 Cook with Jamie ... 19.000000\n", "9821 Cross Country (Alex Cross, #14) ... 28.000000\n", "9822 Death Note, Vol. 5: Whiteout (Death Note, #5) ... 24.000000\n", "9823 Food Rules: An Eater's Manual ... 17.000000\n", "9824 Vampire Knight, Vol. 4 (Vampire Knight, #4) ... 21.000000\n", "9825 Death Note, Vol. 4: Love (Death Note, #4) ... 25.000000\n", "9826 Pop Goes the Weasel (Alex Cross, #5) ... 28.000000\n", "9827 Hammer of the Gods ... 16.000000\n", "9828 Ù\n", "حال ... 22.000000\n", "9829 Epileptic ... 20.000000\n", "9830 The Art of the Start: The Time-Tested, Battle-... ... 22.000000\n", "9831 Black Elk Speaks: Being the Life Story of a Ho... ... 20.000000\n", "9832 عابر سرير ... 23.000000\n", "9833 London Bridges (Alex Cross, #10) ... 30.000000\n", "9834 Death Note, Vol. 6: Give-and-Take (Death Note,... ... 23.000000\n", "9835 Mythologies ... 20.000000\n", "9836 Vampire Knight, Vol. 1 (Vampire Knight, #1) ... 23.000000\n", "9837 ليتها تقرأ ... 19.000000\n", "9838 Jack: Straight from the Gut ... 15.000000\n", "9839 Cunt: A Declaration of Independence ... 20.000000\n", "9840 Double Cross (Alex Cross, #13) ... 28.000000\n", "9841 The Intelligent Investor (Collins Business Ess... ... 21.000000\n", "9842 2 ضباط ... 17.000000\n", "9843 Camera Lucida: Reflections on Photography ... 21.000000\n", "9844 Barefoot Contessa Back to Basics ... 14.000000\n", "9845 Henry's Freedom Box: A True Story from the Und... ... 4.000000\n", "9846 The Innovator's Dilemma: The Revolutionary Boo... ... 21.000000\n", "9847 The End of Poverty ... 16.000000\n", "9848 Systematic Theology: An Introduction to Biblic... ... 19.000000\n", "9849 Death Note, Vol. 8: Target (Death Note, #8) ... 24.000000\n", "9850 Millennium Snow, Vol. 1 ... 21.000000\n", "9851 Heal Your Body: The Mental Causes for Physical... ... 14.000000\n", "9852 أحببتك أكثر Ù\n", "Ù\n", "ا ينبغي ... 23.000000\n", "9853 \"حكايات فرغلي الÙ\n", "ستكاوي \"Ø... ... 16.000000\n", "9854 Nana, Vol. 1 (Nana, #1) ... 25.000000\n", "9855 Chibi Vampire, Vol. 01 ... 20.000000\n", "9856 The Artist's Way: A Spiritual Path to Higher C... ... 22.000000\n", "9857 Fruits Basket, Vol. 7 ... 22.000000\n", "9858 Fix-It and Forget-It Cookbook: Feasting with Y... ... 12.000000\n", "9859 The Relatives Came ... 15.000000\n", "9860 Blue Ocean Strategy: How To Create Uncontested... ... 23.000000\n", "9861 Drawing from Memory ... 6.000000\n", "9862 Figure Drawing for All It's Worth (How to draw... ... 11.000000\n", "9863 Positioning: The Battle for Your Mind: How to ... ... 17.000000\n", "9864 بيكاسو وستاربكس ... 21.000000\n", "9865 One Piece, Volume 38: Rocketman!! (One Piece, ... ... 16.000000\n", "9866 Soul on Ice ... 19.000000\n", "9867 Malcolm X: A Life of Reinvention ... 24.000000\n", "9868 Bakuman, Band 1: Traum und Realität ... 23.000000\n", "9869 Keys to Drawing ... 18.000000\n", "9870 حبيبتي بكÙ\n", "اء ... 20.000000\n", "9871 Dali: The Paintings ... 14.000000\n", "9872 Black Bird, Vol. 01 (Black Bird, #1) ... 23.000000\n", "9873 Washington's Crossing ... 18.000000\n", "9874 M.C. Escher: The Graphic Work ... 18.000000\n", "9875 Cat and Mouse (Alex Cross, #4) ... 28.000000\n", "9876 Maryamah Karpov: Mimpi-mimpi Lintang (Tetralog... ... 16.000000\n", "9877 Blood, Bones, and Butter: The Inadvertent Educ... ... 20.000000\n", "9878 Grandfather's Journey ... 8.000000\n", "9879 Filosofi Kopi: Kumpulan Cerita dan Prosa Satu ... ... 14.000000\n", "9880 Maid-sama! Vol. 01 (Maid-sama!, #1) ... 19.000000\n", "9881 The E-Myth Revisited: Why Most Small Businesse... ... 22.000000\n", "9882 Gustav Klimt: 1862-1918 ... 8.000000\n", "9883 Palestine ... 19.000000\n", "9884 Beast Master, Vol. 1 (Beast Master, #1) ... 22.000000\n", "9885 History of Art ... 17.000000\n", "9886 The Work of Art in the Age of Its Technologica... ... 14.000000\n", "9887 How to Cook Everything: Simple Recipes for Gre... ... 21.000000\n", "9888 Zami: A New Spelling of My Name ... 15.000000\n", "9889 Joseph Had a Little Overcoat ... 10.000000\n", "9890 Business Model Generation ... 20.000000\n", "9891 Electric Daisy, Vol. 1 (Dengeki Daisy, #1) ... 21.000000\n", "9892 في ديسÙ\n", "بر تنتهي كل الأحلاÙ\n", " ... 20.000000\n", "9893 Zen of Seeing: Seeing/Drawing as Meditation ... 7.000000\n", "9894 Hello, Cupcake ... 18.000000\n", "9895 Jack & Jill (Alex Cross, #3) ... 27.000000\n", "9896 The Lady & Sons Savannah Country Cookbook ... 16.000000\n", "9897 Giada's Family Dinners ... 12.000000\n", "9898 The Shock of the New ... 12.000000\n", "9899 In Search of Excellence: Lessons from America'... ... 16.000000\n", "9900 النبطي ... 18.000000\n", "9901 فلتغفري ... 24.000000\n", "9902 Skip Beat!, Vol. 01 ... 22.000000\n", "9903 رباعيات صلاح جاهين ... 23.000000\n", "9904 The Cake Mix Doctor ... 11.000000\n", "9905 キスよりも早く1 [Kisu Yorimo Hayaku 1] ... ... 15.000000\n", "9906 Slash ... 21.000000\n", "9907 Reborn! Vol. 01: Reborn Arrives! (Reborn!, #1) ... 17.000000\n", "9908 One Up On Wall Street: How To Use What You Alr... ... 16.000000\n", "9909 Ouran High School Host Club, Vol. 2 (Ouran Hig... ... 24.000000\n", "9910 Absolute Boyfriend, Vol. 1 ... 21.000000\n", "9911 The Natural Way to Draw ... 14.000000\n", "9912 Women's Bodies, Women's Wisdom: Creating Physi... ... 21.000000\n", "9913 I'm Just Here for the Food: Food + Heat = Cooking ... 19.000000\n", "9914 100 Bullets, Vol. 1: First Shot, Last Call ... 20.000000\n", "9915 Ouran High School Host Club, Vol. 3 (Ouran Hig... ... 24.000000\n", "9916 حول العالÙ\n", " في 200 يوÙ\n", " ... 18.000000\n", "9917 Ouran High School Host Club, Vol. 4 (Ouran Hig... ... 24.000000\n", "9918 Andy Goldsworthy: A Collaboration with Nature ... 10.000000\n", "9919 Hands Of Light ... 15.000000\n", "9920 The Man Who Walked Between the Towers ... 8.000000\n", "9921 The Fifth Discipline: The Art & Practice of Th... ... 18.000000\n", "9922 Snowflake Bentley ... 7.000000\n", "9923 Ouran High School Host Club, Vol. 15 (Ouran Hi... ... 17.000000\n", "9924 The Fannie Farmer Cookbook: Anniversary ... 12.000000\n", "9925 Barefoot Contessa Family Style: Easy Ideas and... ... 12.000000\n", "9926 Loveâ˜\n", "Com, Vol. 1 ... 19.000000\n", "9927 When Genius Failed: The Rise and Fall of Long-... ... 17.000000\n", "9928 High School Debut, Vol. 01 (High School Debut,... ... 19.000000\n", "9929 Vincent Van Gogh: The Complete Paintings ... 13.000000\n", "9930 A Cook's Tour: Global Adventures in Extreme Cu... ... 24.000000\n", "9931 The Big Bad Wolf (Alex Cross, #9) ... 25.000000\n", "9932 The Art of Simple Food: Notes, Lessons, and Re... ... 16.000000\n", "9933 Fresh Wind, Fresh Fire: What Happens When God'... ... 17.000000\n", "9934 Martha Stewart's Cupcakes: 175 Inspired Ideas ... ... 12.000000\n", "9935 Crossing the Chasm: Marketing and Selling High... ... 15.000000\n", "9936 Concerning the Spiritual in Art ... 21.000000\n", "9937 Mastering the Art of French Cooking ... 20.000000\n", "9938 Experiencing God: Knowing and Doing the Will o... ... 15.000000\n", "9939 Diane Arbus: Monograph ... 7.000000\n", "9940 Permission Marketing: Turning Strangers Into F... ... 16.000000\n", "9941 Built to Last: Successful Habits of Visionary ... ... 20.000000\n", "9942 How to Be a Domestic Goddess: Baking and the A... ... 18.000000\n", "9943 الرحيق الÙ\n", "ختوÙ\n", " ... 19.000000\n", "9944 Mars, Volume 01 ... 20.000000\n", "9945 الÙ\n", "انيفستو ... 21.000000\n", "9946 The America's Test Kitchen Family Cookbook ... 12.000000\n", "9947 Special A, Vol. 1 (Special A, #1) ... 19.000000\n", "9948 Kare Kano: His and Her Circumstances, Vol. 1 ... 19.000000\n", "9949 رغÙ\n", " الفراق ... 19.000000\n", "9950 Heat: An Amateur's Adventures as Kitchen Slave... ... 21.000000\n", "9951 Boys Over Flowers: Hana Yori Dango, Vol. 1 (Bo... ... 17.000000\n", "9952 Art Through the Ages ... 16.000000\n", "9953 Roses are Red (Alex Cross, #6) ... 26.000000\n", "9954 Artisan Bread in Five Minutes a Day: The Disco... ... 19.000000\n", "9955 Violets Are Blue (Alex Cross, #7) ... 25.000000\n", "9956 Love Hina, Vol. 01 ... 22.000000\n", "9957 Competitive Strategy: Techniques for Analyzing... ... 15.000000\n", "9958 Nourishing Traditions: The Cookbook That Chall... ... 18.000000\n", "9959 The Way to Cook ... 13.000000\n", "9960 Hana-Kimi, Vol. 1 (Hana-Kimi, #1) ... 21.000000\n", "9961 Paradise Kiss, Vol. 1 (Paradise Kiss, #1) ... 20.000000\n", "9962 استÙ\n", "تع بحياتك ... 19.000000\n", "9963 The Smitten Kitchen Cookbook ... 16.000000\n", "9964 Food Inc.: A Participant Guide: How Industrial... ... 15.000000\n", "9965 Ouran High School Host Club, Vol. 1 (Ouran Hig... ... 21.000000\n", "9966 Food Matters: A Guide to Conscious Eating with... ... 14.000000\n", "9967 Wild Ones, Vol. 1 (Wild Ones, #1) ... 16.000000\n", "9968 Graffiti World: Street Art from Five Continents ... 11.000000\n", "9969 Assata: An Autobiography ... 13.000000\n", "9970 Nigella Express: Good Food, Fast ... 15.000000\n", "9971 Beauty Pop, Vol. 1 (Beauty Pop, #1) ... 21.000000\n", "9972 Everyday Food: Great Food Fast ... 12.000000\n", "9973 Baking: From My Home to Yours ... 14.000000\n", "9974 An Illustrated Life: Drawing Inspiration From ... ... 14.000000\n", "9975 Plenty ... 15.000000\n", "9976 The Cake Bible ... 14.000000\n", "9977 The Gentlemen's Alliance †, Vol. 1 ... 18.000000\n", "9978 Edvard Munch: 1863-1944 (Basic Art) ... 8.000000\n", "9979 Essentials of Classic Italian Cooking ... 12.000000\n", "9980 Barefoot Contessa at Home: Everyday Recipes Yo... ... 13.000000\n", "9981 The Creative License: Giving Yourself Permissi... ... 15.000000\n", "9982 Art in Theory 1900 - 2000: An Anthology of Cha... ... 8.000000\n", "9983 How to Cook Everything Vegetarian: Simple Meat... ... 15.000000\n", "9984 The Art Spirit: Notes, Articles, Fragments of ... ... 13.000000\n", "9985 Kimi ni Todoke: From Me to You, Vol. 1 ... 19.000000\n", "9986 The Silver Palate Cookbook ... 12.000000\n", "9987 Vegan Cupcakes Take Over the World: 75 Dairy-F... ... 19.000000\n", "9988 The Wallflower, Vol. 1 (The Wallflower, #1) ... 19.000000\n", "9989 Martha Stewart's Cookies: The Very Best Treats... ... 15.000000\n", "9990 The New Best Recipe ... 13.000000\n", "9991 كخه يا بابا ... 16.000000\n", "9992 Comfort Me with Apples: More Adventures at the... ... 17.000000\n", "9993 The Barefoot Contessa Cookbook ... 13.000000\n", "9994 The Moosewood Cookbook: Recipes from Moosewood... ... 18.000000\n", "9995 Everyday Italian: 125 Simple and Delicious Rec... ... 15.000000\n", "9996 The Power of Art ... 8.000000\n", "9997 رحلتي Ù\n", "ن الشك إلى الإيÙ\n", "ان ... 14.000000\n", "9998 Veganomicon: The Ultimate Vegan Cookbook ... 16.000000\n", "9999 لا تحزن ... 15.000000\n", "\n", "[10000 rows x 5 columns]" ] }, "metadata": { "tags": [] }, "execution_count": 24 } ] }, { "cell_type": "markdown", "metadata": { "id": "ObQlZRCFsJ6p" }, "source": [ "We get a list of the top 10 most similar books to Lord of the Rings based on book tags. " ] }, { "cell_type": "markdown", "metadata": { "id": "OhnbE9PasO1c" }, "source": [ "Since we are reverse engineering through the Elon Musk customer lens and wanting the recommender to output Zero to One, let’s find where this book is positioned in relation to Lord of the Rings." ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 80 }, "id": "wbxVBTbKsDw6", "outputId": "52852372-997b-4b94-9789-ddde29edde46" }, "source": [ "# Find Zero to One book\n", "lor_recs[lor_recs.title == 'Zero to One: Notes on Startups, or How to Build the Future']" ], "execution_count": 26, "outputs": [ { "output_type": "execute_result", "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlesimilaritytag_nametotal_tags%_common_tags
8870Zero to One: Notes on Startups, or How to Buil...0.070141to-read favorites currently-reading books-i-ow...10023.0
\n", "
" ], "text/plain": [ " title ... %_common_tags\n", "8870 Zero to One: Notes on Startups, or How to Buil... ... 23.0\n", "\n", "[1 rows x 5 columns]" ] }, "metadata": { "tags": [] }, "execution_count": 26 } ] }, { "cell_type": "markdown", "metadata": { "id": "dg2KDDPfsTaX" }, "source": [ "In relation to Lord of the Rings, Zero to One is rank 8,871 (because index starts from zero, index 0 means rank 1, e.g.) out of 10,000 books based on similarities. Pretty low. According to the algorithm, these two books are on opposite ends of the spectrum and not similar at all. This book is statistically in the lowest quartile which means neither you nor Elon would be recommended this diversity of thought." ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 297 }, "id": "g5gDZAM2sQT9", "outputId": "a58fee79-ada9-4203-fafb-aab3fea4519f" }, "source": [ "# Calculate statistical data\n", "lor_recs.describe()" ], "execution_count": 25, "outputs": [ { "output_type": "execute_result", "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
similaritytotal_tags%_common_tags
count10000.00000010000.00000010000.000000
mean0.178780100.79120032.274768
std0.12388510.4750458.876842
min0.01771656.0000004.000000
25%0.093142100.00000026.000000
50%0.139815100.00000032.000000
75%0.220862100.00000038.000000
max1.000000400.000000100.000000
\n", "
" ], "text/plain": [ " similarity total_tags %_common_tags\n", "count 10000.000000 10000.000000 10000.000000\n", "mean 0.178780 100.791200 32.274768\n", "std 0.123885 10.475045 8.876842\n", "min 0.017716 56.000000 4.000000\n", "25% 0.093142 100.000000 26.000000\n", "50% 0.139815 100.000000 32.000000\n", "75% 0.220862 100.000000 38.000000\n", "max 1.000000 400.000000 100.000000" ] }, "metadata": { "tags": [] }, "execution_count": 25 } ] }, { "cell_type": "markdown", "metadata": { "id": "Jrm2rwwatbBK" }, "source": [ "Using a boxplot, we can better visualize this positioning:\n" ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 514 }, "id": "g0mISXNNtW5G", "outputId": "a8644a16-23bc-4048-faaa-0195e5c6ac5c" }, "source": [ "# Boxplot of similarity score\n", "import matplotlib.pyplot as plt\n", "lor_recs.boxplot(column=['similarity'])\n", "plt.show()\n", "# Boxplot of percentage of common tags\n", "lor_recs.boxplot(column=['%_common_tags'])\n", "plt.show()" ], "execution_count": 27, "outputs": [ { "output_type": "display_data", "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXQAAAD4CAYAAAD8Zh1EAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAARD0lEQVR4nO3df2zc9X3H8ecbB2iAlI2lszZiCNIyyalZ1+oEHaWqrcBE2o2oWrcRlantXLJJA6FtKsrkiTJaS0C1VStla6OaNS30GK2mKWsCVOvu1qWsXYL6gxCLKqKBmEzrb0TSFrD73h++wMV14nNy58t98nxIVu77/X7uPm9Ll5e/+ny/n883MhNJUu87o9sFSJLaw0CXpEIY6JJUCANdkgphoEtSIZZ1q+OVK1fm6tWru9W9dEyHDx/m3HPP7XYZ0rwee+yx72Xma+Y71rVAX716Nbt37+5W99Ix1et1hoeHu12GNK+IePpYxxxykaRCGOiSVAgDXZIKYaBLUiEMdEkqxIKBHhH3RsR3ImLPMY5HRHwkIvZFxDcj4g3tL1PqvGq1ytDQEOvWrWNoaIhqtdrtkqRFaeW2xU8CHwU+dYzj64E1jZ/LgX9s/Cv1jGq1ytjYGBMTE8zMzNDX18fo6CgAGzdu7HJ1UmsWPEPPzC8BPzhOkw3Ap3LWV4BfiIhfaVeB0lIYHx9nYmKCkZERli1bxsjICBMTE4yPj3e7NKll7ZhYdCFwoGl7qrHvf+c2jIhNwCaA/v5+6vV6G7qXTt7k5CQzMzPU63UOHTpEvV5nZmaGyclJv6fqGUs6UzQztwBbACqVSjobT6eKwcFB+vr6GB4efnmmaK1WY3Bw0Fmj6hntuMvlWWCgaXtVY5/UM8bGxhgdHaVWqzE9PU2tVmN0dJSxsbFulya1rB1n6NuAGyPiAWYvhj6XmT833CKdyo5c+LzpppuYnJxkcHCQ8fFxL4iqp8RCzxSNiCowDKwE/g94P3AmQGZ+LCKC2btgrgF+DLwnMxdcdatSqaSLc+lU5OJcOpVFxGOZWZnv2IJn6Jl53FOUnP2L8GcnWJskqU2cKSpJhTDQJakQBrokFcJAl6RCGOiSVAgDXZIKYaBLUiEMdEkqhIEuSYUw0CWpEAa6JBXCQJekQhjoklQIA11qqFarDA0NsW7dOoaGhqhWq90uSVqUJX0EnXSqqlarjI2NMTExwczMDH19fYyOjgL4kAv1DM/QJWB8fJyJiQlGRkZYtmwZIyMjTExMMD4+3u3SpJYZ6BIwOTnJlVdeedS+K6+8ksnJyS5VJC2egS4Bg4OD7Ny586h9O3fuZHBwsEsVSYtnoEvA2NgYo6Oj1Go1pqenqdVqjI6OMjY21u3SpJZ5UVRi9sLno48+yvr163nhhRc4++yzueGGG7wgqp5ioEvM3uWyfft2HnrooaPucrniiisMdfUMh1wkvMtFZTDQJbzLRWUw0CW8y0VlMNAlvMtFZfCiqMQr0/tvuukmJicnGRwcZHx83Aui6imRmV3puFKp5O7du7vSt3Q89Xqd4eHhbpchzSsiHsvMynzHHHKRpEIY6JJUCANdkgphoEtSIVoK9Ii4JiKejIh9EbF5nuMXRUQtIr4WEd+MiLe2v1RJ0vEsGOgR0QfcA6wH1gIbI2LtnGZ/DTyYma8HrgP+od2FSpKOr5Uz9MuAfZn5VGa+CDwAbJjTJoFXN16fDxxsX4mSpFa0MrHoQuBA0/YUcPmcNrcBX4iIm4Bzgavm+6CI2ARsAujv76dery+yXKlzvvjFL3LffffxzDPPcNFFF3H99dezbt26bpcltaxdM0U3Ap/MzL+NiN8CPh0RQ5n5s+ZGmbkF2AKzE4ucvKFTRbVa5f777+fee+89avnctWvXOltUPaOVIZdngYGm7VWNfc1GgQcBMvO/gVcBK9tRoLQUXD5XJWgl0HcBayLikog4i9mLntvmtHkGWAcQEYPMBvp321mo1Ekun6sSLBjomTkN3Ag8AkwyezfLExFxe0Rc22j2l8ANEfENoAq8O7u1SIx0Alw+VyVoaQw9M3cAO+bsu7Xp9V7gTe0tTVo6R5bPnZiYYGZm5uXlcx1yUS9x+VwJl89VGVw+V5rD5XN1KnP5XEk6DRjoUkO1WmVoaIh169YxNDREtVrtdknSojiGLjEb5mNjYy9fFD0ysQhwHF09wzN0CScWqQwGuoQTi1QGA13CiUUqg4Eu8crEolqtxvT09MsTi8bGxrpdmtQyL4pKOLFIZXBikTSHE4t0KnNikSSdBgx0SSqEgS5JhTDQJakQBrokFcJAlxpcnEu9zkCXmA3zm2++mcOHDwNw+PBhbr75ZkNdPcX70CVgYGCAmZkZ7r///pdXW3znO99JX18fBw4c6HZ50su8D11awNTUFFu3bj1qtcWtW7cyNTXV7dKklhnoUkOtVjtqDL1Wq3W7JGlRXMtFAi644ALuuusu7rrrLtauXcvevXu55ZZbuOCCC7pdmtQyA10CzjnnHGZmZrj77rt5+umnufjiiznvvPM455xzul2a1DKHXCTg4MGDDAwMsH//fjKT/fv3MzAwwMGDB7tdmtQyA10Cli9fzp49e47at2fPHpYvX96liqTFM9AlePn+8xUrVnDGGWewYsWKo/ZLvcAxdKnJ888/f9S/Ui/xDF2SCmGgS1IhDHRJKoSBLkmFMNAlqRAtBXpEXBMRT0bEvojYfIw2fxAReyPiiYj4THvLlCQtZMHbFiOiD7gHuBqYAnZFxLbM3NvUZg3wV8CbMvOHEfHLnSpYkjS/Vs7QLwP2ZeZTmfki8ACwYU6bG4B7MvOHAJn5nfaWKUlaSCsTiy4Emlf4nwIun9Pm1wEi4stAH3BbZj4894MiYhOwCaC/v596vX4CJUtLy++pekW7ZoouA9YAw8Aq4EsRcWlm/qi5UWZuAbbA7BOLhoeH29S91Dl+T9UrWhlyeRYYaNpe1djXbArYlpkvZea3gW8xG/CSpCXSSqDvAtZExCURcRZwHbBtTpt/ZfbsnIhYyewQzFNtrFOStIAFAz0zp4EbgUeASeDBzHwiIm6PiGsbzR4Bvh8Re4Ea8L7M/H6nipYk/bzIzK50XKlUcvfu3V3pW5orIo55rFv/R6T5RMRjmVmZ75gzRSWpEAa6JBXCQJekQhjoklQIA12SCmGgS1IhDHRJKoSBLkmFMNAlqRAGuiQVwkCXpEIY6JJUCANdkgphoEtSIQx0SSqEgS5JhTDQJakQBrokFcJAl6RCGOiSVAgDXZIKYaBLUiEMdEkqhIEuSYUw0CWpEAa6JBXCQJekQhjoklQIA12SCmGgS1IhDHRJKkRLgR4R10TEkxGxLyI2H6fd70VERkSlfSVKklqxbKEGEdEH3ANcDUwBuyJiW2bundNuBXAz8NVOFCqdqIhYkvdn5kn1I52sVs7QLwP2ZeZTmfki8ACwYZ52HwDuBH7axvqkk5aZC/6c7PsNc50KFjxDBy4EDjRtTwGXNzeIiDcAA5m5PSLed6wPiohNwCaA/v5+6vX6oguWOqFWqzEyMjLvfr+n6hWtBPpxRcQZwN8B716obWZuAbYAVCqVHB4ePtnupbY5cpa9evN29t/xti5XIy1eK0MuzwIDTdurGvuOWAEMAfWI2A+8EdjmhVFJWlqtBPouYE1EXBIRZwHXAduOHMzM5zJzZWauzszVwFeAazNzd0cqliTNa8FAz8xp4EbgEWASeDAzn4iI2yPi2k4XKElqTUtj6Jm5A9gxZ9+tx2g7fPJlSZIWy5miklQIA12SCmGgS1IhDHRJKoSBLkmFMNAlqRAGuiQVwkCXpEIY6JJUCANdkgphoEtSIQx0SSqEgS5JhTDQJakQBrokFcJAl6RCGOiSVAgDXZIKYaBLUiEMdEkqhIEuSYUw0CWpEAa6JBXCQJekQhjoklQIA12SCmGgS1IhDHRJKoSBLkmFMNAlqRDLul2AtBiv+5sv8NxPXup4P6s3b+94H+cvP5NvvP+3O96PTh8tBXpEXAP8PdAHfCIz75hz/C+A9wLTwHeBP87Mp9tcq8RzP3mJ/Xe8raN91Ot1hoeHO9oHLM0fDZ1eFhxyiYg+4B5gPbAW2BgRa+c0+xpQyczfAD4H3NXuQiVJx9fKGPplwL7MfCozXwQeADY0N8jMWmb+uLH5FWBVe8uUJC2klSGXC4EDTdtTwOXHaT8KPDTfgYjYBGwC6O/vp16vt1al1KTT35tDhw4t2XfT/wNqp7ZeFI2I64EK8Jb5jmfmFmALQKVSyaUYp1RhHt7e8fHtpRpDX4rfRaeXVgL9WWCgaXtVY99RIuIqYAx4S2a+0J7yJEmtamUMfRewJiIuiYizgOuAbc0NIuL1wMeBazPzO+0vU5K0kAUDPTOngRuBR4BJ4MHMfCIibo+IaxvNPgScB3w2Ir4eEduO8XGSpA5paQw9M3cAO+bsu7Xp9VVtrkuStEhO/ZekQhjoklQIA12SCmGgS1IhDHRJKoSBLkmFcD109ZQVg5u5dOvmzne0tfNdrBgE6OxSwDq9GOjqKc9P3uF66NIxOOQiSYUw0CWpEAa6JBXCQJekQhjoklQIA12SCmGgS1IhDHRJKoQTi9RzlmRCzsOd7+P85Wd2vA+dXgx09ZROzxKF2T8YS9GP1G4OuUhSIQx0SSqEgS5JhTDQJakQBrokFcJAl6RCGOiSVAgDXZIKYaBLUiEMdEkqhIEuSYUw0CWpEAa6JBWipUCPiGsi4smI2BcRm+c5fnZE/HPj+FcjYnW7C5VOVEQs6ufpO39n0e+JiG7/mtLCgR4RfcA9wHpgLbAxItbOaTYK/DAzfw34MHBnuwuVTlRmLuqnVqst+j2Z2e1fU2rpDP0yYF9mPpWZLwIPABvmtNkAbG28/hywLjxlkaQl1coDLi4EDjRtTwGXH6tNZk5HxHPALwHfa24UEZuATQD9/f3U6/UTq1rqoEOHDvndVE9a0icWZeYWYAtApVLJ4eHhpexeakm9XsfvpnpRK0MuzwIDTdurGvvmbRMRy4Dzge+3o0BJUmtaCfRdwJqIuCQizgKuA7bNabMNeFfj9TuA/0ivEknSklpwyKUxJn4j8AjQB9ybmU9ExO3A7szcBkwAn46IfcAPmA19SdISamkMPTN3ADvm7Lu16fVPgd9vb2mSpMVwpqgkFSK6NdQdEd8Fnu5K59LxrWTOLbfSKeTizHzNfAe6FujSqSoidmdmpdt1SIvlkIskFcJAl6RCGOjSz9vS7QKkE+EYuiQVwjN0SSqEgS5JhTDQVZSI+MQ8D2A5XvtKRHyk8frdEfHRRfbX/P7hiLhicRVL7bOky+dKnZaZ711k+93A7hPpKyKWzXn/MHAIePREPk86WZ6hq2dFxLkRsT0ivhEReyLiDyOiHhGVxvFDEfGhiHgiIv49Ii5rHH8qIq5ttBmOiM/P89m/23g+7tca7+1v7L8tIj4dEV9mdkG64Yj4fOM5un8K/HlEfD0i3hwR346IMxvve3XzttQJBrp62TXAwcx8XWYOAQ/POX4us0s5vxZ4HvggcDXwduD2BT57J/DGzHw9s49dvKXp2FrgqszceGRHZu4HPgZ8ODN/MzP/C6gDb2s0uQ74l8x8adG/pdQiA1297HHg6oi4MyLenJnPzTn+Iq+E/OPAfzYC9XFg9QKfvQp4JCIeB94HvLbp2LbM/EkL9X0CeE/j9XuAf2rhPdIJM9DVszLzW8AbmA3oD0bErXOavNT0oJWfAS803vczFr5+dDfw0cy8FPgT4FVNxw63WN+XgdURMQz0ZeaeVt4nnSgviqpnRcSvAj/IzPsi4kfAoi6ILuB8XnnU4ruO17DJ88Cr5+z7FPAZ4ANtqks6Js/Q1csuBf4nIr4OvJ/ZMfJ2uQ34bEQ8RutL6f4b8PYjF0Ub++4HfhGotrE2aV5O/Zc6KCLeAWzIzD/qdi0qn0MuUodExN3AeuCt3a5FpwfP0CWpEI6hS1IhDHRJKoSBLkmFMNAlqRAGuiQV4v8BeReEFoB80IwAAAAASUVORK5CYII=\n", "text/plain": [ "
" ] }, "metadata": { "tags": [], "needs_background": "light" } }, { "output_type": "display_data", "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXcAAAD5CAYAAADcDXXiAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAATu0lEQVR4nO3df3BdZ33n8ffXsmM5IQsOYdTUYTGDmR3ZhgKr0rKkjRTvbOgSGu00BbyhmzViPSS1gG1na2+0ndQzeMZuO9uybqeMG7txB1YUktaBMGHDUt0a00kgJiGJre6SzRKI1wkwbhKU+Kf47h/32KPcSIquruSje/x+zWh07nPPj2+Sm8999JxznhOZiSSpWhaVXYAkae4Z7pJUQYa7JFWQ4S5JFWS4S1IFLS67AIDLL788V65cWXYZ0su88MILXHLJJWWXIU3q4MGDP87M10323oII95UrV/Lggw+WXYb0MrVajd7e3rLLkCYVEU9O9Z7DMpJUQYa7JFWQ4S5JFWS4S1IFGe6SVEGvGO4RsScifhgRj01ouywivhoR3y1+Ly/aIyL+W0Q8HhGPRMQ75rN4ab4MDw+zdu1a1q1bx9q1axkeHi67JKkpM7kU8g7gT4C/nNC2BfhaZm6PiC3F683ArwBvLn5+Afiz4rfUNoaHhxkaGmL37t2Mj4/T0dHBwMAAAOvXry+5OmlmXrHnnpn7gWMNzdcDe4vlvUD/hPa/zLr7gddExBVzVax0Pmzbto3du3fT19fH4sWL6evrY/fu3Wzbtq3s0qQZm+1NTF2ZebRYfhroKpZXAD+YsN5TRdtRGkTERmAjQFdXF7VabZalSHNrdHSU8fFxarUaY2Nj1Go1xsfHGR0d9XOqttHyHaqZmRHR9BM/MnMXsAugp6cnvQtQC0V3dzcdHR309vaeu0N1ZGSE7u5u71ZV25jt1TLPnB1uKX7/sGg/Arx+wnpXFm1S2xgaGmJgYICRkRHOnDnDyMgIAwMDDA0NlV2aNGOz7bl/EbgJ2F78vntC+6aI+Bz1E6nPTRi+kdrC2ZOmg4ODjI6O0t3dzbZt2zyZqrYSr/QM1YgYBnqBy4FngNuAfcDngX8KPAm8PzOPRURQv7LmPcCLwIbMfMUZwXp6etKJw7QQOXGYFrKIOJiZPZO994o998ycqruybpJ1E/jN5sqTJM0171CVpAoy3CWpggx3Saogw12SKshwl6QKMtwlqYIMd0mqIMNdkirIcJcm4cM61O5anhVSqhof1qEqsOcuNfBhHaoCw11qMDo6ylVXXfWStquuuorR0dGSKpKa57CM1KC7u5utW7eyb9++c1P+9vf3093dXXZp0owZ7lKDvr4+duzYwY4dO1i9ejWHDx9m8+bNfPSjHy27NGnGDHepwcjICJs3b2bPnj3neu6bN29m3759ZZcmzdgrPqzjfPBhHVpIOjo6OHHiBEuWLDn3sI7Tp0/T2dnJ+Ph42eVJ50z3sA5PqEoNuru7OXDgwEvaDhw44Ji72orhLjXwAdmqAsfcpQY+IFtV4Ji7NA0fkK2FzDF3SbrAGO6SVEGGuyRVkOEuSRVkuEuTcD53tTsvhZQaOJ+7qsCeu9TA+dxVBYa71MD53FUFhrvUwLllVAWGu9TAuWVUBZ5QlRo4t4yqwLllpGk4t4wWsnmbWyYi/mNEHIqIxyJiOCI6I+KNEfFARDweEX8VERe1cgxJUvNmHe4RsQL4GNCTmWuBDuCDwA7gjzJzFfCPwMBcFCpJmrlWT6guBpZFxGLgYuAocA1wZ/H+XqC/xWNIkpo063DPzCPAHwLfpx7qzwEHgWcz80yx2lPAilaLlCQ1Z9ZXy0TEcuB64I3As8AXgPc0sf1GYCNAV1cXtVpttqVI82ZsbMzPptpSK5dC/kvg/2bmjwAi4q+BdwOviYjFRe/9SuDIZBtn5i5gF9SvlvGKBC1EXi2jdtXKmPv3gV+MiIsjIoB1wGFgBLihWOcm4O7WSpQkNauVMfcHqJ84/TbwaLGvXcBm4Lci4nHgtcDuOahTOq+c8lftrqU7VDPzNuC2huYngHe2sl+pTE75qyrwDlWpwdq1a+nv72ffvn3nph84+/qxxx4ruzzpnOnuUHVuGanB4cOHefHFF1/Wc//e975XdmnSjDkrpNTgoosuYtOmTS95WMemTZu46CJn0lD7sOcuNTh16hQ7d+7k7W9/O+Pj44yMjLBz505OnTpVdmnSjBnuUoPVq1fT39//kil/b7zxRvbt21d2adKMGe5Sg6GhoUmvlvEZqmonhrvUwId1qAq8FFKahtMPaCGbt4d1SJIWJsNdkirIcJekCjLcJamCDHdJqiDDXZIqyHCXpAoy3CWpggx3Saogw12SKshwlyYxODhIZ2cnfX19dHZ2Mjg4WHZJUlOcOExqMDg4yKc//Wl27NjB6tWrOXz4MJs3bwZg586dJVcnzYwTh0kNOjs7ueGGG3j44YfPzQr5tre9jTvvvJMTJ06UXZ50js9QlZpw8uRJvvGNb7Bnz55z87l/+MMf5uTJk2WXJs2Y4S41iAief/55rrnmmnNtl112GRFRYlVSczyhKjXITI4dO8aaNWsYHh5mzZo1HDt2jIUwhCnNlD13aRLLli3j0KFD556+tGzZMo4fP15yVdLM2XOXJnH8+HFuvvlmvvSlL3HzzTcb7Go7hrs0iRUrVrB//36uv/569u/fz4oVK8ouSWqKwzLSJI4cOcKRI0cAOHToUMnVSM2z5y5JFWS4S1IFGe6SVEGGuzSJJUuWsHTpUgCWLl3KkiVLSq5Iak5L4R4Rr4mIOyPiHyJiNCLeFRGXRcRXI+K7xe/lc1WsdL6cPn2aVatWMTw8zKpVqzh9+nTZJUlNaWnisIjYC3w9M2+PiIuAi4FbgWOZuT0itgDLM3PzdPtx4jAtJNNNM+BdqlpIpps4bNY994h4NfDLwG6AzDyVmc8C1wN7i9X2Av2zPYZUpohg+/btzimjttTKsMwbgR8BfxERD0XE7RFxCdCVmUeLdZ4GulotUipDZrJlyxZ762pLrdzEtBh4BzCYmQ9ExKeALRNXyMyMiEn/z4iIjcBGgK6uLmq1WgulSHMvIti6dSu33XbbuYD3c6p2Mesx94j4GeD+zFxZvP4l6uG+CujNzKMRcQVQy8x/Nt2+HHPXQuKYu9rFvIy5Z+bTwA8i4mxwrwMOA18EbirabgLunu0xpLJ96EMfKrsEaVZanVtmEPhscaXME8AG6l8Yn4+IAeBJ4P0tHkMqzWc+85myS5BmpaVwz8yHgcn+JFjXyn6lheK6667jnnvuKbsMqWneoSpNw2BXuzLcpWm89a1vLbsEaVYMd2kajzzySNklSLNiuEvT+MhHPlJ2CdKsGO7SNG6//fayS5Bmxcfs6YLS6jwxM93em51UNsNdF5SZhu5kIW5gq504LCNNIjPJTN6w+Z5zy1I7MdwlqYIMd0mqIMNdkirIcJekCjLcJamCDHdJqiDDXZIqyHCXpAoy3CWpggx3Saogw12SKshwl6QKMtwlqYIMd0mqIMNdkirIcJekCjLcJamCDHdJqiDDXZIqyHCXpAoy3CWpggx3Saogw12SKshwl6QKMtwlqYJaDveI6IiIhyLinuL1GyPigYh4PCL+KiIuar1MSVIz5qLn/nFgdMLrHcAfZeYq4B+BgTk4hiSpCS2Fe0RcCbwXuL14HcA1wJ3FKnuB/laOIUlq3uIWt/9j4HeAS4vXrwWezcwzxeungBWTbRgRG4GNAF1dXdRqtRZLkeaHn021o1mHe0RcB/wwMw9GRG+z22fmLmAXQE9PT/b2Nr0Laf595cv42VQ7aqXn/m7gVyPiXwOdwD8BPgW8JiIWF733K4EjrZcpSWrGrMfcM/M/Z+aVmbkS+CDwt5l5IzAC3FCsdhNwd8tVSpKa0uqY+2Q2A5+LiE8CDwG75+EYEj+39T6eO3563o+zcsuX5/0Yr162hO/c9q/m/Ti6cMxJuGdmDagVy08A75yL/UrTee74ab63/b3zeoxarXZextzPxxeILizeoSpJFWS4S1IFGe6SVEGGuyRVkOEuSRVkuEtSBRnuklRBhrskVZDhLkkVZLhLUgXNx9wy0nlxafcW3rJ3y/wfaO/8H+LSbqg/90aaG4a72tZPRrc7t4w0BYdlJKmCDHdJqiDDXZIqyHCXpAoy3CWpggx3Saogw12SKshwl6QKMtwlqYIMd0mqIMNdkirIuWXU1s7LnCxfmf9jvHrZknk/hi4shrva1nxPGgb1L4/zcRxprjksI0kVZLhLUgUZ7pJUQYa7JFWQ4S5JFWS4S1IFGe6SVEGzDveIeH1EjETE4Yg4FBEfL9ovi4ivRsR3i9/L565cSdJMtNJzPwP8dmauBn4R+M2IWA1sAb6WmW8Gvla8liSdR7MO98w8mpnfLpZ/AowCK4Drgb3FanuB/laLlCQ1Z06mH4iIlcDbgQeArsw8Wrz1NNA1xTYbgY0AXV1d1Gq1uShFmnN+NtWOWg73iHgVcBfwicx8PiLOvZeZGRE52XaZuQvYBdDT05O9vb2tliLNva98GT+bakctXS0TEUuoB/tnM/Ovi+ZnIuKK4v0rgB+2VqIkqVmtXC0TwG5gNDP/64S3vgjcVCzfBNw9+/IkSbPRyrDMu4HfAB6NiIeLtluB7cDnI2IAeBJ4f2slSpKaNetwz8wDQEzx9rrZ7leS1DrvUJWkCjLcJamCDHdJqiDDXZIqyHCXpAoy3CWpggx3Saogw12SKshwl6QKMtwlqYIMd0mqIMNdkirIcJekCjLcJamCDHdJqiDDXZIqyHCXpAoy3CWpggx3aRLXXnstixYt4skd17Fo0SKuvfbaskuSmtLKA7KlthMx1WN/p5aZ3HfffU1tm5lNH0eaS/bcdUHJzFf8OWv58uUsWrSI5cuXN7W9wa6FwJ67NImLL76Yu+66i/HxcTo6Orjuuut48cUXyy5LmjF77tIkrr76avr6+li8eDF9fX1cffXVZZckNcVwlyZx7733cssttzA2NsYtt9zCvffeW3ZJUlNiIYwP9vT05IMPPlh2GRIAr3rVq3jhhRde1n7JJZcwNjZWQkXS5CLiYGb2TPaePXepwYYNG152ZUxEsGHDhpIqkppnuEsNRkZGuPXWW1mzZg2LFi1izZo13HrrrYyMjJRdmjRjDstIDTo6Ojhx4gRLliyhVqvR29vL6dOn6ezsZHx8vOzypHMclpGa0N3dzYEDB17SduDAAbq7u0uqSGqe4S41GBoaYmBggJGREc6cOcPIyAgDAwMMDQ2VXZo0Y97EJDVYv349AIODg4yOjtLd3c22bdvOtUvtwDF3aRpnx9ylhei8j7lHxHsi4n9FxOMRsWU+jiFJmtqch3tEdAB/CvwKsBpYHxGr5/o4kqSpzUfP/Z3A45n5RGaeAj4HXD8Px5EkTWE+TqiuAH4w4fVTwC80rhQRG4GNAF1dXdRqtXkoRWrN2NiYn021pdKulsnMXcAuqJ9Q9aSVFiJPqKpdzUe4HwFeP+H1lUXblA4ePPjjiHhyHmqRWnU58OOyi5Cm8Iap3pjzSyEjYjHwv4F11EP9W8C/zcxDc3og6TyIiAenutRMWsjmvOeemWciYhPwP4AOYI/BLknn14K4iUlaqOy5q105t4w0vV1lFyDNhj13Saoge+6SVEGGuyRVkOEuSRVkuKs0EfG6iDgQEY9FRP+E9rsj4mfLrG0+RUS/k+lpvhnuKtN64NPUJ5v7BEBEvA94KDP/X5mFzbN+6jOmSvPGcFeZTgMXA0uB8eLu5k8Avz/dRhGxKiL+Z0R8JyK+HRFviro/KP4KeDQiPlCs2xsRf1f8NfBERGyPiBsj4pvFem8q1rsjIv4sIu4v1uuNiD0RMRoRd0w49vpiu8ciYseE9rGI2FbUdH9EdE1R+78AfhX4g4h4uKj9P0TEt4pt74qIi4t131Ts69GI+GREjBXtV0TE/mL7xyLil2b/n0CVlZn++FPKD/Bq4MvAg9Snq/gY8O9nsN0DwL8pljupf0H8GvBV6ndFdwHfB64AeoFni+Wl1KfE2Fps+3Hgj4vlO6hPTx3Up6h+HngL9Q7QQeBtwM8W+30d9bu7/xboL7ZP4H3F8u8D/2Wa+u8Abpjw+rUTlj8JDBbL9wDri+WPAmPF8m8DQ8VyB3Bp2f8t/Vl4P/bcVZrMfC4z35v1O0C/DbwPuDMi/jwi7oyIdzVuExGXAisy82+KfZzIzBeBq4DhzBzPzGeAvwN+vtjsW5l5NDNPAv8HuK9ofxRYOWH3X8rMLNqfycxHM/OnwKFivZ8Hapn5o8w8A3wW+OVi21PUwxjqXwYT9/tK1kbE1yPiUeBGYE3R/i7gC8Xyf5+w/reADRHxe8BbMvMnTRxLFwjDXQvF7wLbqI/DHwBuAn5vjvZ9csLyTye8/ikvnV/p5CTrTLbeZE4XXwwA4zNYf6I7gE2Z+RZgK/W/RqaUmfupf6kcAe6IiH/XxLF0gTDcVbqIeDNwZWbWqA+x/JT6MMeyxnWLXupTZ6+uiYilxRj114EPRERHRLyOevh9c45L/SZwdURcXjxOcj31vxCa9RPg0gmvLwWORsQS6j33s+6nPtwE8MGzjRHxBup/Wfw5cDvwjlnUoIoz3LUQbAOGiuVh4GbqQw+fmmL93wA+FhGPAH8P/AzwN8AjwHeoj4X/TmY+PZdFZuZRYAswUhznYGbePYtdfQ74TxHxUHFC93epn0f4BvAPE9b7BPBbxT/nKuC5or0X+E5EPAR8gKn/PekC5twy0gJV/EVyPDMzIj5I/eSqzyPWjJT2mD1Jr+ifA38SEUH9ip8Pl1yP2og9dy1YEfGnwLsbmj+VmX9RRj3Niogh4Ncbmr+QmdvKqEcXFsNdkirIE6qSVEGGuyRVkOEuSRVkuEtSBf1/ZKntNCkkIMcAAAAASUVORK5CYII=\n", "text/plain": [ "
" ] }, "metadata": { "tags": [], "needs_background": "light" } } ] }, { "cell_type": "markdown", "metadata": { "id": "pkzx5DTitgqc" }, "source": [ "We can explore the data further and find the most common book tags using NLTK (Natural Language Toolkit). First, we clean up words such as removing hyphens, tokenize the words, and then remove all the stop words. After the text is clean, we can calculate the top 10 frequent words that appear in the Lord of the Rings book tags.\n" ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 520 }, "id": "2YszWxfythB_", "outputId": "7586f874-0a12-47ca-ec28-709a71638664" }, "source": [ "# Store book tags into new dataframe\n", "lor_tags = pd.DataFrame(books_with_tags[books_with_tags['title']=='The Fellowship of the Ring (The Lord of the Rings, #1)']['tag_name'])\n", "# Find most frequent word used in book tags\n", "top_N = 10\n", "txt = lor_tags.tag_name.str.lower().str.replace(r'-', ' ').str.cat(sep=' ') # Remove hyphens\n", "words = nltk.tokenize.word_tokenize(txt)\n", "word_dist = nltk.FreqDist(words)\n", "stopwords = nltk.corpus.stopwords.words('english')\n", "words_except_stop_dist = nltk.FreqDist(w for w in words if w not in stopwords) \n", "print('All frequencies, including STOPWORDS:')\n", "print('=' * 60)\n", "lor_rslt = pd.DataFrame(word_dist.most_common(top_N),\n", " columns=['Word', 'Frequency'])\n", "print(lor_rslt)\n", "print('=' * 60)\n", "lor_rslt = pd.DataFrame(words_except_stop_dist.most_common(top_N),\n", " columns=['Word', 'Frequency']).set_index('Word')\n", "matplotlib.style.use('ggplot')\n", "lor_rslt.plot.bar(rot=0)\n", "plt.show()" ], "execution_count": 32, "outputs": [ { "output_type": "stream", "text": [ "All frequencies, including STOPWORDS:\n", "============================================================\n", " Word Frequency\n", "0 fantasy 12\n", "1 fiction 8\n", "2 read 7\n", "3 books 6\n", "4 my 5\n", "5 favorites 4\n", "6 sci 4\n", "7 fi 4\n", "8 to 3\n", "9 adult 3\n", "============================================================\n" ], "name": "stdout" }, { "output_type": "display_data", "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXMAAAEJCAYAAABmA8c1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nO3de3xT5eEG8CdteqFQsDSAtNykttALbQWEwiigDROZF5y2MiYKKKwUxsSCOhUGTqUMynUFp9w+IkPQyaUICBlQnAVXYJ3lDrUoIjSUQqG3lCTv7w9+nFFomjRJw+H1+f5FkpP3POfk5OH05OREI4QQICKiu5rXnQ5ARESuY5kTEUmAZU5EJAGWORGRBFjmREQSYJkTEUlA6+kZ/vTTTy49X6fToaSkxE1p7t4MasmhhgxqyaGGDGrJoYYMasnhjgwhISF2p+GeORGRBFjmREQSYJkTEUnA48fMiejuJoRAdXU1rFYrNBpNndMUFxfDZDJ5OJk6cziaQQgBLy8v+Pv721yv9WGZE1GDVFdXw8fHB1qt7frQarXw9vb2YCr15mhIBrPZjOrqajRp0qTB8+FhFiJqEKvVWm+Rk/O0Wi2sVqtzz7U3weLFi3Hw4EG0aNECmZmZAIBVq1bhwIED0Gq1aNOmDdLS0tC0aVOnAhDR3cWZQwDkOGfXr90984EDB+KNN96odV9sbCwyMzMxZ84ctG3bFuvXr3dq5kRE5B5298yjoqJgNBpr3RcXF6f8OyIiAvv27XN/MiK6K1jGPHH7fS6M5/3hJrvTtG/fHl27dlVuL1++HO3bt3dhrnc/lw987dy5E3379rX5uMFggMFgAABkZGRAp9PZnLb4KdvjKNPYebzN+ly7Y7hKq9XWuxyeooYcasiglhxqyOCJHMXFxbWOmbtS3HVx5Hi8v78/du3aVedjQgjlzBBHx2tsDcng5+fn1Ovn0lJ+/vnn8Pb2RmJios1p9Ho99Hq9cruxv1rria/uquErwmrJoYYMasmhhgyeyGEymRr1DBGz2dzg6c6cOYPhw4fjgQceQEFBAVatWoXs7Gxs3rwZJpMJgwcPxuTJkwEACxYswKeffgqdToeQkBDExsYiNTUVzzzzDKZOnYq4uDiUlpbi0UcfxTfffAOLxYL33nsPe/fuRU1NDV544QWMGDECubm5mDt3LoKCgnD8+HHExsZi0aJF0Gg0yM/Px7Rp01BZWQk/Pz+sXbsWzz//PN5++23ExMQAAIYOHYp3330X0dHRtZbLZDLd9vo58nV+p8t89+7dOHDgAKZNm8YPRIjIo6qrqzFo0CAAQIcOHTB9+nQUFRVh/vz56NGjB3JyclBUVIRt27bh2rVrGDlyJPbt24eAgABs2rQJO3bsgNlsxuDBgxEbG1vvvNasWYPAwEBs2bIFJpMJQ4cOxYABAwAAhw4dws6dO3HvvffiySefRF5eHuLj4zFu3DgsWbIE8fHxqKqqgo+PD4YNG4Z169YhJiYGhYWFMJlMtxW5K5wq8/z8fGzcuBEzZsyAn5+f28IQETnC398fO3bsUG6fOXMG7dq1Q48ePQAAOTk5yMnJQVJSEoQQqKysRFFREcrLyzF48GDlPO4b/yHUJycnB0ePHsUXX3wBALh69SqKiorg4+OD+Ph4Za85OjoaZ86cQWBgIFq3bo34+HgAQGBgIMxmMx5//HEsWLAAU6dOxdq1a5GSkuLWdWK3zOfPn48jR47g6tWrSE1NRUpKCtavXw+z2Yw///nPAIDw8HCMHTvWrcGIiBoiICBA+bcQAhMmTMCoUaNqHY758MMPbT7f29tbOce7urq61mPvvPMOBg4cWOu+3Nxc+Pr61np+fYeImjRpgsTERHz55ZfIzs7G1q1bHVouR9kt85dffvm2+x5++GG3hiAicqeBAwdi9uzZSElJgZ+fH86dOwcfHx8kJCRg0qRJmDBhAiwWC3bs2IERI0YAuH6GzLfffosHHnhA2QsHgAEDBuCjjz7CL37xC/j4+KCwsBBt27a1Oe+wsDAYjUbk5+cjPj4e5eXl0Gq10Gq1GD58OEaOHIlevXrhnnvucesy3/mPeYnorlbXqYRardbhDzIbw4ABA3Dy5EkMGTIEwPW99kWLFqFbt254/PHHMWjQIOh0OuVQCACkpqYiNTUVq1evRlJSknL/8OHDcebMGQwePBhCCLRs2RLLly+3OW9fX18sWbIEb731lvLV/E8++QRarRaxsbFo1qwZnn32Wbcvs0YIIdw+aj3q+3GKus5XbShHzlF11c/lrIW7JYNacqghgydyVFZW1jqkUZc7XeaO5sjMzETTpk2RmprqkQznz5/HM888gz179iinTt6qrvXLH6cgIlKJTz/9FI899hhee+01m0XuCh5mIaKfrfT0dI/NKzk5GcnJyY02PvfMiahBPHxk9mfH2fXLMieiBvHy8lLF8XAZmc1mpw/B8DALETWIv78/qqurYTKZbH7728/P747/wo9acjia4eZfGnIGy5yIGkSj0dj9JZyfy5k9asrAwyxERBJgmRMRSYBlTkQkAZY5EZEEWOZERBJgmRMRSYBlTkQkAZY5EZEEWOZERBJgmRMRSYBlTkQkAZY5EZEEWOZERBJgmRMRSYBlTkQkAZY5EZEEWOZERBKw+0tDixcvxsGDB9GiRQtkZmYCAMrLyzFv3jxcuHABrVq1wqRJk9CsWbNGD0tERHWzu2c+cOBAvPHGG7Xu27BhA7p164aFCxeiW7du2LBhQ6MFJCIi++yWeVRU1G173Xl5eRgwYAAAYMCAAcjLy2ucdERE5BCnftC5rKwMQUFBAIB77rkHZWVlNqc1GAwwGAwAgIyMDOh0OpvTFjsT5hb1je8uWq3WI/O5G3KoIYNacqghg1pyqCGDWnJ4KoNTZX4zjUYDjUZj83G9Xg+9Xq/cbuxfqfbEr2Cr4Re/1ZJDDRnUkkMNGdSSQw0Z1JLDHRlCQkLsTuPU2SwtWrTApUuXAACXLl1C8+bNnRmGiIjcxKky79mzJ3JycgAAOTk5ePDBB90aioiIGsbuYZb58+fjyJEjuHr1KlJTU5GSkoKhQ4di3rx52Llzp3JqIhER3Tl2y/zll1+u8/5p06a5PQwRETmH3wAlIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAJaV568efNm7Ny5ExqNBu3bt0daWhp8fX3dlY2IiBzk9J55aWkptm7dioyMDGRmZsJqtSI3N9ed2YiIyEEuHWaxWq2oqamBxWJBTU0NgoKC3JWLiIgaQCOEEM4+ecuWLVizZg18fX0RFxeHiRMn3jaNwWCAwWAAAGRkZKCmpsbmeMVP9XU2iqLNetf/OlBLDnu0Wi3MZnOjz0ftGdSSQw0Z1JJDDRnUksMdGRw5fO30MfPy8nLk5eUhKysLAQEBmDt3Lvbs2YP+/fvXmk6v10Ov1yu3S0pKnJ2lQxp7fEd5IodOp7vjy6uGDGrJoYYMasmhhgxqyeGODCEhIXancfowS0FBAVq3bo3mzZtDq9Wid+/eOHHihLPDERGRC5wuc51Oh5MnT8JkMkEIgYKCAoSGhrozGxEROcjpwyzh4eFISEjAa6+9Bm9vb3Tq1KnW4RQiIvIcl84zT0lJQUpKiruyEBGRk/gNUCIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpKAS9dmocZjGfOE3WmK7Tzu/eEm94QhItXjnjkRkQRY5kREEmCZExFJgGVORCQBljkRkQRY5kREEmCZExFJgGVORCQBljkRkQRY5kREEmCZExFJgGVORCQBljkRkQRcumpiRUUF3n//fZw5cwYajQbjxo1DRESEu7IREZGDXCrzFStWID4+Hunp6TCbzTCZTO7KRUREDeD0YZbKykocPXoUDz/8MABAq9WiadOmbgtGRESOc3rP3Gg0onnz5li8eDG+//57dO7cGSNHjoS/v3+t6QwGAwwGAwAgIyMDOp3O5pj2fmzBEfWN7yg15FBDBgAofqpv/Y87MEab9bku57BHq9W6ZXnv9gxqyaGGDGrJ4akMTpe5xWJBUVERRo8ejfDwcKxYsQIbNmzAsGHDak2n1+uh1+uV2yUlJc6ndUBjj+8oNeRQQwbAMzl0Ot0dX141ZFBLDjVkUEsOd2QICQmxO43Th1mCg4MRHByM8PBwAEBCQgKKioqcHY6IiFzgdJnfc889CA4Oxk8//QQAKCgoQLt27dwWjIiIHOfS2SyjR4/GwoULYTab0bp1a6SlpbkrFxERNYBLZd6pUydkZGS4KwsRETmJ3wAlIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIul7nVasWrr76KjIwMd+QhIiInuFzmW7ZsQWhoqDuyEBGRk1wq84sXL+LgwYNISkpyVx4iInKC1pUnr1y5Es899xyqqqpsTmMwGGAwGAAAGRkZ0Ol0NqctdiXM/6tvfEepIYcaMqglR/FTfe1PY+fxNutzXcrgSA41ZPBUDnu0Wq1btj8Zcngqg9NlfuDAAbRo0QKdO3fG4cOHbU6n1+uh1+uV2yUlJc7O0iGNPb6j1JBDDRkAdeRghv/xRA6dTqeK5VVDDndkCAkJsTuN02V+/Phx7N+/H//5z39QU1ODqqoqLFy4EBMnTnR2SCIicpLTZT58+HAMHz4cAHD48GFkZ2ezyImI7hCeZ05EJAGXPgC9ITo6GtHR0e4YioiInMA9cyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpKAW67NQkQ/L5YxT9T7uL0fyPD+cFOjZ1BLDk9kALhnTkQkBZY5EZEEWOZERBJgmRMRSYBlTkQkAZY5EZEEWOZERBJgmRMRSYBlTkQkAZY5EZEEWOZERBJgmRMRSYBlTkQkAaevmlhSUoKsrCxcvnwZGo0Ger0eQ4YMcWc2IiJykNNl7u3tjREjRqBz586oqqrC66+/jtjYWLRr186d+YiIyAFOH2YJCgpC586dAQBNmjRBaGgoSktL3RaMiIgc55YfpzAajSgqKsL9999/22MGgwEGgwEAkJGRAZ1OZ3Mcexdxd0R94ztKDTnUkEEtOdSQwR051JBBLTnUkEEtOdyRAXBDmVdXVyMzMxMjR45EQEDAbY/r9Xro9XrldklJiauzrFdjj+8oNeRQQwZAHTmY4X/UkEMNGQB15HAkQ0hIiN1pXDqbxWw2IzMzE4mJiejdu7crQxERkQucLnMhBN5//32Ehobisccec2cmIiJqIKcPsxw/fhx79uxBhw4dMGXKFADAb37zG3Tv3t1t4YiIyDFOl3nXrl2xbt06d2YhIiIn8RugREQSYJkTEUmAZU5EJAGWORGRBFjmREQSYJkTEUmAZU5EJAGWORGRBFjmREQSYJkTEUmAZU5EJAGWORGRBFjmREQSYJkTEUmAZU5EJAGWORGRBFjmREQSYJkTEUmAZU5EJAGWORGRBFjmREQSYJkTEUmAZU5EJAGWORGRBFjmREQSYJkTEUlA68qT8/PzsWLFClitViQlJWHo0KHuykVERA3g9J651WrFsmXL8MYbb2DevHn4+uuv8eOPP7ozGxEROcjpMj916hTuvfdetGnTBlqtFn379kVeXp47sxERkYM0QgjhzBP37duH/Px8pKamAgD27NmDkydP4sUXX6w1ncFggMFgAABkZGS4GJeIiOrS6B+A6vV6ZGRkuK3IX3/9dbeMc7dnANSRQw0ZAHXkUEMGQB051JABUEcOT2VwusxbtmyJixcvKrcvXryIli1buiUUERE1jNNlHhYWhnPnzsFoNMJsNiM3Nxc9e/Z0ZzYiInKQ9/Tp06c780QvLy/ce++9WLRoEbZt24bExEQkJCS4OV7dOnfu7JH5qD0DoI4casgAqCOHGjIA6sihhgyAOnJ4IoPTH4ASEZF68BugREQSYJkTEUnAY2W+ZcsWTJo0CQsXLmzwcz///PNGSPS/TKNGjcKGDRtsTldRUYEvv/xSuV1aWorMzMxGyeROu3fvxrJlyxya1mg0Ij093eV5jh8/HleuXKl3Gle2BUcUFhZi+fLlAIDDhw/j+PHjjTKfhuTwBEe358biyPZ283Z2+vRpHDx4sN7pR4wYAaD2e64h27UnePp1tsWla7M0xPbt2zF16lQEBwc3+Lnr16/Hr3/96zuWqaKiAtu3b8cjjzwC4Pppme4oPnuEEBBCwMtLrj+gXNkW7LFYLAgLC0NYWBiA62Xu7++PLl26uH1e9tycwxMac702htOnT6OwsBDdu3e3O21D33MNee9YrVaX3mOefp1t8UiZf/DBByguLsZ7772HxMRE5OXl4dq1a/D19UVaWhpCQkKwe/du7N+/HyaTCcXFxejVqxeee+45rF69GjU1NZgyZQrat2+PiRMn4i9/+QsuXryIa9euYciQIdDr9bBarViyZAm+++47AMBDDz2Enj17Yt68eZg1axYA4Ny5c5g/fz5mzZpVK9NDDz2E4uJivPjii7h8+TI+/PBDGI1GAMBLL72ErVu34vz585gyZQpiY2PxyCOPYNasWcjMzERNTQ2WLl2KwsJCeHt74/nnn0dMTIzN5bHHaDTi3XffRXh4OL777jv06dMHBw8exLVr19CrVy+kpKQAQJ3rAAB27dqFDRs2ICAgAB07doSPj4/Dr5PFYsHChQtRVFSEdu3aYcKECThx4gRWrVqllOSYMWPg4+ODgoKCOu+/oaamBnPmzEGvXr3Qr18/zJs3D6WlpSgpKUFVVVW928Kbb76J1NRUtG/fHgAwffp0jBgxAm3atMHixYthNBrh5+eHsWPHomPHjli3bh2Ki4thNBoRHByMQYMGITs7G6NHj8aOHTvg5eWFr776CqNHj0ZoaCg++OAD5TsSL7zwArp27YojR45gxYoVAACNRoMZM2agSZMmda6n6upqZXmsViuefvpptG7dGitXroTJZIJWq8W0adPw3XffITs72yNfGrG1PbtTXducre0tKysLPXr0UM5wGzFiBFatWqWMZTabsXbtWtTU1ODYsWN46qmn0LdvX5vzNhqNynsOuP69lunTp6O0tBSJiYlITk6+7b3zxz/+ERs2bEBhYSFqamqQkJCgvH/Gjx+PPn36oKCgAL1798Y333xzW0/MmDGjwa9zdXU1li9fjjNnzsBisSA5ORkPPvhgvX2Qn5+PNWvWwGq1IjAwENOmTbM5Tr2Eh6SlpYmysjJRUVEhzGazEEKI//73v2L27NlCCCF27dolxo8fLyoqKoTJZBLjxo0TFy5cEEII8dxzz9Ua6+rVq0IIIUwmk3jllVfElStXRGFhoXj77beVacrLy4UQQkyfPl0UFRUJIYRYvXq12LJly22Zdu3aJZYuXSqEEGLu3Lli8+bNQgghLBaLqKioEMXFxeKVV15Rnnfz7U2bNomsrCwhhBA//vijSE1NFSaTqd7lqU9xcbFISUkRx48fF/n5+eL9998XVqtVWCwWMXPmTHH48GGb66C0tFSkpqaKsrIyce3aNfHWW28py+XIfJOTk8XRo0eFEEJkZWWJzz77TKSmpoqzZ88KIYRYtGiR2Lx5szCZTHXef2OdFhcXi7ffflvs3r1bCCHE3r17xZIlS5R53choa1vIzs4Wa9euFUIIUVpaKiZOnCiEEGLZsmVi3bp1QgghCgoKxOTJk4UQQqxdu1a8+uqrwmQyCSGEOHTokJg5c6by2MaNG5V5z58/X1nGCxcuiJdfflkIIcTMmTOV+6uqqpRcdbl1eSoqKsT48ePFyZMnldtms7lWDk+oa3t2p1u3uYsXL9rc3v7617+KvXv3Ks+98R6++b3jSE5bzxszZoy4cuWKkuXUqVO13ju3ZrZYLOJPf/qTOH36tBDi+rrasGGDMl1dPeHM67x69WqRk5MjhLjeQRMnThRVVVU2+6CsrEykpqaK4uLiWnltjVMfjx1muaGyshJZWVk4f/48gOt7gzfExMQgICAAANCuXTuUlJRAp9PdNsaWLVuUi3qVlJTg3LlzCAkJgdFoxPLly9G9e3fExsYCAB5++GHs2rULL7zwAvbu3Yv33nuv3nyHDh3ChAkTAFw/lz4gIADl5eU2pz927BgeffRRAEBoaChatWqFc+fONWh5bqXT6RAREYGPPvoI3377LV599VUA1/cIz58/j6ioqDrXweXLlxEdHY3mzZsDAPr06aNkcURwcDC6du0KAOjfvz/+8Y9/oHXr1ggJCQEADBgwAF9++SWio6PrvP9Xv/oVAGD27Nl44oknkJiYCADo0KEDVq1ahY8//hg9evRQ/qS1tS307dsX77zzDlJSUrB3715l7+7YsWPKn9oxMTEoLy9HZWUlAKBnz57w9fW1u4wFBQW1ru5ZWVmJ6upqdO3aFR999BH69euH3r1713uo4tbladq0KYKCgnD//fcDgPKay+bWbW7Pnj0ubW+uiI2NRWBgIACgV69eOHbsGB588EHlvXNDbm4u/vnPf8JiseDSpUv48ccf0bFjRwCo9ZdAXT1x9erVBr/O3377LQ4cOIDs7GwA1/9CLSkpAVB3H5SXlyMyMhKtW7cGADRr1qzecdq1a2dznXi8zNeuXYvo6GhMmTIFRqMRM2bMUB67+c90Ly+vWkV/w+HDh1FQUIB33nkHfn5+mD59Oq5du4ZmzZph9uzZyM/Px/bt25Gbm4u0tDT07t0bn332GWJiYnDfffcpG4AnOLI8dfH391f+PXToUAwaNKjW47bWgas0Gk2t2/b+I7OlS5cuyM/PR79+/aDRaBASEoJZs2bh4MGD+OSTT1BRUQHA9rbQsmVLBAYG4vvvv0dubi7GjBljd55+fn4OZRNC4N13372t+IcOHYru3bvj4MGDmDp1Kt58802EhobWOcatyxMTE+PQvO9mdW1zISEhNi977e3tDavVCuD6MWmz2dyo+W5suze/d4xGI7KzszFz5kw0a9YMWVlZtd4nN28zdfVEYGBgg19nIQTS09OVHZ0bTp061aA+sDVOfTz+yVplZaVyDZfdu3c79BytVqtsDJWVlWjatCn8/Pxw9uxZnDx5EgBw5coVWK1WJCQkYNiwYSgqKgIA+Pr6Ii4uDkuXLsVDDz1kd17dunXD9u3bAVzfCCsrK9GkSRNUVVXVOX1kZCS++uorAMBPP/2EkpKSBr0A9YmLi8OuXbtQXV0N4Pon+mVlZTbXQXh4OI4cOYKrV6/CbDZj3759DZpfSUkJTpw4AQD417/+hbCwMBiNRmXPec+ePYiKilL+Crr1/htSUlLQtGlT5YyD0tJS+Pr6on///njiiSdqvZa2toU+ffpg48aNqKysVPakunbtqqzrw4cPIzAw0O5ecJMmTZT1B1zfo9u2bZty+/Tp0wCA8+fPo0OHDhg6dCjCwsJw9uxZm2PeujynTp3CpUuXcOrUKQBAVVWVw/9x3y3q2uZqampsbm+tWrVSPr/av39/nevD39/f5vvKnoKCApSXl6OmpgZ5eXl1fsBdWVkJf39/BAQE4PLly8jPz7c5Xl094czrHBcXh61bt0L8/3cxb/SQLRERETh69KjyGd2NnaeGjgPcgT3zJ598EllZWfj8888d+hQbAJKSkjBlyhTcd999GDduHHbs2IFJkyahbdu2CA8PB3B9xS9ZskTZGxg+fLjy/H79+uHf//434uLi7M5r5MiR+OCDD7Bz5054eXlhzJgxiIiIQJcuXZCeno74+HjlrBYA+OUvf4mlS5ciPT0d3t7eSEtLa9CHjvWJi4vD2bNn8eabbwK4vvH//ve/R3x8fJ3rICgoCMnJyXjrrbcQEBCATp06NWh+ISEh2LZtG5YsWYLQ0FCMGjUK4eHhmDt3rvJB56BBg+Dj44O0tLTb7r/ZqFGjsGTJEnz88ceIiYnBxx9/DI1GA61WqxRwfdtCQkICVq5ciaefflq5LyUlBYsXL8bkyZPh5+eH8ePH212mHj16YO7cucjLy8Po0aMxatQoLFu2DJMnT4bFYkFkZCTGjh2LLVu24PDhw9BoNGjXrh0eeOABm2P+8MMPtZbnpZdeghACK1asQE1NDXx9fTF16tSGrHrVq2ubq297S0pKwuzZszFlyhTExcXV+ZdTTEwMNm7ciClTptj9APRWYWFhyMzMxMWLF5GYmKjseNysU6dO6NSpEyZNmoTg4GC7ZzTd2hPOvM7PPPMMVq5cicmTJ0MIgdatW9f7AXjz5s0xduxYzJkzB0IING/eHFOnTm3wOMDP5Ov8mzZtQmVlJYYNG3anoxCRSt3tPSHXCcx1mD17Nvbs2YMhQ4bc6ShEpFIy9MTPYs+ciEh20u+ZExH9HLDMiYgkwDInIpIAy5zICevWrWu0qz4SOYNlTtJYv379bZdrmDhxYp33ff31156MRtToWOYkjcjISBw/flz54tilS5dgsVhQVFRU677z588jMjLS4XFl+zYnycnj3wAlaiz3338/LBYLTp8+jc6dO+Po0aOIjo5GcXFxrfvatGkDAJg1axaOHTuGZs2a4cknn1QuI7xu3TqcOXMGPj4+OHDgAJ5//nl069YNWVlZKCoqQnh4uNsu2UDkLtwzJ2lotVrl+jQAcPToUXTt2lW5XvmN+yIjI7FgwQIEBwfjb3/7G9LT07FmzRocOnRIGWv//v1ISEjAihUrkJiYiAULFqBz585YtmwZnn76aeTk5NyRZSSyhWVOUomMjMTRo0cBXL9kbmRk5G33RUVF4dixY/jtb38LX19fdOrUCUlJSbUKOiIiAr169YKXlxeuXLmCwsJCPPvss1JJz/AAAAFkSURBVPDx8UFUVBR69OhxR5aPyBaWOUnlRlGXl5fjypUraNu2LSIiInDixAmUl5fjhx9+QGhoKJo1a1brl4R0Oh1KS0uV2zdfz7y0tBRNmzatdXnVVq1aeWaBiBzEMiepREREoLKyEgaDQblKXkBAAIKCgmAwGNCyZUsEBQWhvLy81uVXS0pKlMvx3iooKAgVFRW1LqV74wcHiNSCZU5S8fX1RVhYGL744gvlV5OA69dC/+KLLxAZGQmdTocuXbrg73//O2pqavD9999j165dyi8j3apVq1YICwvDunXrYDabcezYMRw4cMBTi0TkEJY5SScqKgplZWW3lXlZWZlySuIf/vAHXLhwAb/73e8wZ84cJCcnKz81WJeJEyfi1KlTGDVqFD799FP079+/0ZeDqCF41UQiIglwz5yISAIscyIiCbDMiYgkwDInIpIAy5yISAIscyIiCbDMiYgkwDInIpLA/wGzZvE2D5yi6AAAAABJRU5ErkJggg==\n", "text/plain": [ "
" ] }, "metadata": { "tags": [] } } ] }, { "cell_type": "markdown", "metadata": { "id": "AA3WOU76toUC" }, "source": [ "Since we want diversity and variety, we can take the most frequent words “fantasy” and “fiction” and filter by unlike or different words in the context of book genres. These might be words like non-fiction, economics, or entrepreneurial." ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 266 }, "id": "wCJgnsN9topY", "outputId": "6f23920e-e1c7-4331-df2e-ca5ac1d69579" }, "source": [ "# Filter by unlike words\n", "lor_recs_filter = lor_recs[(lor_recs['tag_name'].str.contains('non-fiction')) & (lor_recs['tag_name'].str.contains('economics')) & (lor_recs['tag_name'].str.contains('entrepreneurial'))]\n", "lor_recs_filter" ], "execution_count": 33, "outputs": [ { "output_type": "execute_result", "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titlesimilaritytag_nametotal_tags%_common_tags
8870Zero to One: Notes on Startups, or How to Buil...0.070141to-read favorites currently-reading books-i-ow...10023.0
9118The $100 Startup: Reinvent the Way You Make a ...0.064657to-read favorites currently-reading books-i-ow...10022.0
9271The Dip: A Little Book That Teaches You When t...0.061224to-read favorites currently-reading books-i-ow...10023.0
9526The Lean Startup: How Today's Entrepreneurs Us...0.054029to-read favorites currently-reading books-i-ow...10024.0
9830The Art of the Start: The Time-Tested, Battle-...0.040467to-read favorites currently-reading books-i-ow...10022.0
9881The E-Myth Revisited: Why Most Small Businesse...0.037058to-read favorites currently-reading books-i-ow...10022.0
9890Business Model Generation0.036355to-read favorites currently-reading books-i-ow...10020.0
\n", "
" ], "text/plain": [ " title ... %_common_tags\n", "8870 Zero to One: Notes on Startups, or How to Buil... ... 23.0\n", "9118 The $100 Startup: Reinvent the Way You Make a ... ... 22.0\n", "9271 The Dip: A Little Book That Teaches You When t... ... 23.0\n", "9526 The Lean Startup: How Today's Entrepreneurs Us... ... 24.0\n", "9830 The Art of the Start: The Time-Tested, Battle-... ... 22.0\n", "9881 The E-Myth Revisited: Why Most Small Businesse... ... 22.0\n", "9890 Business Model Generation ... 20.0\n", "\n", "[7 rows x 5 columns]" ] }, "metadata": { "tags": [] }, "execution_count": 33 } ] }, { "cell_type": "markdown", "metadata": { "id": "-gvrdA9mtsep" }, "source": [ "This narrows down the list and only include books that contain “non-fiction”, “economics”, or “entrepreneurial” in the book tags. To ensure our reader is recommended a good book, we merge ‘average_rating’ back into the dataset and sort the results by the highest average book rating." ] }, { "cell_type": "code", "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 266 }, "id": "n93olb_htrtS", "outputId": "835ac73b-c649-4025-c99e-bb3be42aa0b7" }, "source": [ "# Merge recommendations with ratings\n", "lor_recs_filter_merge = pd.merge(books[['title', 'average_rating']], lor_recs_filter, left_on='title', right_on='title', how='inner')\n", "# Sort by highest average rating\n", "lor_recs_filter_merge = lor_recs_filter_merge.sort_values(by=['average_rating'], ascending=False)\n", "lor_recs_filter_merge" ], "execution_count": 35, "outputs": [ { "output_type": "execute_result", "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
titleaverage_ratingsimilaritytag_nametotal_tags%_common_tags
1Zero to One: Notes on Startups, or How to Buil...4.170.070141to-read favorites currently-reading books-i-ow...10023.0
4Business Model Generation4.160.036355to-read favorites currently-reading books-i-ow...10020.0
0The Lean Startup: How Today's Entrepreneurs Us...4.040.054029to-read favorites currently-reading books-i-ow...10024.0
2The E-Myth Revisited: Why Most Small Businesse...3.980.037058to-read favorites currently-reading books-i-ow...10022.0
3The $100 Startup: Reinvent the Way You Make a ...3.850.064657to-read favorites currently-reading books-i-ow...10022.0
6The Dip: A Little Book That Teaches You When t...3.830.061224to-read favorites currently-reading books-i-ow...10023.0
5The Art of the Start: The Time-Tested, Battle-...3.820.040467to-read favorites currently-reading books-i-ow...10022.0
\n", "
" ], "text/plain": [ " title ... %_common_tags\n", "1 Zero to One: Notes on Startups, or How to Buil... ... 23.0\n", "4 Business Model Generation ... 20.0\n", "0 The Lean Startup: How Today's Entrepreneurs Us... ... 24.0\n", "2 The E-Myth Revisited: Why Most Small Businesse... ... 22.0\n", "3 The $100 Startup: Reinvent the Way You Make a ... ... 22.0\n", "6 The Dip: A Little Book That Teaches You When t... ... 23.0\n", "5 The Art of the Start: The Time-Tested, Battle-... ... 22.0\n", "\n", "[7 rows x 6 columns]" ] }, "metadata": { "tags": [] }, "execution_count": 35 } ] }, { "cell_type": "markdown", "metadata": { "id": "-ygO0hRwtv43" }, "source": [ "What appears at the top of the list — Zero to One. We engineered our way into recommending diversity. Here’s an alternative solution. Instead of recommendations based on book tags of the individual book, we can make recommendations based on categories. The rule: each recommendation can still have similarities to the original book, but it must be a unique category." ] }, { "cell_type": "markdown", "metadata": { "id": "-jBLsTTFt54i" }, "source": [ "Instead of 5 books with similar book tags to Lord of the Rings, the result should be 5 books with similar book tags, but with a different category to Fantasy, such as Science Fiction. Subsequent results would follow the same logic. This would “diversify” the categories of books the user sees, while maintaining a chain of relevancy. It would display: Fantasy → Science Fiction → Technology → Entrepreneurship → Biographies." ] }, { "cell_type": "markdown", "metadata": { "id": "HyKt6H9Ot9v_" }, "source": [ "This categorization becomes a sort within a sort to ensure a quality, relevant, and diverse read. This concept could more systematically connect books like Lord of the Rings and Zero to One together, eventually scaling to different product types or industries, such as music." ] } ] }