api


In [1]:
import requests

In [3]:
headers = {'User-Agent': 'WeRead/1.5.8 WRBrand/Meizu Dalvik/2.1.0 (Linux; U; Android 5.1; M3s Build/LMY47I)',\
           'accessToken': '_vJgP0bU',\
           'vid': '7649467'}
params = {}

In [4]:
from pymongo import MongoClient
client = MongoClient()
db = client.weread
books = db.books
users = db.users

In [5]:
from py2neo.ogm import GraphObject, Property, Label, RelatedObjects, RelatedTo, RelatedFrom
from py2neo import Graph, NodeSelector
graph = Graph()
selector = NodeSelector(graph)
url_login = 'https://i.weread.qq.com/login' data = {"code":"061af7f51aT7wN1GFNc51XOQe51af7f6"}#,"deviceId":"3433144265208470915270725304","mailDeviceId":"353513448699660263466296533245"} r = requests.post(url_login,headers={'User-Agent': 'WeRead/1.5.8 WRBrand/Meizu Dalvik/2.1.0 (Linux; U; Android 5.1; M3s Build/LMY47I)','Connection': 'Keep-Alive'},data=data) j = r.json() j
#用户信息 url_user_profile = ''' https://i.weread.qq.com/user/profile?vid={}&gender=1&signature=1\ &vDesc=1&location=1&totalReadingTime=1&currentReadingTime=1&finishedBookCount=1\ &followerCount=1&followingCount=1&buyCount=1&reviewCount=1&reviewLikedCount=1\ &reviewCommentedCount=1&likeBookCount=1&isFollowing=1&isFollower=1&isBlackMe=1\ &isInBlackList=1&bookReviewCount=1&noteBookCount=1&exchangedMoney=0&recentReadingBooks=0\ &booklistCount=1&booklistCollectCount=1&articleBookId=1&articleCount=1&articleDraftCount=1\ &articleReadCount=1&articleSubscribeCount=1&articleWordCount=1&lectureCount=1&\ lectureListenCount=1&lectureLikedCount=1&lectureCommentedCount=1 ''' r = requests.get(url_user_profile.format(7649467),headers=headers) j = r.json() j

In [7]:
def get_user_profile(vid):
    url_user_profile = '''
                        https://i.weread.qq.com/user/profile?vid={}&gender=1&signature=1\
                        &vDesc=1&location=1&totalReadingTime=1&currentReadingTime=1&finishedBookCount=1\
                        &followerCount=1&followingCount=1&buyCount=1&reviewCount=1&reviewLikedCount=1\
                        &reviewCommentedCount=1&likeBookCount=1&isFollowing=1&isFollower=1&isBlackMe=1\
                        &isInBlackList=1&bookReviewCount=1&noteBookCount=1&exchangedMoney=0&recentReadingBooks=0\
                        &booklistCount=1&booklistCollectCount=1&articleBookId=1&articleCount=1&articleDraftCount=1\
                        &articleReadCount=1&articleSubscribeCount=1&articleWordCount=1&lectureCount=1&\
                        lectureListenCount=1&lectureLikedCount=1&lectureCommentedCount=1 
                        '''
    r = requests.get(url_user_profile.format(vid),headers=headers)
    j = r.json()
    return j
#get_user_profile(19130121)
#用户书单 url_booklists = 'https://i.weread.qq.com/booklists?userVid={}&type=1'#&synckey=0&count=4' r = requests.get(url_booklists.format(7649467),headers=headers)#19130121 j = r.json() j
#想法 [关注的人(+我) listType=1,7][我的 listType=6,9,11][微信好友 listType=2,8][关注的人(-我) listType=4][精选 listType=10] 13? url_review_list = 'https://i.weread.qq.com/review/list?listType=14&userVid={}'#&count=2'#&rangeType=1&mine=0&listMode=1'#synckey=1489327501& r = requests.get(url_review_list.format(7649467),headers=headers)#19130121 j = r.json() j for i in j['reviews']: print i['review']['author']['name'],i['review']['book']['title'],i['review']['content']
#读完书籍列表 url_book_finishreading = 'https://i.weread.qq.com/book/finishreading?userVid={}'#synckey=1491920751& r = requests.get(url_book_finishreading.format(19130121),headers=headers)#19130121 j = r.json() for i in j['books']: print i['author'],i['title'] j

In [8]:
def get_book_finishreading(userVid):
    url_book_finishreading = 'https://i.weread.qq.com/book/finishreading?userVid={}'
    r = requests.get(url_book_finishreading.format(userVid),headers=headers)
    j = r.json()
    return [book['bookId'] for book in j['books']]
#get_book_finishreading(7649467)
#书架 url_shelf_friendsshelf = 'https://i.weread.qq.com/shelf/friendsshelf?userVid={}'#synckey=1491920751& r = requests.get(url_shelf_friendsshelf.format(19130121),headers=headers)#19130121 j = r.json() for i in j['books']: print i['author'],i['title'],i['category'],i['intro'],i['price'],i['publisher'] j

In [9]:
def get_shelf_friendsshelf(userVid):
    url_shelf_friendsshelf = 'https://i.weread.qq.com/shelf/friendsshelf?userVid={}'
    r = requests.get(url_shelf_friendsshelf.format(userVid),headers=headers)
    j = r.json()
    return [book['bookId'] for book in j['books']]
#get_shelf_friendsshelf(19130121)[:5]
#想法 ? url_review_list = 'https://i.weread.qq.com/review/list?listType=14&synckey=0&userVid={}&count=20&mine=0&listMode=2' r = requests.get(url_review_list.format(19130121),headers=headers)#19130121 j = r.json() j
#想法 单条 url_review_single = 'https://i.weread.qq.com/review/single?reviewId={}'#&allReply=1&bookReviewCount=1&repost=1' r = requests.get(url_review_single.format('19130121_6PmpVoqIZ'),headers=headers)#reviewId j = r.json() j print j['review']['author']['name'],j['review']['book']['title'],j['review']['content']
#想法 [关注的人-bookId listType=4][bookId listType=8][关注的人-bookId listType=5 评分][bookId 书籍评论精选 listType=3 &maxIdx=1000000&tips=1&listMode=1] url_review_list = 'https://i.weread.qq.com/review/list?listType=5&bookId=852290'#&listMode=1 全信息'#&synckey=0&listMode=1' r = requests.get(url_review_list,headers=headers)#19130121 j = r.json() j for i in j['reviews']: print i['review']['author']['name'],i['review']['book']['title'],i['review']['content']

In [10]:
def get_book_review_list(bookId):
    url_review_list = 'https://i.weread.qq.com/review/list?listType=3&bookId={}&maxIdx=1000000&tips=1&listMode=1'
    r = requests.get(url_review_list.format(bookId),headers=headers)
    j = r.json()
    return j
#get_book_review_list(852290)
#书籍信息 url_book_info = 'https://i.weread.qq.com/book/info?bookId={}' r = requests.get(url_book_info.format(852290),headers=headers) j = r.json() j print j['title']

In [11]:
def get_book_info(bookId):
    url_book_info = 'https://i.weread.qq.com/book/info?bookId={}'
    r = requests.get(url_book_info.format(bookId),headers=headers)
    j = r.json()
    return j
#get_book_info('852290')
#书籍演讲者 url_lecture_presenter = 'https://i.weread.qq.com/lecture/presenter?bookId={}' r = requests.get(url_lecture_presenter.format(852290),headers=headers) j = r.json() j
#书籍章节信息 url_book_chapterInfos = 'https://i.weread.qq.com/book/chapterInfos' data = {"bookIds":["852290"],"synckeys":[0]} r = requests.post(url_book_chapterInfos.format(852290),headers=headers,data=data) j = r.json() j

In [12]:
def get_book_chapterInfos(bookIds):
    url_book_chapterInfos = 'https://i.weread.qq.com/book/chapterInfos'
    data = {"bookIds":[bookIds],"synckeys":[0]}
    r = requests.post(url_book_chapterInfos.format(852290),headers=headers,data=data)
    j = r.json()
    return j
#get_book_chapterInfos(852290)

In [13]:
#当天同时阅读
url_review_sametimereading = 'https://i.weread.qq.com/review/sametimereading?bookId={}'#&maxIdx=0&count=20'
r = requests.get(url_review_sametimereading.format(852290),headers=headers)
j = r.json()
j


Out[13]:
{u'maxShowCount': 50,
 u'readingList': [{u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5e7f\u4e1c \u6df1\u5733',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IxvcX0MemIZuTEDMHyhbpdsHLzl21G2mfOYGNKCQ7PMu3tr3Mjes9sj8aw2fTrzKdSAfMeUmw4RmpNRQ7w7hOoK/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Damon',
     u'userVid': 3946101,
     u'vDesc': u'\u4e0d\u5351\u4e0d\u4ea2'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'84',
    u'createTime': 1494562961,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 105,
    u'readingTime': 59600,
    u'reviewId': u'3946101_6PUO2LnBy',
    u'startReadingTime': 1492869639,
    u'type': 3,
    u'userVid': 3946101},
   u'reviewCount': 0,
   u'reviewId': u'3946101_6PUO2LnBy',
   u'signature': u'\u9053\u5728\u5929\u5730\u95f4\uff0c\u5176\u5927\u65e0\u5916\uff0c\u5176\u5c0f\u65e0\u5185',
   u'totalReadingTime': 0,
   u'vid': 3946101,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u610f\u4e49',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 10,
    u'content': u'\u8fd9\u6240\u8c13\u7684\u610f\u4e49\uff0c\u4e5f\u662f\u522b\u4eba\u5f3a\u884c\u704c\u8f93\u7ed9\u4f60\u7684\uff0c\u8fd9\u6839\u672c\u5c31\u662f\u5047\u610f\u4e49\uff0c\u653e\u5f03\u4e86\u5047\u610f\u4e49\uff0c\u6362\u7684\u4e86\u771f\u529b\u91cf\uff0c\u518d\u6b63\u786e\u4e0d\u8fc7\u4e86\n',
    u'createTime': 1494067207,
    u'range': u'771-773',
    u'reviewId': u'3946101_6QfTf6ENp',
    u'type': 1,
    u'userVid': 3946101}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5317\u4eac',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1ViaG6zFblftVxMbwFibRiaNyGib2f0hs5JsbSJu0dRy4icLqjgWasCSlibaicO6kxWk7Nst57R8yCrpP3N/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u8346\u5168\u559c',
     u'userVid': 29621137},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'83',
    u'createTime': 1494562685,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 57,
    u'readingTime': 53461,
    u'reviewId': u'29621137_6OtK9LTZw',
    u'startReadingTime': 1487810857,
    u'type': 3,
    u'userVid': 29621137},
   u'reviewCount': 0,
   u'reviewId': u'29621137_6OtK9LTZw',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 29621137,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u76f8\u53cd\uff0c\u73b0\u4ee3\u6027\u7684\u7406\u5ff5\u57fa\u7840\u662f\uff1a\u7ecf\u6d4e\u589e\u957f\u4e0d\u4ec5\u6709\u53ef\u80fd\uff0c\u800c\u4e14\u8fd8\u7edd\u5bf9\u5fc5\u8981\u3002\u867d\u7136\u7948\u7977\u3001\u884c\u5584\u548c\u51a5\u60f3\u80fd\u5e26\u6765\u5fc3\u7075\u7684\u5b89\u6170\u548c\u542f\u53d1\uff0c\u4f46\u60f3\u89e3\u51b3\u9965\u8352\u3001\u761f\u75ab\u548c\u6218\u4e89\u7b49\u95ee\u9898\uff0c\u552f\u4e00\u7684\u65b9\u6cd5\u5c31\u662f\u589e\u957f',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 10,
    u'content': u'\u7528\u4ec0\u4e48\u65b9\u5f0f\u589e\u957f\u90a3\u3002\u7528\u79d1\u6280\u561b\uff1f\u7528\u5b97\u6559\u561b\uff1f\u53ea\u671b\u7740\u4e00\u76f4\u589e\u957f\u561b\uff1f[\u6487\u5634]\n',
    u'createTime': 1493735214,
    u'range': u'5786-5864',
    u'reviewId': u'29621137_6Qa2Rhj5i',
    u'type': 1,
    u'userVid': 29621137}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u4e0a\u6d77 \u6768\u6d66',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM4yGRNgG1GIcxFWznJ23JjoRVnF8Srd1UblAIgibLM855yRPPOXmZ5sLibfsOjsyj0sU2m68xxPCmAw/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u"it's ok",
     u'userVid': 26222431},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'3',
    u'createTime': 1494562565,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 12,
    u'readingTime': 4943,
    u'reviewId': u'26222431_6Qlmgot8t',
    u'startReadingTime': 1494377795,
    u'type': 3,
    u'userVid': 26222431},
   u'reviewCount': 0,
   u'reviewId': u'26222431_6Qlmgot8t',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 26222431,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u7ee7\u9965\u8352\u4e4b\u540e\uff0c\u4eba\u7c7b\u7684\u7b2c\u4e8c\u5927\u654c\u4eba\u662f\u761f\u75ab\u548c\u4f20\u67d3\u75c5\u3002\u7531\u5ddd\u6d41\u4e0d\u606f\u7684\u5546\u4eba\u3001\u5b98\u5458\u548c\u671d\u5723\u8005\u6240\u8054\u7ed3\u8d77\u6765\u7684\u7e41\u534e\u57ce\u5e02\uff0c\u65e2\u662f\u4eba\u7c7b\u6587\u660e\u7684\u57fa\u77f3\uff0c\u4e5f\u662f\u75c5\u83cc\u6ecb\u751f\u7684\u6e29\u5e8a\u3002\u4e8e\u662f\uff0c\u4f4f\u5728\u53e4\u96c5\u5178\u6216\u4e2d\u4e16\u7eaa\u4f5b\u7f57\u4f26\u8428\u7684\u6c11\u4f17\u90fd\u5fc3\u91cc\u6709\u6570\u2014\u2014\u4ed6\u4eec\u53ef\u80fd\u5ffd\u7136\u751f\u75c5\uff0c\u77ed\u77ed\u4e00\u5468\u5c31\u8fc7\u4e16\uff1b\u4e5f\u53ef\u80fd\u67d0\u79cd\u6d41\u884c\u75c5\u7a81\u7136\u66b4\u53d1\uff0c\u4e00\u4e0b\u5e26\u8d70\u4ed6\u4eec\u7684\u6574\u4e2a\u5bb6\u5ead\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u5728\u65e5\u76ca\u8d8b\u4e8e\u57ce\u5e02\u5316\u7684\u4f1f\u5927\u56fd\u5bb6\uff0c\u751f\u7269\u79d1\u6280\u8981\u52a0\u6cb9\u4e86\uff0c\u53ef\u80fd\u5c31\u662f\u4e0b\u4e00\u4e2a\u65f6\u4ee3\n',
    u'createTime': 1494379512,
    u'range': u'6144-6309',
    u'reviewId': u'26222431_6Qlo8Cd2w',
    u'type': 1,
    u'userVid': 26222431}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6c5f\u82cf \u626c\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/PiajxSqBRaELmmurv7KgWhcmPRgSbnC5VlJE69zohCGIeOE3iapv8yZmN2NU8oszqeZzl4L1OVib0M47yIzruVOvw/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5f7c\u51fa\u4e8e\u662f\uff0c\u662f\u4ea6\u56e0\u5f7c',
     u'userVid': 1239958},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'10',
    u'createTime': 1494561645,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 2,
    u'readingTime': 1708,
    u'reviewId': u'1239958_6Qm0N6zfC',
    u'startReadingTime': 1494414923,
    u'type': 3,
    u'userVid': 1239958},
   u'reviewCount': 0,
   u'reviewId': u'1239958_6Qm0N6zfC',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 1239958,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6050\u6016\u5206\u5b50\u5c31\u50cf\u4e00\u53ea\u60f3\u8981\u5927\u95f9\u74f7\u5668\u5e97\u7684\u82cd\u8747\u3002\u82cd\u8747\u5982\u6b64\u5f31\u5c0f\uff0c\u51ed\u4e00\u5df1\u4e4b\u529b\u8fde\u4e00\u53ea\u8336\u676f\u4e5f\u632a\u52a8\u4e0d\u4e86\uff0c\u4e8e\u662f\u4fbf\u627e\u6765\u4e00\u5934\u725b\uff0c\u94bb\u5230\u5b83\u7684\u8033\u6735\u91cc\u55e1\u55e1\u53eb\uff0c\u8ba9\u725b\u56e0\u4e3a\u6050\u60e7\u548c\u6124\u6012\u800c\u53d1\u72c2\uff0c\u4ece\u800c\u7834\u574f\u6574\u4e2a\u74f7\u5668\u5e97\u3002\u8fd9\u6b63\u662f\u8fc7\u53bb10\u5e74\u95f4\u5728\u4e2d\u4e1c\u53d1\u751f\u7684\u4e8b\u60c5\u3002\u5982\u679c\u53ea\u9760\u81ea\u5df1\uff0c\u4f0a\u65af\u5170\u6fc0\u8fdb\u7ec4\u7ec7\u7edd\u4e0d\u53ef\u80fd\u63a8\u7ffb\u4f0a\u62c9\u514b\u524d\u603b\u7edf\u8428\u8fbe\u59c6\xb7\u4faf\u8d5b\u56e0\u3002\u4e8e\u662f\u4ed6\u4eec\u53d1\u52a8\u201c9\xb711\u201d\u6050\u6016\u88ad\u51fb\u6fc0\u6012\u7f8e\u56fd\uff0c\u8ba9\u7f8e\u56fd\u7834\u574f\u4e86\u4e2d\u4e1c\u8fd9\u5bb6\u201c\u74f7\u5668\u5e97\u201d\u3002\u73b0\u5728\uff0c\u4f0a\u65af\u5170\u6fc0\u8fdb\u7ec4\u7ec7\u5728\u4e00\u7247\u5e9f\u589f\u4e2d\u91ce\u86ee\u751f\u957f\u3002\u6050\u6016\u5206\u5b50\u5982\u679c\u4ec5\u9760\u81ea\u5df1\uff0c\u6839\u672c\u6ca1\u6709\u80fd\u529b\u628a\u6211\u4eec\u62d6\u56de\u4e2d\u4e16\u7eaa\uff0c\u91cd\u73b0\u201c\u4e1b\u6797\u6cd5\u5219\u201d\u3002\u4ed6\u4eec\u53ea\u80fd\u8bd5\u56fe\u6fc0\u6012\u6211\u4eec\uff0c\u800c\u6700\u540e\u7684\u7ed3\u679c\u5c31\u8981\u770b\u6211\u4eec\u5982\u4f55\u56de\u5e94\u3002\u5982\u679c\u201c\u4e1b\u6797\u6cd5\u5219\u201d\u771f\u7684\u518d\u73b0\uff0c\u6211\u4eec\u5176\u5b9e\u5fc5\u987b\u8d1f\u8d77\u8d23\u4efb\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u597d\u50cf\u7f8e\u56fd\u653f\u5e9c\u6210\u4e3a\u4e86\u725b\uff0c\u800c\u4f0a\u62c9\u514b\u6210\u4e86\u66ff\u7f6a\u7f8a\uff0c\u6050\u6016\u5206\u5b50\u7684\u5fc3\u667a\u679c\u6709\u6b64\u7b49\u9ad8\u660e?',
    u'createTime': 1494463464,
    u'isPrivate': 0,
    u'range': u'24185-24466',
    u'reviewId': u'1239958_6QmRM6Ce2',
    u'type': 1,
    u'userVid': 1239958,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u6d59\u6c5f \u5609\u5174',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EF8vSyAvIiaxPhIbicCJiaztjoQGWNia9dUAhEaWsPlv0TyqTSvo0bAGiazzq7HASXFCLkwSd1cjThqViag/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5c0f\u8def\u60f3\u8981\u9a6c\u7532\u7ebf',
     u'userVid': 429340},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'7',
    u'createTime': 1494561539,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 6,
    u'readingTime': 8831,
    u'reviewId': u'429340_6PwghKUDK',
    u'startReadingTime': 1491475506,
    u'type': 3,
    u'userVid': 429340},
   u'reviewCount': 0,
   u'reviewId': u'429340_6PwghKUDK',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 429340,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6211\u4eec\u5df2\u7ecf\u4e60\u60ef\u8fd9\u4e2a\u4e16\u754c\u6709\u8bb8\u591a\u70b8\u5f39\u88ab\u675f\u4e4b\u9ad8\u9601\uff0c\u8bb8\u591a\u5bfc\u5f39\u65e0\u7528\u6b66\u4e4b\u5730\uff0c\u201c\u4e1b\u6797\u6cd5\u5219\u201d\u548c\u201c\u5951\u8bc3\u592b\u6cd5\u5219\u201d\u88ab\u5b8c\u7f8e\u6253\u7834\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u521a\u770b\u5230\u6253\u7834-\u4e1b\u6797\u6cd5\u5219\u7684\u65f6\u5019\uff0c\u5185\u5fc3\u51fa\u73b0\u7684\u4e00\u4e2a\u8bcd\u5c31\u662f\uff1aNo\uff01\u8fd9\u4e2a\u6cd5\u5219\u5728\u73b0\u5b9e\u4e16\u754c\u8fd8\u662f\u90a3\u4e48\u8d64\u88f8\u88f8\uff1b\u4f46\u662f\u8fd9\u672c\u4e66\u610f\u4e49\u7684\u5f31\u8005\u7684\u7edd\u5730\u53cd\u51fb\uff0c\u53ef\u80fd\u4e5f\u662f\u53e6\u4e00\u79cd\u7a0b\u5ea6\u7684\u6253\u7834\n',
    u'createTime': 1493771156,
    u'range': u'22781-22832',
    u'reviewId': u'429340_6QaG5FaR8',
    u'type': 1,
    u'userVid': 429340}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM4xMCv10ib0MqDEdEJIicaEe4UAtfUDnFJ8bbfSJKCRWC5jkO5Ibo09jhljW05ibLUuAwj54ibheobNeG3Aj8mFaTwkT57syictFhXA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5de6\u83ab',
     u'userVid': 16125083}],
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM4xMCv10ib0MqDEdEJIicaEe4UAtfUDnFJ8bbfSJKCRWC5jkO5Ibo09jhljW05ibLUuAwj54ibheobNeG3Aj8mFaTwkT57syictFhXA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5de6\u83ab',
     u'userVid': 16125083},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'54',
    u'createTime': 1494560689,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 34,
    u'readingTime': 45655,
    u'reviewId': u'16125083_6PDahw1MC',
    u'startReadingTime': 1491867607,
    u'type': 3,
    u'userVid': 16125083},
   u'reviewCount': 0,
   u'reviewId': u'16125083_6PDahw1MC',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 16125083,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u53c8\u6709\u591a\u5927\u53ef\u80fd\u5c06\u4f1a\u8d85\u8fc7\u6211\u4eec\uff1f\n\u4e0b\u4e00\u7ae0\u5c06\u8ba8\u8bba\u667a\u4eba\u7684\u672c\u8d28\u548c\u80fd\u529b\uff0c\u4e00\u65b9\u9762\u8fdb\u4e00\u6b65\u7406\u89e3\u6211\u4eec\u4e0e\u5176\u4ed6\u52a8\u7269\u7684\u5173\u7cfb\uff0c\u53e6\u4e00\u65b9\u9762\u4e5f\u8981\u770b\u770b\u4eba\u7c7b\u53ef\u80fd\u7684\u672a\u6765\uff0c\u4ee5\u53ca\u4eba\u7c7b\u4e0e\u8d85\u4eba\u7c7b\u53ef\u80fd\u6709\u600e\u6837\u7684\u5173\u7cfb\u3002\n',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 5,
    u'content': u'\u5168\u7403\u5927\u578b\u751f\u7269\u6709\u8d85\u8fc790%\u4e0d\u662f\u4eba\u7c7b\u5c31\u662f\u5bb6\u755c\n\u6380\u5f00\u7b2c\u4e8c\u7ae0\uff0c\u9996\u5148\u6620\u5165\u773c\u5e18\u7684\u5c31\u662f\u8fd9\u4e48\u4e00\u53e5\u8bdd\uff0c\u5e73\u6de1\u65e0\u5947\u5374\u53c8\u5f15\u4eba\u65e0\u9650\u9050\u60f3\uff5e\n\n                   \u7b2c\u4e8c\u7ae0\u4eba\u7c7b\u7684\u4e16\u754c\n\u5927\u4f53\u5206\u4e3a\u4e09\u4e2a\u65f6\u4ee3\n\u72e9\u730e\u91c7\u96c6\u65f6\u4ee3\n\u519c\u4e1a\u517b\u6b96\u65f6\u4ee3\n\u5de5\u4e1a\u79d1\u6280\u65f6\u4ee3\n\u7b14\u8005\u5206\u522b\u4ee5\u795e\u8bdd\uff0c\u53e4\u7c4d\u4e3a\u53c2\u7167\uff0c\u4eff\u4f5b\u8fd8\u539f\u4e86\u5c11\u4e8e\u4e09\u4e2a\u65f6\u4ee3\u7684\u539f\u578b\uff08\u4eba\u7c7b\uff09\n\u7b14\u8005\u6682\u5c06\u72e9\u730e\u91c7\u96c6\u65f6\u4ee3\u7684\u5148\u7956\u5f52\u7eb3\u4e3a\u6cdb\u7075\u8bba\u8005\uff0c\u519c\u4e1a\u517b\u6b96\u65f6\u4ee3\u548c\u5de5\u4e1a\u79d1\u6280\u65f6\u4ee3\u5219\u662f\u6709\u795e\u8bba\u548c\u4eba\u6587\u4e3b\u4e49\u7684\u5929\u4e0b\u3002\u8fd9\u4e9b\u4e3b\u5bfc\u5f53\u4e16\u4eba\u7c7b\u7684\u601d\u60f3\u4e4d\u4e00\u770b\u9a6c\u725b\u5176\u98ce\uff0c\u4f46\u4e00\u5207\u53d8\u5316\u7684\u6839\u6e90\u4f9d\u65e7\u662f\u751f\u5b58\uff5e\n\u72e9\u730e\u7684\u5148\u7956\u4e3a\u4e86\u751f\u5b58\uff0c\u4e0d\u5f97\u4e0d\u8352\u91ce\u89c5\u98df\uff0c\u90a3\u4e48\u5728\u6210\u4e3a\u730e\u4eba\u7684\u90a3\u4e00\u523b\uff0c\u4e5f\u540c\u6837\u80a9\u8d1f\u4e86\u730e\u7269\u7684\u8eab\u4efd\u3002\u751f\u5b58\u9700\u8981\u5b66\u4f1a\u4e0e\u540c\u4e00\u7247\u571f\u5730\u4e0a\u522b\u7684\u52a8\u690d\u7269\u8c08\u5224\u59a5\u534f\uff5e\n\u800c\u519c\u4e1a\u65f6\u4ee3\u7684\u4eba\u7c7b\uff0c\u5b66\u4f1a\u4e86\u517b\u6b96\uff0c\u51cf\u5c11\u4e86\u5916\u51fa\u89c5\u98df\u7684\u6b21\u6570\uff0c\u751f\u547d\u4e0d\u518d\u53d7\u8feb\u4e8e\u522b\u7684\u751f\u7269\uff0c\u9010\u6e10\u8131\u79bb\u4e86\u56fa\u6709\u98df\u7269\u94fe\uff0c\u90a3\u4e48\u60f3\u8131\u9896\u800c\u51fa\u81ea\u7136\u9700\u8981\u4e9b\u6b63\u5f53\u7684\u7406\u7531\uff0c\u4e8e\u662f\u5409\u5c14\u4f3d\u7f8e\u4ec0\u795e\u8bdd\uff0c\u521b\u4e16\u7eaa\uff0c\u5723\u7ecf\u51fa\u73b0\u4e86\uff5e\u5728\u6b64\u4ee5\u540e\u4eba\u7c7b\u660e\u767d\u4e86\uff0c\u81ea\u5df1\u4e0d\u540c\u4e8e\u52a8\u7269\uff0c\u662f\u7531\u4e07\u80fd\u7684\u795e\u5355\u72ec\u521b\u9020\u800c\u751f\uff0c\u773c\u524d\u522b\u7684\u751f\u547d\u90fd\u662f\u81ea\u5df1\u7684\u4f34\u751f\u7269\u3002\u4f46\u5373\u4fbf\u5982\u6b64\u4eba\u7c7b\u751f\u5b58\u4f9d\u65e7\u53d7\u7740\u5929\u707e\u5730\u7978\u7684\u5f71\u54cd\uff0c\u6240\u4ee5\u6211\u4eec\u66f4\u9700\u8981\u5411\u795e\u59a5\u534f\u6c42\u52a9\uff5e\n\u73b0\u5982\u4eca\u6211\u4eec\u751f\u6d3b\u7684\u65f6\u4ee3\u53c8\u662f\u4ec0\u4e48\u6837\u5b50\u5462\uff0c\u7b14\u8005\u5728\u6b64\u7528\u4e86\u4e00\u8fde\u4e32\u7edd\u5999\u7684\u6bd4\u55bb\u8bc1\u5b9e\u4e86\u4e00\u53e5\u8bdd\n21\u4e16\u7eaa\u662f\u4e00\u4e2a\u7b97\u6cd5\u4e3b\u5bfc\u7684\u4e16\u7eaa\n\u6240\u8c13\u4e00\u8bed\u70b9\u9192\u68a6\u4e2d\u4eba\uff0c\u6211\u8eab\u5728\u5176\u4e2d\u5374\u4e00\u76f4\u7ba1\u7aa5\u7684\u8ba4\u4e3a\u7b97\u6cd5\u662f\u7406\u5de5\u79d1\u7684\u4ee3\u540d\u8bcd\uff5e\u6587\u4e2d\u63d0\u5230\u7684\u751f\u7269\u7b97\u6cd5\u66f4\u662f\u8ba9\u6211\u8033\u76ee\u4e00\u65b0\uff0c\u770b\u7684\u6211\u5982\u75f4\u5982\u9189\uff5e\n\u4eba\u7c7b\u670999%\u7684\u51b3\u5b9a\uff0c\u5305\u62ec\u5173\u4e8e\u914d\u5076\u3001\u4e8b\u4e1a\u548c\u4f4f\u5904\u7684\u91cd\u8981\u6289\u62e9\uff0c\u90fd\u662f\u7531\u5404\u79cd\u8fdb\u5316\u800c\u6210\u7684\u7b97\u6cd5\u6765\u5904\u7406\uff0c\u6211\u4eec\u628a\u8fd9\u4e9b\u7b97\u6cd5\u79f0\u4e3a\u611f\u89c9\u3001\u60c5\u611f\u548c\u6b32\u671b\u3002\n21\u4e16\u7eaa\u7ecf\u8fc7\u79d1\u6280\u9769\u547d\u6d17\u793c\u7684\u4eba\u7c7b\uff0c\u89e3\u51b3\u4e86\u56f0\u6270\u5148\u7956\u51e0\u5343\u5e74\u7684\u751f\u5b58\u95ee\u9898\n\u9965\u8352\uff0c\u761f\u75ab\uff0c\u6218\u4e89\uff0c\n\u7269\u8d28\u5f62\u6001\u6709\u673a\u5230\u65e0\u673a\u53d8\u5316\n\u5e76\u4e14\u8863\u98df\u4f4f\u884c\u7761\u7b49\u7269\u8d28\u6b32\u4e0d\u65ad\u521b\u65b0\u9ad8\n\u4e0d\u9700\u8981\u5411\u4efb\u4f55\u5b58\u5728\u59a5\u534f\u540e\uff5e\u4eba\u6587\u4e3b\u4e49\u8bde\u751f\n\u8fd9\u4e2a\u65f6\u4ee3\u7684\u4eba\u7c7b\u5df2\u7ecf\u5f00\u59cb\u5411\u795e\u7684\u4f4d\u7f6e\u53d1\u8d77\u731b\u70c8\u7684\u8fdb\u653b\u3002\n\u540c\u4e00\u65f6\u523b\u7684\u6211\u4eec\u4e5f\u8d8a\u6765\u8d8a\u9700\u8981\u77e5\u9053\u4e3a\u4ec0\u4e48\n\u8131\u9896\u800c\u51fa\u7684\u751f\u7269\uff0c\u662f\u4eba\uff01',
    u'createTime': 1493218148,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'38983',
    u'reviewId': u'16125083_6Q0WsoGre',
    u'type': 1,
    u'userVid': 16125083,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLBtYDeRiaaYia6Aez5wQVEQS41jKhWqxqIO1aJYw9lt2WZjqBJv4Ft55XgymTkaLdDlorpTibmM8k0MA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u9759\u99a8\u9601CoCo',
     u'userVid': 2626899,
     u'vDesc': u' \u597d\u6c14\u8d28\u8981\u6bd4\u9ad8\u989c\u503c\u7ecf\u4e45\u8010\u7528\uff0c\u5e76\u4e14\u66f4\u52a0\u8d70\u5fc3'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u5317\u4eac \u4e30\u53f0',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1b1l1jxySLflxYMF9fw5YOSjSHXeMq3GvqiaqxTnbcS46ulOy9j9D46ptM3fH46ia3ZmGtscfKBSb1/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Leon',
     u'userVid': 14967934},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 15,
    u'content': u'91',
    u'createTime': 1494560439,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 66,
    u'readingTime': 36548,
    u'reviewId': u'14967934_6PRMc16cz',
    u'startReadingTime': 1492697542,
    u'type': 3,
    u'userVid': 14967934},
   u'reviewCount': 0,
   u'reviewId': u'14967934_6PRMc16cz',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 14967934,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u533b\u5b66\u6280\u672f\u7684\u53d1\u5c55\u7684\u786e\u5728\u4e0d\u65ad\u63d0\u9ad8\u8bb8\u591a\u4eba\u7684\u751f\u547d\u8d28\u91cf\u548c\u5ef6\u957f\u5bff\u547d\uff0c\u4f46\u4e2a\u4eba\u89c9\u5f97\u8981\u8fbe\u5230\u957f\u751f\u4e0d\u8001\u7684\u5883\u51b5\u7ec8\u7a76\u6e3a\u832b\uff0c\u6bd5\u7adf\u751f\u8001\u75c5\u6b7b\u662f\u81ea\u7136\u89c4\u5f8b\u3002\u4f46\u5982\u4f55\u8ba9\u5148\u8fdb\u7684\u533b\u7597\u6280\u672f\u666e\u60e0\u66f4\u591a\u7684\u4eba\u7fa4\uff0c\u8ba9\u6240\u6709\u5730\u7403\u6210\u5458\u5171\u4eab\uff0c\u8fd9\u662f\u5404\u56fd\u5171\u540c\u7684\u8d23\u4efb\uff0c\u4e5f\u624d\u80fd\u8ba9\u533b\u5b66\u79d1\u6280\u7684\u6210\u5c31\u66f4\u6709\u610f\u4e49\u3002',
    u'createTime': 1492859447,
    u'isPrivate': 0,
    u'range': u'',
    u'reviewId': u'14967934_6PUCV0LkF',
    u'topicRanges': [u'0-0'],
    u'type': 4,
    u'userVid': 14967934,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u5317\u4eac \u4e30\u53f0',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1Qsc7KFceGoQibE1ib4744umXlAb9k9cicWNMaVibuLaQF9nSQd2Ge4S7DDNTNKWf5TIgPLysY41m0Gg/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u675c\u82e5',
     u'userVid': 15032905},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 7,
    u'content': u'98',
    u'createTime': 1494560001,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 25,
    u'readingTime': 13603,
    u'reviewId': u'15032905_6PSOjEjO8',
    u'startReadingTime': 1492756288,
    u'type': 3,
    u'userVid': 15032905},
   u'reviewCount': 0,
   u'reviewId': u'15032905_6PSOjEjO8',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 15032905,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u60f3\u5f97\u5230\u771f\u6b63\u7684\u5e78\u798f\u5feb\u4e50\uff0c\u4eba\u7c7b\u8be5\u505a\u7684\u5e76\u975e\u52a0\u901f\uff0c\u800c\u662f\u653e\u6162\u8ffd\u6c42\u5feb\u611f\u7684\u811a\u6b65\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u4e0d\u77e5\u9053\u8fd9\u79cd\u7c7b\u6bd4\u662f\u5426\u6070\u5f53~\u5927\u57ce\u5e02\u7684\u5feb\u8282\u594f\u4e2d\u5145\u65a5\u7740\u7126\u8651\uff0c\u7d27\u5f20\uff0c\u538b\u529b\uff0c\u518d\u770b\u770b\u8001\u5e74\u4eba\u9000\u4f11\u540e\u7684\u6162\u751f\u6d3b\uff0c\u786e\u5b9e\u662f\u6162\u4e0b\u6765\u624d\u6709\u673a\u4f1a\u53bb\u89c2\u5bdf\u8eab\u8fb9\u7684\u4e00\u5207\u3002\u5730\u94c1\u5feb\u901f\u4e0d\u4f1a\u5835\u8f66\uff0c\u51c6\u65f6\u51c6\u70b9\uff0c\u516c\u4ea4\u4f1a\u9047\u5230\u5835\u8f66\u5e38\u5e38\u4e0d\u51c6\u65f6\uff0c\u4f46\u662f\u516c\u8f66\u80fd\u770b\u5230\u5730\u9762\u4e0a\u7684\u98ce\u666f\uff0c\u8ffd\u6c42\u5feb\u901f\u7684\u540c\u65f6\u4e5f\u610f\u5473\u7740\u5931\u53bb\u4e86\u6b23\u8d4f\u8def\u8fb9\u98ce\u666f\u7684\u673a\u4f1a\u3002',
    u'createTime': 1492990364,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'49440-49473',
    u'reviewId': u'15032905_6PWVOXPRx',
    u'type': 1,
    u'userVid': 15032905,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 0,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8utmQqBiaJVFicKINd6NZeUQjE7xYCZpgic3F82qKD6UlicGiaNUuw4AWmHiaibp4Wia8K3UakUKcAZf6iaYMUYw7wKUUsLDT/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Phoebe',
     u'userVid': 14047653},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 5,
    u'content': u'18',
    u'createTime': 1494559939,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 2,
    u'readingTime': 12685,
    u'reviewId': u'14047653_6PZ9lTjaM',
    u'startReadingTime': 1493116361,
    u'type': 3,
    u'userVid': 14047653},
   u'reviewCount': 0,
   u'reviewId': u'14047653_6PZ9lTjaM',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 14047653,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u4e8b\u5b9e\u5e76\u975e\u5982\u6b64\u3002\u4f0a\u58c1\u9e20\u9c81\u628a\u5e78\u798f\u5feb\u4e50\u5b9a\u4e49\u6210\u81f3\u5584\u7684\u65f6\u5019\uff0c\u5c31\u66fe\u544a\u8beb\u5f1f\u5b50\uff0c\u5feb\u4e50\u662f\u4ef6\u8f9b\u82e6\u7684\u5dee\u4f7f\u3002\u4ec5\u6709\u7269\u8d28\u6210\u5c31\uff0c\u5e76\u4e0d\u80fd\u8ba9\u6211\u4eec\u957f\u4e45\u611f\u5230\u6ee1\u8db3\u3002\u4e8b\u5b9e\u4e0a\uff0c\u76f2\u76ee\u8ffd\u6c42\u91d1\u94b1\u3001\u540d\u8a89\u548c\u6b22\u6109\uff0c\u53ea\u4f1a\u8ba9\u6211\u4eec\u75db\u82e6\u4e0d\u582a\u3002\u4e3e\u4f8b\u6765\u8bf4\uff0c\u4f0a\u58c1\u9e20\u9c81\u5c31\u5efa\u8bae\u5403\u559d\u8981\u9002\u91cf\uff0c\u6027\u6b32\u4e5f\u8981\u8282\u5236\u3002\u4ece\u957f\u8fdc\u6765\u770b\uff0c\u6df1\u539a\u7684\u53cb\u8c0a\u4f1a\u6bd4\u4e00\u591c\u72c2\u6b22\u8ba9\u4eba\u66f4\u5feb\u4e50\u3002\u901a\u5f80\u5e78\u798f\u5feb\u4e50\u7684\u9053\u8def\u5176\u5b9e\u6697\u85cf\u8270\u9669\uff0c\u4f0a\u58c1\u9e20\u9c81\u5219\u4e3a\u6211\u4eec\u89c4\u5212\u51fa\u4e86\u6574\u5957\u9053\u5fb7\u884c\u4e3a\u51c6\u5219\u4ee5\u4f5c\u4e3a\u5f15\u5bfc\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u91d1\u94b1\u4ec5\u4ec5\u5e26\u7ed9\u6211\u4eec\u7684\u662f\u7269\u8d28\u4e0a\u7684\u6ee1\u8db3\uff0c\u5e76\u4e0d\u662f\u5f88\u6b63\u7684\u5feb\u4e50\uff0c\u7cbe\u795e\u4e0a\u7684\u5feb\u4e50\u751a\u662f\u8270\u96be\uff0c\u4f46\u4e5f\u662f\u6211\u4eec\u5e94\u8be5\u6700\u5e94\u8be5\u8ffd\u6c42\u7684\u4e1c\u897f\uff0c\u73cd\u60dc\u53cb\u8c0a\uff0c\u73cd\u7231\u8eab\u8fb9\u7684\u6bcf\u4e00\u4ef6\u4e8b\u60c5\uff0c\u5bf9\u4e8e\u6211\u6765\u8bf4\u5e78\u798f\u5feb\u4e50\u5c31\u662f\u5929\u5929\u53ef\u4ee5\u8bf4\u81ea\u5df1\u559c\u6b22\u7684\u8bdd\uff0c\u89c1\u81ea\u5df1\u559c\u6b22\u7684\u4eba\uff0c\u60f3\u7740\u559c\u6b22\u7684\u4e8b\u60c5[\u5bb3\u7f9e]',
    u'createTime': 1493941593,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'36519-36698',
    u'reviewId': u'14047653_6QdG86I7b',
    u'type': 1,
    u'userVid': 14047653,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 0,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/NrpzR3Ku5JRa2LdsyiaWVPZJIXDZdksdeTnr2l7tvLdN6VUgg0x8vnVPajltjNhNG8HJPUw4QcVicAgdjsYops92pZV33h1ialib/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u65b9\u5347',
     u'userVid': 24904322,
     u'vDesc': u'\u4e0e\u6709\u809d\u80c6\u4eba\u5171\u4e8b\uff0c\u4ece\u65e0\u5b57\u53e5\u5904\u8bfb\u4e66\u3002'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5THRhceFiaTqTiaL7iaqtJtVQIHZRgdgskXdM5U4q1g2NZHsFhTCAibAcJSTxkMYyWLwjr5A4jeCN2fEn/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'GJ',
     u'userVid': 30222904},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2Iyhm0k7mCYEjkdicDMaX8yVUCrxSs0K3SZDnicOIyeCvTskYkwtqeoax60CoLU30jddW3KCiczt6ibdG618H1gytXict/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'susu',
     u'userVid': 11828665},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u4e0a\u6d77 \u5b9d\u5c71',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IzMN3v9icXeunfj2zaDDicIib8rtstYIOLZJjtTHgicCUTm6zibj1OuV6gvruB8sicvE5uGNCo8KVuYPK29fL9DAh0licib/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5915\u5c9a',
     u'userVid': 14454199},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 15,
    u'content': u'88',
    u'createTime': 1494559912,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 94,
    u'readingTime': 162711,
    u'reviewId': u'14454199_6OTSfoPeP',
    u'startReadingTime': 1489295075,
    u'type': 3,
    u'userVid': 14454199},
   u'reviewCount': 0,
   u'reviewId': u'14454199_6OTSfoPeP',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 14454199,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u572821\u4e16\u7eaa\uff0c\u5370\u5ea6\u3001\u5df4\u897f\u6216\u5c3c\u65e5\u5229\u4e9a\u7684\u7cbe\u82f1\u4f1a\u60f3\u505a\u4ec0\u4e48\uff1f\u662f\u8981\u6295\u8d44\u89e3\u51b3\u51e0\u4ebf\u7a77\u4eba\u7684\u95ee\u9898\uff0c\u8fd8\u662f\u8ba9\u5c11\u6570\u767e\u4e07\u5bcc\u7fc1\u5347\u7ea7\uff1f\u572820\u4e16\u7eaa\uff0c\u56e0\u4e3a\u7a77\u4eba\u6709\u519b\u4e8b\u548c\u7ecf\u6d4e\u4ef7\u503c\uff0c\u7cbe\u82f1\u9636\u5c42\u5fc5\u987b\u4e3a\u7a77\u4eba\u89e3\u51b3\u95ee\u9898\uff1b\u4f46\u5230\u4e8621\u4e16\u7eaa\uff0c\u7cbe\u82f1\u9636\u5c42\u6700\u6709\u6548\uff08\u867d\u7136\u5341\u5206\u65e0\u60c5\uff09\u7684\u7b56\u7565\uff0c\u5f88\u53ef\u80fd\u662f\u5e72\u8106\u5207\u65ad\u767e\u65e0\u4e00\u7528\u7684\u4e09\u7b49\u8f66\u53a2\uff0c\u53ea\u8ba9\u5934\u7b49\u8f66\u53a2\u7ee7\u7eed\u524d\u8fdb\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 14,
    u'content': u'\u6ca1\u6709\u7ecf\u6d4e\u80fd\u529b\uff0c\u5c31\u522b\u751f\u80b2\u3002\u201c\u6bcf\u4e00\u4e2a\u5b69\u5b50\uff0c\u90fd\u5e94\u8be5\u5728\u7f8e\u597d\u7684\u73af\u5883\u4e2d\u964d\u4e34\u201d\u3002',
    u'createTime': 1494456654,
    u'isPrivate': 0,
    u'range': u'50125-50265',
    u'reviewId': u'14454199_6QmKlgDcW',
    u'type': 1,
    u'userVid': 14454199,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u6d59\u6c5f \u676d\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8usYRonbVApdKc1BWrHvDgtibJxZvzwWkdxrOCe15Z6iaecsc3cicrHdVvqY4mtM3e6KO1ttRQnsgGzWg/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u535c\u535c',
     u'userVid': 12831792},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'8',
    u'createTime': 1494559779,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 5,
    u'readingTime': 7550,
    u'reviewId': u'12831792_6PQ25JUDb',
    u'startReadingTime': 1492598507,
    u'type': 3,
    u'userVid': 12831792},
   u'reviewCount': 0,
   u'reviewId': u'12831792_6PQ25JUDb',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 12831792,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6050\u6016\u5206\u5b50\u5c31\u50cf\u4e00\u53ea\u60f3\u8981\u5927\u95f9\u74f7\u5668\u5e97\u7684\u82cd\u8747\u3002\u82cd\u8747\u5982\u6b64\u5f31\u5c0f\uff0c\u51ed\u4e00\u5df1\u4e4b\u529b\u8fde\u4e00\u53ea\u8336\u676f\u4e5f\u632a\u52a8\u4e0d\u4e86\uff0c\u4e8e\u662f\u4fbf\u627e\u6765\u4e00\u5934\u725b\uff0c\u94bb\u5230\u5b83\u7684\u8033\u6735\u91cc\u55e1\u55e1\u53eb\uff0c\u8ba9\u725b\u56e0\u4e3a\u6050\u60e7\u548c\u6124\u6012\u800c\u53d1\u72c2\uff0c\u4ece\u800c\u7834\u574f\u6574\u4e2a\u74f7\u5668\u5e97',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u201c\u56db\u4e24\u62e8\u5343\u65a4\u201d\u8868\u8fbe\u7684\u5c31\u662f\u4fe1\u624b\u6cbe\u6765\u7684\u672c\u4e8b\uff0c\u5927\u591a\u65f6\u5019\u60f3\u8868\u73b0\u5f97\u5c31\u662f\u5f97\u5fc3\u5e94\u624b\u3001\u4e86\u7136\u4e8e\u5fc3\uff0c\u4e0d\u7b97\u8912\u4e49\uff0c\u4f46\u591a\u5c11\u900f\u70b9\u5d07\u62dc\u3002\u6b64\u5904\u7684\u82cd\u8747\u4e0e\u725b\u7684\u5217\u5b50\uff0c\u4f3c\u4e4e\u9690\u7ea6\u4e5f\u6709\u6b64\u610f\uff0c\u6240\u4ee5\u4e0d\u8981\u8ba4\u4e3a\u53ea\u6709\u6b63\u65b9\u624d\u662f\u806a\u660e\u7684\uff0c\u5f88\u591a\u65f6\u5019\uff0c\u53cd\u65b9\u5bf9\u4e16\u754c\u5bf9\u4eba\u4e8b\u7684\u8ba4\u77e5\u529b\uff0c\u4e3b\u5bfc\u529b\u8fdc\u80dc\u4e8e\u6b63\u65b9\uff0c\u53ea\u662f\u5728\u672a\u5b8c\u80dc\u4e4b\u524d\u4ed6\u4eec\u88ab\u62ab\u4e0a\u4e86\u82cd\u8747\u7684\u8eaf\u58f3\uff0c\u4e11\u964b\u65e0\u6bd4\u5374\u53c8\u4ee4\u4eba\u751f\u754f\u3002\n',
    u'createTime': 1492932359,
    u'range': u'24185-24269',
    u'reviewId': u'12831792_6PVUvr3Zy',
    u'type': 1,
    u'userVid': 12831792}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6e56\u5357 \u5e38\u5fb7',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ER8r8MFVf37rSd7FyU8FzgInpICVmHfHMSsZUcAvPgMyu3v6Jn06n4baT8NaLc21K1VCmMsP0jbJ2/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u9762\u58c1\u8005',
     u'userVid': 17355052},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'61',
    u'createTime': 1494559599,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 1,
    u'readingTime': 22466,
    u'reviewId': u'17355052_6PqrLrcso',
    u'startReadingTime': 1491145221,
    u'type': 3,
    u'userVid': 17355052},
   u'reviewCount': 0,
   u'reviewId': u'17355052_6PqrLrcso',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 17355052,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\uf100\n\u7b2c7\u7ae0\n\u4eba\u6587\u4e3b\u4e49\u9769\u547d\n\u73b0\u4ee3\u5951\u7ea6\u7ed9\u4e86\u4eba\u7c7b\u529b\u91cf\uff0c\u4f46\u6761\u4ef6\u662f\u6211\u4eec\u4e0d\u518d\u76f8\u4fe1\u6574\u4e2a\u4e16\u754c\u6709\u4e00\u4e2a\u4f1f\u5927\u7684\u5b87\u5b99\u8ba1\u5212\u80fd\u8ba9\u751f\u547d\u6709\u610f\u4e49\u3002\u7136\u800c\uff0c\u5982\u679c\u7ec6\u67e5\u5951\u7ea6\u6761\u6b3e\uff0c\u4f1a\u53d1\u73b0\u6709\u4e00\u6761\u8d56\u76ae\u7684\u4f8b\u5916\u6761\u6b3e\u3002\u5982\u679c\u4eba\u7c7b\u4e0d\u7528\u901a\u8fc7\u4f1f\u5927\u7684\u5b87\u5b99\u8ba1\u5212\u4e5f\u80fd\u627e\u5230\u610f\u4e49\uff0c\u5c31\u4e0d\u7b97\u8fdd\u80cc\u5951\u7ea6\u3002\n\u8fd9\u6761\u4f8b\u5916\u6761\u6b3e\u6b63\u662f\u73b0\u4ee3\u793e\u4f1a\u7684\u6551\u8d4e\uff0c\u56e0\u4e3a\u5982\u679c\u771f\u7684\u6ca1\u6709\u610f\u4e49\uff0c\u5c31\u4e0d\u53ef\u80fd\u7ef4\u6301\u79e9\u5e8f\u3002\u73b0\u4ee3\u793e\u4f1a\u5728\u653f\u6cbb\u3001\u827a\u672f\u548c\u5b97\u6559\u65b9\u9762\u7684\u6590\u7136\u6210\u5c31\uff0c\u4e3a\u4eba\u7c7b\u7684\u751f\u547d\u627e\u5230\u4e86\u610f\u4e49\uff0c\u4f46\u627e\u5bfb\u610f\u4e49\u7684\u8fc7\u7a0b\u4e0e\u4f1f\u5927\u7684\u5b87\u5b99\u8ba1\u5212\u6ca1\u6709\u5173\u7cfb\u3002\u867d\u7136\u6211\u4eec\u73b0\u5728\u77e5\u9053\u81ea',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 11,
    u'content': u'\u672a\u6765\u7b80\u53f2\u76f8\u6bd4\u7b2c\u4e00\u672c\u4eba\u7c7b\u7b80\u53f2\u5dee\u4e86\u8bb8\u591a\uff0c\u5982\u679c\u8bf4\u4eba\u7c7b\u7b80\u53f2\u5c31\u50cf\u662f\u4e00\u4efd\u6a31\u6843\u86cb\u7cd5\uff0c\u7b80\u6d01\u5730\u8bf4\u660e\u4e86\u4eba\u7c7b\u7684\u6765\u610f\u548c\u53bb\u5411\u3002\u90a3\u4e48\u672a\u6765\u7b80\u53f2\u5c31\u50cf\u662f\u4e00\u5757\u96be\u4ee5\u4e0b\u54bd\u7684\u786c\u9762\u5305\u3002\uff0c\u53ea\u4e0d\u8fc7\u662f\u5bf9\u4eba\u7c7b\u7b80\u53f2\u7684\u53e6\u4e00\u79cd\u9648\u8ff0\u3002\u6309\u7167\u4e66\u540d\uff0c\u672a\u6765\u7b80\u53f2\u672c\u5e94\u9488\u5bf9\u5f53\u524d\u79d1\u6280\u53d1\u5c55\u7684\u8d70\u5411\u5206\u6790\u51fa\u672a\u6765\u7684\u53d1\u5c55\u8d8b\u52bf\uff0c\u4f46\u5f88\u53ef\u60dc\uff0c\u7b14\u8005\u5e76\u6ca1\u6709\u638c\u63a7\u5168\u5c40\u7684\u80fd\u529b\uff0c\u770b\u5230\u4e00\u534a\u5c31\u6709\u675f\u4e4b\u9ad8\u9601\u7684\u51b2\u52a8\u3002\u4e24\u672c\u4e66\u770b\u4eba\u7c7b\u7b80\u53f2\u5373\u53ef\uff0c\u672a\u6765\u7b80\u53f2\u91cd\u590d\u592a\u591a\u3002',
    u'createTime': 1494347100,
    u'isPrivate': 0,
    u'range': u'334',
    u'reviewId': u'17355052_6QkOL6cYk',
    u'type': 1,
    u'userVid': 17355052,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u4e91\u5357 \u6606\u660e',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyicCjjkkpe0BzJnicSLu3UYrEaclrXuyzhDdeQnMmmO8PYOJ8QlRDwG87ssbo0yxT5ng6vP6YevnI6b44akQmvgX/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6768\u7b71\u8f69',
     u'userVid': 16012033},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 5,
    u'content': u'99',
    u'createTime': 1494558207,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 1,
    u'readingTime': 113101,
    u'reviewId': u'16012033_6OIWX0rq5',
    u'startReadingTime': 1488674581,
    u'type': 3,
    u'userVid': 16012033},
   u'reviewCount': 0,
   u'reviewId': u'16012033_6OIWX0rq5',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 16012033,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u867d\u7136\u51a0\u4ee5\u672a\u6765\u4e4b\u540d\uff0c\u4f46\u662f\u73b0\u5728\u6709\u8ff9\u53ef\u5faa\uff0c\u662f\u671d\u7740\u4e66\u4e2d\u63cf\u7ed8\u7684\u672a\u6765\u65b9\u5411\u800c\u53bb\u7684\u3002\u60f3\u8d77\u66fe\u7ecf\u8bfb\u8fc7\u7684\u6258\u592b\u52d2\xab\u7b2c\u4e09\u6b21\u6d6a\u6f6e\xbb\u5bf9\u8ba1\u7b97\u673a\u6280\u672f\u7684\u53d1\u5c55\u9884\u8a00\uff0c\u4eca\u5929\u5df2\u7ecf\u5b9e\u73b0\u3002',
    u'createTime': 1494427035,
    u'range': u'',
    u'reviewId': u'16012033_6Qme0L8sI',
    u'star': 100,
    u'topicRanges': [u'0-0'],
    u'type': 4,
    u'userVid': 16012033,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2Iw3gz0tgC2MClMH8JwPIWJocsDibBsTk1xRXiabawIGILx0U1zsd3zZdicjDmbCibbn24sx4TQ5xCoxdBIaLOofTPbK/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u4e00\u5ff5\u8bef\u4f1a',
     u'userVid': 5263565,
     u'vDesc': u'\u5927\u81ea\u7136\u7684\u642c\u8fd0\u5de5'}],
   u'location': u'\u798f\u5efa \u798f\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/PiajxSqBRaEJGeIU0EsGxXr3P0Y2ZPTiaxM4Z9vIHIZHxECWiaeBIAjBZSLuKOqpo6ppfozJkeG2V8tyMvosfgSYA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Accuenergy \u8c2d\u5a1f',
     u'userVid': 16816343},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 5,
    u'content': u'10',
    u'createTime': 1494556256,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 4,
    u'readingTime': 35151,
    u'reviewId': u'16816343_6PXBfYTBj',
    u'startReadingTime': 1493028325,
    u'type': 3,
    u'userVid': 16816343},
   u'reviewCount': 0,
   u'reviewId': u'16816343_6PXBfYTBj',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 16816343,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u4f5b\u6559\u5bf9\u5feb\u4e50\u7684\u770b\u6cd5\uff0c\u4e0e\u751f\u5316\u89c6\u89d2\u6709\u8bb8\u591a\u5171\u540c\u4e4b\u5904\u3002\u4e24\u8005\u90fd\u8ba4\u4e3a\uff0c\u5feb\u611f\u6765\u5f97\u5feb\u53bb\u5f97\u4e5f\u5feb\uff0c\u800c\u5982\u679c\u4eba\u7c7b\u53ea\u662f\u6e34\u6c42\u5feb\u611f\uff0c\u5374\u4e0d\u53bb\u771f\u6b63\u597d\u597d\u4f53\u9a8c\u5feb\u611f\uff0c\u5c31\u4ecd\u7136\u65e0\u6cd5\u6ee1\u8db3\u3002\u4f46\u662f\uff0c\u4e24\u8005\u5374\u6709\u975e\u5e38\u4e0d\u540c\u7684\u89e3\u51b3\u65b9\u6848\u3002\u751f\u5316\u529e\u6cd5\u662f\u5f00\u53d1\u51fa\u5404\u79cd\u4ea7\u54c1\u548c\u7597\u6cd5\uff0c\u4e3a\u4eba\u7c7b\u63d0\u4f9b\u65e0\u6b62\u5883\u7684\u5feb\u611f\uff0c\u8ba9\u4eba\u6c38\u8fdc\u4eab\u6709\u3002\u4f5b\u6559\u7684\u5efa\u8bae\u5219\u662f\u51cf\u5c11\u5bf9\u5feb\u611f\u7684\u6e34\u671b\uff0c\u4e0d\u8ba9\u6e34\u671b\u63a7\u5236\u6211\u4eec\u7684\u751f\u6d3b\u3002\u4f5b\u6559\u8ba4\u4e3a\uff0c\u6211\u4eec\u53ef\u4ee5\u8bad\u7ec3\u5185\u5fc3\uff0c\u4ed4\u7ec6\u89c2\u5bdf\u5404\u79cd\u611f\u89c9\u662f\u5982\u4f55\u4ea7\u751f\u4ee5\u53ca\u5982\u4f55\u6d88\u901d\u7684\u3002\u53ea\u8981\u5185\u5fc3\u5b66\u4f1a\u770b\u900f\u8fd9\u4e9b\u611f\u89c9\u7684\u672c\u8d28\uff08\u4e5f\u5c31\u662f\u77ed\u6682\u4e14\u6beb\u65e0\u610f\u4e49\u7684\u611f\u53d7\uff09\uff0c\u6211\u4eec\u5c31\u4e0d\u518d\u6709\u5174\u8da3\u8ffd\u6c42\u5feb\u611f\u3002\u6bd5\u7adf\uff0c\u8ffd\u6c42\u4e00\u4e2a\u6765\u53bb\u4e0d\u5b9a\u7684\u4e1c\u897f\u6709\u4ec0\u4e48\u610f\u4e49\uff1f\n\u76ee\u524d\uff0c\u4eba\u7c7b\u5bf9\u4e8e\u751f\u5316\u89e3\u51b3\u65b9\u6848\u7684\u5174\u8da3\u8fdc\u8fdc\u5927\u5f97\u591a\u3002\u4e0d\u8bba\u90a3\u4e9b\u5728\u559c\u9a6c\u62c9\u96c5\u5c71\u6d1e\u7a74\u91cc\u7684\u50e7\u4fa3\u548c\u8c61\u7259\u5854\u91cc\u7684\u54f2\u5b66\u5bb6\u600e\u4e48\u8bf4\uff0c\u5bf9\u8d44\u672c\u5bb6\u6765\u8bf4\uff0c\u6109\u60a6\u7684\u5feb\u611f\u5c31\u662f\u5feb\u4e50\uff0c\u522b\u65e0\u5176\u4ed6\u3002\u6bcf\u8fc7\u4e00\u5e74\uff0c\u6211\u4eec\u5fcd\u8010\u4e0d\u60a6\u7684\u80fd\u529b\u5c31\u4f1a\u964d\u4f4e\u4e00\u4e9b\uff0c\u800c\u5bf9\u5feb\u611f\u7684\u6e34\u671b\u5219\u8d8a\u6765\u8d8a\u5f3a\u70c8\u3002\u73b0\u5728\u7684\u79d1\u5b66\u7814\u7a76\u548c\u7ecf\u6d4e\u6d3b\u52a8\u90fd\u4ee5\u6b64\u4e3a\u76ee\u6807\uff0c\u6bcf\u5e74\u7814\u53d1\u51fa\u66f4\u6709\u6548\u7684\u6b62\u75db\u836f\u3001\u65b0\u7684\u51b0\u6fc0\u51cc\u53e3\u5473\u3001\u66f4\u8212\u9002\u7684\u5e8a\u57ab\u3001\u66f4\u4ee4\u4eba\u4e0a\u763e\u7684\u624b\u673a\u6e38\u620f\uff0c\u597d\u8ba9\u6211\u4eec\u5728\u7b49\u516c\u4ea4\u8f66\u7684\u65f6\u5019\u8fde\u4e00\u79d2\u7684\u65e0\u804a\u90fd\u65e0\u987b\u5fcd\u8010\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u6240\u4ee5\u6d6e\u8e81\u4e00\u8bcd\u8fd1\u51e0\u5e74\u4e0d\u65ad\u7684\u88ab\u63d0\u53ca\uff0c\u5f53\u5927\u5bb6\u5728\u8ffd\u6c42\u751f\u7269\u89d2\u5ea6\u7684\u5feb\u611f\u65f6\uff0c\u53cd\u800c\u66f4\u5c11\u611f\u53d7\u5230\u5feb\u4e50\uff0c\u5f53\u5feb\u611f\u83b7\u5f97\u65f6\u5f88\u5feb\u5c31\u6d88\u5931\uff0c\u53c8\u4f1a\u6709\u4e0b\u4e00\u6ce2\u66f4\u9ad8\u9636\u7684\u5feb\u611f\uff0c\u6c38\u8fdc\u90fd\u5728\u65e0\u5c3d\u6b62\u7684\u8ffd\u6c42\u3002\u5982\u679c\u6211\u4eec\u66f4\u5173\u6ce8\u81ea\u5df1\u611f\u53d7\u7684\u53d8\u5316\uff0c\u5173\u6ce8\u60c5\u7eea\u53d8\u5316\u7684\u8fc7\u7a0b\uff0c\u5c31\u80fd\u660e\u767d\u81ea\u5df1\u60c5\u7eea\u53d8\u5316\u7684\u539f\u56e0\uff0c\u771f\u6b63\u505a\u8fd9\u4e2a\u795e\u79d8\u7684\u8eab\u4f53\u7684\u4e3b\u4eba\uff0c\u80fd\u591f\u8f83\u8f7b\u677e\u7684\u638c\u63e1\u81ea\u5df1\u60c5\u7eea\u3002\n',
    u'createTime': 1493914877,
    u'range': u'49502-49999',
    u'reviewId': u'16816343_6QdcY5YJj',
    u'type': 1,
    u'userVid': 16816343}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EG8nGBbceUzZq2xm6537xEpKQiblPbgtEHG0NUFZDKo1iaschZ7tvIUc3mgekt3eCe6Pc5Yehkv7s5zHdPmUvgMPw/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'kiyomi-ala',
     u'userVid': 3268535}],
   u'location': u'\u6c5f\u897f \u5357\u660c',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/PiajxSqBRaELicNvDep8FBYmXIQtul4xZMT8p3jWk4VlMCa7zdHzYJjqP7pbmFvvLgicXoBnPsx4xicibUkob6W5CuQ/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5954\u8dd1\u7684\u5c0f\u732a\U0001f437',
     u'userVid': 34635575},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 18,
    u'content': u'100',
    u'createTime': 1494555381,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 10,
    u'readingTime': 39884,
    u'reviewId': u'34635575_6QaEl9eW1',
    u'startReadingTime': 1493769553,
    u'type': 3,
    u'userVid': 34635575},
   u'reviewCount': 0,
   u'reviewId': u'34635575_6QaEl9eW1',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 34635575,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u76ee\u524d\u201c\u548c\u5e73\u201d\u8fd9\u4e2a\u8bcd\u5df2\u7ecf\u6709\u4e86\u65b0\u7684\u610f\u4e49\u3002\u8fc7\u53bb\u60f3\u5230\u548c\u5e73\uff0c\u6307\u7684\u53ea\u662f\u201c\u6682\u65f6\u6ca1\u6709\u6218\u4e89\u201d\uff1b\u800c\u73b0\u5728\u60f3\u5230\u548c\u5e73\uff0c\u662f\u6307\u201c\u96be\u4ee5\u60f3\u8c61\u4f1a\u6709\u6218\u4e89\u201d\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u73b0\u4ee3\u7684\u6218\u4e89\u90fd\u662f\u6ca1\u6709\u785d\u70df\u7684\u3002\u7ecf\u6d4e\u6218\uff0c\u8d27\u5e01\u6218\uff0c\u6587\u5316\u6218\u90fd\u662f\u4e3a\u4e86\u5c06\u81ea\u8eab\u7684\u4ef7\u503c\u89c2\u65e0\u5f62\u5730\u8f93\u9001\u7ed9\u4e00\u4e2a\u4e3b\u4f53\u3002\n',
    u'createTime': 1493770551,
    u'range': u'21700-21759',
    u'reviewId': u'34635575_6QaFqIyEd',
    u'type': 1,
    u'userVid': 34635575}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u7f8e\u56fd',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IzQl7Y2VaZB4Ok6kBpVDHcjR5RPHb3l8YOVxbwMh5LZ7TibWzLLIpSiaLRiapQyicib22J4TicZfmMKCZJ7AzNjICGhWs/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u6797\u5927\u5929',
     u'userVid': 18613424,
     u'vDesc': u' '},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'83',
    u'createTime': 1494555348,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 83,
    u'readingTime': 30262,
    u'reviewId': u'18613424_6Qb6wRFf8',
    u'startReadingTime': 1493795378,
    u'type': 3,
    u'userVid': 18613424},
   u'reviewCount': 0,
   u'reviewId': u'18613424_6Qb6wRFf8',
   u'signature': u'\u60f3\u505a\u90a3\u4e00\u7f15\u9633\u5149\uff0c\u61d2\u8eba\u4e66\u684c\u4e0a\u3002',
   u'totalReadingTime': 0,
   u'vid': 18613424,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u672c\u8d28\u4e0a\uff0c\u6211\u4eec\u4eba\u7c7b\u548c\u5927\u9f20\u3001\u72d7\u3001\u6d77\u8c5a\u6216\u9ed1\u7329\u7329\u5e76\u6ca1\u6709\u591a\u5927\u7684\u5dee\u5f02\u3002\u6b63\u5982\u5b83\u4eec\uff0c\u6211\u4eec\u4e5f\u6ca1\u6709\u7075\u9b42\u3002\u6b63\u5982\u6211\u4eec\uff0c\u5b83\u4eec\u4e5f\u6709\u610f\u8bc6\uff0c\u6709\u7740\u5145\u6ee1\u611f\u89c9\u548c\u60c5\u611f\u7684\u590d\u6742\u4e16\u754c\u3002\u5f53\u7136\uff0c\u6bcf\u53ea\u52a8\u7269\u90fd\u6709\u81ea\u5df1\u72ec\u6709\u7684\u7279\u8d28\u548c\u80fd\u529b\uff0c\u6bcf\u4e2a\u4eba\u7c7b\u4e5f\u6709\u81ea\u5df1\u72ec\u7279\u7684\u5929\u8d4b\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 6,
    u'content': u'\u5f00\u4e00\u4e2a\u8111\u6d1e\uff0c\u6211\u5728\u60f3\uff0c\u667a\u4eba\u662f\u5426\u5e76\u975e\u5730\u7403\u7684\u539f\u751f\u7269\u79cd\u5462\uff1f\u667a\u4eba\u7684\u5b58\u5728\u5c31\u662f\u7834\u574f\u4e86\u5730\u7403\u81ea\u7136\u4e07\u7269\u7684\u5e73\u8861\u3002\u65e9\u671f\u8fd8\u662f\u82e6\u82e6\u6323\u624e\uff0c\u53ef\u6f5c\u529b\u592a\u5927\uff0c\u4e2d\u540e\u671f\u5c31\u5f00\u59cb\u79f0\u9738\u4e86\u2026\n',
    u'createTime': 1494042064,
    u'range': u'27810-27913',
    u'reviewId': u'18613424_6QfrNzr4R',
    u'type': 1,
    u'userVid': 18613424}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6c5f\u82cf \u5e38\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2Iy9mTp1VUHCxd5z9Zg3TKUNib4Fu1KE92htNaj3XAbXJVpxhVqReFJXUKENnfn9ZOx8SDPgvgFcm8JLC5fXZ45zu/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5fc3\u7406\u4ea4\u6d41',
     u'userVid': 7511027},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'100',
    u'createTime': 1494545928,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 478,
    u'readingTime': 42980,
    u'reviewId': u'7511027_6PNah8vVi',
    u'startReadingTime': 1492435604,
    u'type': 3,
    u'userVid': 7511027},
   u'reviewCount': 0,
   u'reviewId': u'7511027_6PNah8vVi',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 7511027,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u771f\u6b63\u8ba9\u6bd4\u8d5b\u5982\u6b64\u5438\u5f15\u4eba\u7684\uff0c\u5c31\u662f\u90a3\u4e9b\u4ee4\u4eba\u5f00\u5fc3\u7684\u611f\u89c9\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u6240\u4ee5\uff0c\u4ece\u5143\u8ba4\u77e5\u7684\u89d2\u5ea6\u63a8\u6f14\uff0c\u5982\u4f55\u6cbb\u7f51\u763e\uff0c\u5c31\u662f\u5c06\u8fd9\u79cd\u5feb\u4e50\u53d8\u6210\u70e6\u607c\u548c\u4e0d\u6109\u5feb\uff0c\u5728\u8fd9\u79cd\u8fc7\u7a0b\u4e2d\u4e0d\u65ad\u5236\u9020\u4e0d\u5feb\u4e50\uff0c\u800c\u4e14\u76f4\u5230\u7ed3\u679c\u90fd\u662f\u4e0d\u5feb\u4e50\u3002\u4f46\u662f\uff0c\u8fd9\u79cd\u8ffd\u9010\u6210\u529f\u7684\u5feb\u4e50\u662f\u751f\u6d3b\u524d\u8fdb\u7684\u52a8\u529b\u3002\u90a3\u4e48\uff0c\u771f\u6b63\u6cbb\u7597\u7f51\u763e\u4e5f\u8bb8\u6709\u4e24\u4e2a\u65b9\u6cd5:\u4e00\uff0c\u5728\u5b69\u5b50\u5c0f\u7684\u65f6\u5019\u5c31\u57f9\u517b\u5b69\u5b50\u7684\u5fcd\u8010\u529b\uff1b\u4e8c\u3001\u4ece\u5c0f\u4e0d\u8ba9\u5b69\u5b50\u63a5\u89e6\u7535\u8111\u76f8\u5173\u7684\u4e1c\u897f\u3002\u4f46\u662f\uff0c\u7b2c\u4e00\u4e2a\u65b9\u6cd5\u66f4\u53ef\u9760\uff0c\u56e0\u4e3a\u7b2c\u4e8c\u4e2a\u65b9\u6cd5\u4f1a\u5bfc\u81f4\u5b69\u5b50\u6210\u5e74\u540e\u5728\u73b0\u4ee3\u5316\u77e5\u8bc6\u4e0a\u7684\u77ed\u677f\u3002',
    u'createTime': 1492697383,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'43080-43104',
    u'reviewId': u'7511027_6PRM1cnmm',
    u'type': 1,
    u'userVid': 7511027,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u9655\u897f \u897f\u5b89',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/PiajxSqBRaEKzcgmvsxRBrBT5KfiaMXXIhmEy6VU6ZibMf4cuiaQc3SP3qfTuhRuNkKRJklp87ayk7vmbrqvAxBFOA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6ca1\u60f3\u597d',
     u'userVid': 37411275},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 18,
    u'content': u'100',
    u'createTime': 1494542385,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 7,
    u'readingTime': 42770,
    u'reviewId': u'37411275_6Oxn70UJQ',
    u'startReadingTime': 1488016946,
    u'type': 3,
    u'userVid': 37411275},
   u'reviewCount': 0,
   u'reviewId': u'37411275_6Oxn70UJQ',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 37411275,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u516c\u53f8\u3001\u8d27\u5e01\u548c\u56fd\u5bb6\uff0c\u90fd\u53ea\u5b58\u5728\u4e8e\u6211\u4eec\u7684\u60f3\u8c61\u4e4b\u4e2d\uff0c\u662f\u4eba\u7c7b\u53d1\u660e\u4e86\u8fd9\u4e9b\u6982\u5ff5\uff0c\u597d\u8ba9\u5b83\u4eec\u4e3a\u4eba\u7c7b\u670d\u52a1\uff1b\u4e3a\u4ec0\u4e48\u6700\u540e\u53cd\u800c\u662f\u4eba\u7c7b\u4e3a\u8fd9\u4e9b\u6982\u5ff5\u670d\u52a1\uff0c\u751a\u81f3\u727a\u7272\u6027\u547d\u5462\uff1f',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 8,
    u'content': u'\u4e00\u5207\u7686\u4e3a\u653f\u6cbb\uff0c\u653f\u6cbb\u5c31\u662f\u865a\u6784\uff0c\u5373\u5c11\u6570\u4eba\u4e3a\u79c1\u5fc3\u7684\u52aa\u529b\uff0c\u6240\u4ee5\u4eba\u7c7b\u7684\u8fdb\u6b65\u662f\u5c11\u6570\u81ea\u79c1\u7684\u4eba\u5e26\u9886\u591a\u6570\u5584\u826f\u800c\u53ef\u60b2\u7684\u4eba\u5728\u524d\u884c\uff01',
    u'createTime': 1489420508,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'19302-19371',
    u'reviewId': u'37411275_6OW5aahxe',
    u'type': 1,
    u'userVid': 37411275,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u5317\u4eac',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EFicElHLxI19LIERv3uGH9kL8KMIHRb7I6dmnM4r4YuEWHhWBBGrD1PEHPpm64gadRc6RFTW3cD6EJ4u9u1yfEfh/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'JuniaChai',
     u'userVid': 22929246},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'78',
    u'createTime': 1494539981,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 8,
    u'readingTime': 21511,
    u'reviewId': u'22929246_6Qh7Hy8pm',
    u'startReadingTime': 1494137253,
    u'type': 3,
    u'userVid': 22929246},
   u'reviewCount': 0,
   u'reviewId': u'22929246_6Qh7Hy8pm',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 22929246,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u884c',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 9,
    u'content': u'\u70cf\u5e72\u9054\u8b70\u6703\u901a\u904e\u6cd5\u6848\uff0c\u63d0\u9ad8\u5c0d\u540c\u6027\u6200\u884c\u70ba\u7684\u5211\u7f70\uff0c\u6700\u9ad8\u53ef\u4ee5\u88ab\u5224\u7d42\u8eab\u76e3\u7981\u3002\n\u6309\u7167\u70cf\u5e72\u9054\u6700\u65b0\u901a\u904e\u7684\u53cd\u540c\u6027\u6200\u6cd5\u6848\uff0c\u5c0d\u540c\u6027\u6200\u884c\u70ba\u300c\u77e5\u60c5\u4e0d\u5831\u300d\u4e5f\u662f\u72af\u7f6a\u884c\u70ba\uff0c\u80fd\u88ab\u5224\u5165\u7344\u670d\u5211\u3002\n\u70cf\u5e72\u9054\u7e3d\u7406\u59c6\u5df4\u5df4\u5947\u53cd\u5c0d\u8b70\u6703\u901a\u904e\u7684\u6cd5\u6848\uff0c\u4e26\u8868\u793a\u5728\u5834\u6295\u7968\u7684\u8b70\u54e1\u4eba\u6578\u4e0d\u8db3\u6cd5\u5b9a\u4eba\u6578\u3002\n\u5728\u6709\u95dc\u7684\u6cd5\u68482009\u5e74\u88ab\u9996\u6b21\u63d0\u51fa\u4e4b\u5f8c\uff0c\u4e16\u754c\u5404\u570b\u9818\u8896\u5c31\u7d1b\u7d1b\u8b74\u8cac\u8a72\u6cd5\u6848\u3002\u7f8e\u570b\u7e3d\u7d71\u5967\u5df4\u99ac\u6307\u8cac\u9019\u689d\u6cd5\u6848\u300c\u4ee4\u4eba\u4f5c\u5614\u300d\u3002\n\u5f15\u767c\u516c\u61a4\nBBC\u5728\u70cf\u5e72\u9054\u9996\u90fd\u574e\u5e15\u62c9\u7684\u8a18\u8005\u8868\u793a\uff0c\u70cf\u5e72\u9054\u653f\u5e9c\u77e5\u9053\u901a\u904e\u9019\u689d\u6cd5\u6848\u5c07\u5f15\u8d77\u570b\u969b\u516c\u61a4\uff0c\u4e00\u4e9b\u570b\u5bb6\u66f4\u6709\u53ef\u80fd\u56e0\u6b64\u800c\u505c\u6b62\u5c0d\u8a72\u570b\u7684\u63f4\u52a9\u3002\n\u5979\u8868\u793a\uff0c\u70cf\u5e72\u9054\u7e3d\u7406\u59c6\u5df4\u5df4\u5947\u53ef\u80fd\u6703\u7e7c\u7e8c\u4ee5\u6cd5\u5b9a\u4eba\u6578\u4e0d\u8db3\u7684\u8aaa\u6cd5\u4f86\u8a66\u5716\u6539\u8b8a\u7d50\u679c\uff0c\u800c\u70cf\u5e72\u9054\u7e3d\u7d71\u662f\u5426\u6703\u7c3d\u7f72\u9019\u9805\u6cd5\u6848\u8b93\u6cd5\u6848\u751f\u6548\u4e5f\u6709\u5f85\u5f8c\u7e8c\u89c0\u5bdf\u3002\n\u53cd\u5c0d\u540c\u6027\u6200\u7684\u6cd5\u6848\u6700\u521d\u63d0\u51fa\u4f86\u7684\u6642\u5019\uff0c\u67d0\u4e9b\u56b4\u91cd\u72af\u7f6a\u884c\u70ba\u6700\u9ad8\u80fd\u8655\u4ee5\u6b7b\u5211\uff0c\u4f8b\u5982\u8207\u672a\u6210\u5e74\u8005\u767c\u751f\u540c\u6027\u6027\u884c\u70ba\uff0c\u6216\u540c\u6027\u6027\u884c\u70ba\u5176\u4e2d\u4e00\u65b9\u5e36\u6709\u827e\u6ecb\u75c5\u6bd2\u3002\n\u70cf\u5e72\u9054\u662f\u4e00\u500b\u793e\u6703\u4fdd\u5b88\u7684\u570b\u5bb6\uff0c\u8a72\u570b\u672c\u5468\u56db\u624d\u901a\u904e\u4e00\u9805\u53cd\u8272\u60c5\u6cd5\u6848\uff0c\u7981\u6b62\u7a7f\u8ff7\u4f60\u88d9\u548c\u542b\u6709\u6027\u6697\u793a\u7684\u6750\u6599\u3002\n\u5916\u570b\u4eba\u7121\u8c41\u514d\u6b0a\n\u70cf\u5e72\u9054\u65b0\u901a\u904e\u7684\u53cd\u540c\u6027\u6200\u6cd5\u6848\u5c0d\u8c61\u5305\u62ec\u5728\u70cf\u5e72\u9054\u7684\u5916\u570b\u4eba\u5728\u5167\u3002\n\u5168\u7403\u57fa\u91d1\u8868\u793a\uff0c\u6839\u636e\u8054\u5408\u56fd\u827e\u6ecb\u75c5\u89c4\u5212\u7f722012\u5e74\u53d1\u5e03\u7684\u7edf\u8ba1\u62a5\u544a\uff0c\u4e4c\u5e72\u8fbe\u5883\u5185\u73b0\u6709\u7ea6150\u4e07\u827e\u6ecb\u75c5\u60a3\u8005\u6216\u75c5\u6bd2\u643a\u5e26\u8005\uff0c\u5176\u4e2d\u5305\u62ec14\u4e07\u65b0\u53d1\u827e\u6ecb\u75c5\u6bd2\u611f\u67d3\u8005\u3002\u5728\u5168\u7403\u8303\u56f4\u5185\uff0c\u7537\u6027\u540c\u6027\u604b\u8005\u611f\u67d3\u827e\u6ecb\u75c5\u75c5\u6bd2\u7684\u51e0\u7387\u6bd4\u666e\u901a\u4eba\u7fa4\u9ad8\u51fa13\u500d\u3002\u56e0\u6b64\uff0c\u4ed6\u4eec\u8feb\u5207\u9700\u8981\u83b7\u5f97\u5b89\u5168\u7684\u827e\u6ecb\u75c5\u9884\u9632\u548c\u8bca\u7597\u670d\u52a1\uff0c\u800c\u4e14\u5e94\u88ab\u9f13\u52b1\u53bb\u5229\u7528\u6b64\u7c7b\u670d\u52a1\u3002\n',
    u'createTime': 1494218162,
    u'range': u'12959-12960',
    u'reviewId': u'22929246_6Qiy19L9j',
    u'type': 1,
    u'userVid': 22929246}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5e7f\u4e1c \u6df1\u5733',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1fR9LnRJwUqIZI1Fb2ueLGYnjOtxGicWRz6E7Y0dOR6DulJI4LHlLTOBF6QwWsxJrBEShDWk25bLib/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'edwinzhou',
     u'userVid': 10300082},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'82',
    u'createTime': 1494537144,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 9,
    u'readingTime': 32990,
    u'reviewId': u'10300082_6PupobCgX',
    u'startReadingTime': 1491370246,
    u'type': 3,
    u'userVid': 10300082},
   u'reviewCount': 0,
   u'reviewId': u'10300082_6PupobCgX',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 10300082,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u5927\u4e0d\u4e86\u53ef\u80fd\u67d0\u4f4d\u6000\u65e7\u7684\u8001\u4eba\u5bb6\u544a\u8bc9\u65cf\u91cc\u7684\u5e74\u8f7b\u4eba\uff1a\u201c\u6211\u5e74\u8f7b\u7684\u65f6\u5019\uff0c\u731b\u72b8\u8c61\u53ef\u6bd4\u73b0\u5728\u591a\u5f97\u591a\u554a\uff0c\u4e73\u9f7f\u8c61\u548c\u5927\u89d2\u9e7f\u4e5f\u4e00\u6837\u3002\u5f53\u7136\uff0c\u90a3\u65f6\u5019\u7684\u90e8\u843d\u914b\u957f\u4e5f\u6bd4\u8f83\u8bda\u5b9e\uff0c\u5c0f\u5b69\u4e5f\u6bd4\u8f83\u656c\u8001\u5c0a\u8d24\u3002\u201d',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 5,
    u'content': u'\u6211\u4eec\u73b0\u5728\u4e0d\u4e5f\u5728\u611f\u53f9\u5c0f\u65f6\u540e\u89c1\u5230\u7684\u4e1c\u897f\u6bd4\u73b0\u5728\u8981\u591a\u5417\uff1f\u987b\u4e0d\u77e5\u8fd9\u79cd\u4e1c\u897f\u5176\u5b9e\u4e5f\u662f\u5728\u6162\u6162\u6d88\u5931\u6216\u706d\u7edd\uff01\n',
    u'createTime': 1491840638,
    u'range': u'7836-7971',
    u'reviewId': u'10300082_6PCGQnFi5',
    u'type': 1,
    u'userVid': 10300082}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TFHfRWUI4icWvHb6bfLWu28DxwZiaObtrq1Sz4CZVDyG1Wejs8cNgEibanriaGpP78cwicoQiakqO3KfjC/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Thomas Chen2',
     u'userVid': 15126554,
     u'vDesc': u'\u9ed8\u66f0TC'}],
   u'location': u'\u4e0a\u6d77',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8utdcjdIeKCNzhK7k78ymEHfdnQwScUenIJicrTspVm0tQ2BkcQbfRibglic8Iq2vsDEBsX8UASMFSgRA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Charlotte',
     u'userVid': 31932649},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 9,
    u'content': u'46',
    u'createTime': 1494536251,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 50,
    u'readingTime': 34737,
    u'reviewId': u'31932649_6PHycOqpT',
    u'startReadingTime': 1492116726,
    u'type': 3,
    u'userVid': 31932649},
   u'reviewCount': 0,
   u'reviewId': u'31932649_6PHycOqpT',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 31932649,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6709\u4ec0\u4e48\u4e8b\u662f\u53d1\u751f\u5728\u5fc3\u91cc\u7684\uff0c\u4f46\u6ca1\u6709\u53d1\u751f\u5728\u5927\u8111\u4e2d\uff1f\u5982\u679c\u5fc3\u4e2d\u7684\u4e00\u5207\u90fd\u53d1\u751f\u5728\u6211\u4eec\u5e9e\u5927\u7684\u795e\u7ecf\u5143\u7f51\u7edc\u4e2d\uff0c\u90a3\u53c8\u4f55\u5fc5\u628a\u5fc3\u7075\u72ec\u7acb\u51fa\u6765\u8bf4\u5462\uff1f',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 6,
    u'content': u'\u7a81\u7136\u60f3\u5230\uff0c\u4e4b\u524d\uff0c\u6211\u4eec\u90fd\u8ba4\u4e3a\u81ea\u5df1\u7684\u60c5\u7eea\u662f\u201c\u4ece\u5fc3\u51fa\u53d1\u201d\uff0c\u5fc3\u662f\u6700\u91cd\u8981\u7684\uff0c\u62c5\u4efb\u7740\u7075\u9b42\u4f4f\u5904\u7684\u89d2\u8272\uff0c\u73b0\u5728\u6211\u4eec\u77e5\u9053\u4e86\u4e00\u5207\u90fd\u662f\u5927\u8111\u5728\u63a7\u5236\uff0c\u601d\u8003\u548c\u60c5\u7eea\u90fd\u901a\u8fc7\u5927\u8111\u4e2d\u7684\u795e\u7ecf\u5143\u6765\u5904\u7406\uff0c\u5fc3\u810f\uff0c\u751f\u7269\u5b66\u4e0a\u6765\u8bf4\uff0c\u662f\u4e00\u4e2a\u4f9b\u517b\u7684\u5668\u5b98..\u800c..\u5df2..\n',
    u'createTime': 1493286722,
    u'range': u'10431-10490',
    u'reviewId': u'31932649_6Q29jaWsw',
    u'type': 1,
    u'userVid': 31932649}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6c5f\u82cf \u65e0\u9521',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/PiajxSqBRaELuZF1KJkOiaCKynspDKPCKM8UuZHibzWStrUicmuzGCBfH3icNQlGliaqUoicUFHIaUf4s268tWjV0AfGA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u725b\u5934',
     u'userVid': 14536159},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'56',
    u'createTime': 1494535234,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 170,
    u'readingTime': 46634,
    u'reviewId': u'14536159_6OZehRcMO',
    u'startReadingTime': 1489599267,
    u'type': 3,
    u'userVid': 14536159},
   u'reviewCount': 0,
   u'reviewId': u'14536159_6OZehRcMO',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 14536159,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u5728\u4e2d\u4e16\u7eaa\u6b27\u6d32\uff0c\u6559\u7687\u7684\u653f\u6cbb\u6743\u529b\u65e0\u8fdc\u5f17\u5c4a',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 9,
    u'content': u'\u4efb\u4f55\u4e00\u79cd\u793e\u4f1a\u7ec4\u7ec7\uff0c\u6700\u5c0f\u7684\u793e\u4f1a\u7ec4\u7ec7\u5c31\u662f\u4e2a\u4eba\uff0c\u90fd\u4f1a\u81ea\u89c9\u4e0d\u81ea\u89c9\u5730\u8ffd\u6c42\u6743\u529b\u6700\u5927\u5316\uff0c\u4e0d\u8bba\u8fd9\u79cd\u7ec4\u7ec7\u5728\u5634\u4e0a\u8bf4\u5f97\u591a\u4e48\u4f1f\u5927\u548c\u5d07\u9ad8\u3002\n',
    u'createTime': 1493811055,
    u'range': u'10996-11014',
    u'reviewId': u'14536159_6QbnDSuFd',
    u'type': 1,
    u'userVid': 14536159}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6d59\u6c5f \u676d\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLDMqXq1RPEOmQSWQ19LXJqqicWbyyy0ChsVSfKh6vIkBFpXWH4DPsXtyO5lScaibuI0c8g1QlibIysxQ/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u5f20\u5578\u5b81\u3002',
     u'userVid': 2825591,
     u'vDesc': u'\u4e92\u8054\u7f51\u3002\u559c\u6b22\u97f3\u4e50\uff0c\u7535\u73a9'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'66',
    u'createTime': 1494534859,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 136,
    u'readingTime': 39246,
    u'reviewId': u'2825591_6P7ymD8hw',
    u'startReadingTime': 1490072062,
    u'type': 3,
    u'userVid': 2825591},
   u'reviewCount': 0,
   u'reviewId': u'2825591_6P7ymD8hw',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 2825591,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u968f\u7740\u5b98\u50da\u4f53\u7cfb\u638c\u63e1\u7684\u6743\u529b\u8d8a\u6765\u8d8a\u591a\uff0c\u4ed6\u4eec\u53d8\u5f97\u5373\u4f7f\u72af\u9519\u4e5f\u65e0\u52a8\u4e8e\u8877\u3002\u8fd9\u65f6\uff0c\u4ed6\u4eec\u4e0d\u518d\u6539\u53d8\u6545\u4e8b\u4ee5\u7b26\u5408\u73b0\u5b9e\uff0c\u53cd\u800c\u901a\u8fc7\u6539\u53d8\u73b0\u5b9e\u6765\u7b26\u5408\u4ed6\u4eec\u7b14\u4e0b\u7684\u6545\u4e8b\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 8,
    u'content': u'\u4eca\u5929\u5904\u7406\u4e86\u4e00\u4e2a\u5de5\u4f5c\u4e0a\u7684\u95ee\u9898\uff0c\u4eba\u4eec\u4e3a\u4e86\u4e0d\u627f\u8ba4\u72af\u9519\uff0c\u901a\u8fc7\u6539\u53d8\u73b0\u5b9e\u4ee5\u8fce\u5408\u5df2\u6709\u7684\u6545\u4e8b\u3002\u4e00\u89c8\u65e0\u4f59\n',
    u'createTime': 1492515435,
    u'range': u'10731-10797',
    u'reviewId': u'2825591_6POzpL4YJ',
    u'type': 1,
    u'userVid': 2825591}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u7f8e\u56fd',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8usODicWicSC7LZhliaAxDDnsGDNqqtHOTSrVfApI0icBMaXjD47EmuPeAKhjI8t3x2x0g0WU5hbe0hY6RjIyff9EJRq/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Raullen Chai',
     u'userVid': 16553889},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 16,
    u'content': u'98',
    u'createTime': 1494533815,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 33,
    u'readingTime': 28973,
    u'reviewId': u'16553889_6PBpAbvpq',
    u'startReadingTime': 1491768025,
    u'type': 3,
    u'userVid': 16553889},
   u'reviewCount': 0,
   u'reviewId': u'16553889_6PBpAbvpq',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 16553889,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6587\u5b57\u8ba9\u4eba\u80fd\u591f\u4ee5\u7b97\u6cd5\u7684\u65b9\u5f0f\u7ec4\u7ec7\u6574\u4e2a\u793e\u4f1a',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 8,
    u'content': u'\u66f4\u786e\u5207\u7684\u8bf4\u6cd5\u662f \u6587\u5b57\u662f\u6570\u636e\u548c\u5bc4\u5b58\u5668 \u6765\u652f\u6491\u5728\u4eba\u7c7b\u8de8\u5ea6\u7684\u7b97\u6cd5\u7684\u8fd0\u884c',
    u'createTime': 1493245533,
    u'isPrivate': 0,
    u'range': u'4199-4217',
    u'reviewId': u'16553889_6Q1qlIQUX',
    u'type': 1,
    u'userVid': 16553889,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/NrpzR3Ku5JRa2LdsyiaWVPZJIXDZdksdeTnr2l7tvLdN6VUgg0x8vnVPajltjNhNG8HJPUw4QcVicAgdjsYops92pZV33h1ialib/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u65b9\u5347',
     u'userVid': 24904322,
     u'vDesc': u'\u4e0e\u6709\u809d\u80c6\u4eba\u5171\u4e8b\uff0c\u4ece\u65e0\u5b57\u53e5\u5904\u8bfb\u4e66\u3002'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TFHfRWUI4icWvHb6bfLWu28DxwZiaObtrq1Sz4CZVDyG1Wejs8cNgEibanriaGpP78cwicoQiakqO3KfjC/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Thomas Chen2',
     u'userVid': 15126554,
     u'vDesc': u'\u9ed8\u66f0TC'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1RmB1ZiaxJc1NOK8jLhfLX2TCAfC0rSib97TUOOiamQmNjEYeNejJccMCMD77tptxPib9qC9LBmlv9hp/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u7b11\u770b\u98ce\u4e91\uff08\u5b59\u8fdc\u5fe0\uff09',
     u'userVid': 37411103,
     u'vDesc': u'\u4e0d\u7ecf\u4e00\u756a\u5bd2\u5f7b\u9aa8\uff0c\u600e\u5f97\u6885\u82b1\u6251\u9f3b\u9999\uff1f'}],
   u'location': u'\u5b89\u5fbd \u5b89\u5e86',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2Iz0Eibe3hDggibE1Edh0IlBGc41Isib6YlebBiaIlSkCibKuVQ6koDaAblhyg5ZibHOQZ8DsOXgIZsPvDmicpp59AbNfiaia/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'LI',
     u'userVid': 8560249},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'100',
    u'createTime': 1494532139,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 65,
    u'readingTime': 155576,
    u'reviewId': u'8560249_6P3oJcAc9',
    u'startReadingTime': 1489836034,
    u'type': 3,
    u'userVid': 8560249},
   u'reviewCount': 0,
   u'reviewId': u'8560249_6P3oJcAc9',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 8560249,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u548c\u51b3\u7b56\u65f6\uff0c\u662f\u5426\u9057\u6f0f\u4e86\u4ec0\u4e48\u56e0\u7d20\uff1f\u5728\u8fd9\u4e16\u754c\u4e0a\uff0c\u4f1a\u4e0d\u4f1a\u6709\u4ec0\u4e48\u65e0\u6cd5\u7b80\u5316\u6210\u6570\u636e\uff1f\u5982\u679c\u5728\u6240\u6709\u5df2\u77e5\u7684\u6570\u636e\u5904\u7406\u4efb\u52a1\u4e0a\uff0c\u65e0\u610f\u8bc6\u7b97\u6cd5\u7ec8\u4e8e\u5b8c\u5168\u80dc\u8fc7\u4e86\u6709\u610f\u8bc6\u7684\u4eba\u7c7b\u667a\u80fd\uff0c\u4e00\u65e6\u6211\u4eec\u7528\u524d\u8005\u53d6\u4ee3\u540e\u8005\uff0c\u53ef\u80fd\u4f1a\u5931\u53bb\u4ec0\u4e48\uff1f\n\u5f53\u7136\uff0c\u5c31\u7b97\u6570\u636e\u4e3b\u4e49\u6709\u9519\uff0c\u751f\u7269\u4e0d\u53ea\u662f\u7b97\u6cd5\uff0c\u4e5f\u4e0d\u4e00\u5b9a\u80fd\u963b\u6b62\u6570\u636e\u4e3b\u4e49\u63a5\u7ba1\u4e16\u754c\u3002\u8fc7\u53bb\u5c31\u6709\u8bb8\u591a\u5b97\u6559\uff0c\u867d\u7136\u5728\u4e8b\u5b9e\u4e0a\u4e0d\u5c3d\u6b63\u786e\uff0c\u5374\u4e5f\u662f\u5927\u53d7\u6b22\u8fce\u3001\u5927\u6743\u5728\u63e1\u3002\u5982\u679c\u57fa\u7763\u6559\u548c\u653f\u6cbb\u98ce\u6f6e\u90fd\u80fd',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 16,
    u'content': u'\u8981\u5bf9\u6570\u636e\u4e3b\u4e49\u63d0\u51fa\u6279\u5224\uff0c\u53ef\u80fd\u4e0d\u4ec5\u662f21\u4e16\u7eaa\u6700\u5927\u7684\u79d1\u5b66\u6311\u6218\uff0c\u66f4\u662f\u6700\u6025\u8feb\u7684\u653f\u6cbb\u548c\u7ecf\u6d4e\u8bae\u9898\u3002\u751f\u547d\u79d1\u5b66\u548c\u793e\u4f1a\u79d1\u5b66\u7684\u5b66\u8005\u5e94\u8be5\u81ea\u95ee\uff0c\u628a\u751f\u547d\u5f53\u4f5c\u6570\u636e\u5904\u7406\u548c\u51b3\u7b56\u65f6\uff0c\u662f\u5426\u9057\u6f0f\u4e86\u4ec0\u4e48\u56e0\u7d20\uff1f\u5728\u8fd9\u4e16\u754c\u4e0a\uff0c\u4f1a\u4e0d\u4f1a\u6709\u4ec0\u4e48\u65e0\u6cd5\u7b80\u5316\u6210\u6570\u636e\uff1f\u5982\u679c\u5728\u6240\u6709\u5df2\u77e5\u7684\u6570\u636e\u5904\u7406\u4efb\u52a1\u4e0a\uff0c\u65e0\u610f\u8bc6\u7b97\u6cd5\u7ec8\u4e8e\u5b8c\u5168\u80dc\u8fc7\u4e86\u6709\u610f\u8bc6\u7684\u4eba\u7c7b\u667a\u80fd\uff0c\u4e00\u65e6\u6211\u4eec\u7528\u524d\u8005\u53d6\u4ee3\u540e\u8005\uff0c\u53ef\u80fd\u4f1a\u5931\u53bb\u4ec0\u4e48\uff1f',
    u'createTime': 1493428197,
    u'isPrivate': 0,
    u'range': u'24259',
    u'reviewId': u'8560249_6Q4DJEzzx',
    u'type': 1,
    u'userVid': 8560249,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u5e7f\u4e1c \u6df1\u5733',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERx7FHCiaGT4V4Cor0K21YJge4KiaVzgOJiaawtfyyoxQeh6ssvc2ov7FDhUq5vaH7tZQwY2xqkmXIZF/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Miss Mi',
     u'userVid': 30018694},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'14',
    u'createTime': 1494532130,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 6,
    u'readingTime': 8616,
    u'reviewId': u'30018694_6PPUP4n6b',
    u'startReadingTime': 1492591848,
    u'type': 3,
    u'userVid': 30018694},
   u'reviewCount': 0,
   u'reviewId': u'30018694_6PPUP4n6b',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 30018694,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6500\u767b\u73e0\u7a46\u6717\u739b\u5cf0\u7684\u8fc7\u7a0b\u4f1a\u6bd4\u7ad9\u5728\u5c71\u9876\u66f4\u4ee4\u4eba\u6ee1\u8db3',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u6211\u4ee5\u4e3a\u6bcf\u4e2a\u60f3\u53bb\u6500\u767b\u73e0\u7a46\u6717\u739b\u5cf0\u7684\u4eba\u90fd\u76fc\u671b\u7740\u6709\u4e00\u5929\u7ad9\u5728\u5c71\u9876\u2026\u53ea\u6709\u6210\u529f\u7684\u7ad9\u5728\u4e0a\u9762\u2026\u624d\u6709\u673a\u4f1a\u53bb\u56de\u5473\u8fd9\u4e2a\u8fc7\u7a0b\u624d\u4f1a\u66f4\u5e78\u798f\u5feb\u4e50\u6ee1\u8db3\u2026\u4e3a\u4ec0\u4e48\u8981\u8bf4\u66f4\u5462\u2026\u56e0\u4e3a\u53ef\u80fd\u722c\u8fc7\u4f46\u662f\u6ca1\u7ad9\u5728\u5c71\u9876\u7684\u4eba\u4e5f\u89c9\u5f97\u81ea\u5df1\u5e78\u798f\u5feb\u4e50\u6ee1\u8db3\u2026\u56e0\u4e3a\u8fd9\u4e16\u754c\u4e0a99.99%\u7684\u4eba\u90fd\u8fd8\u6ca1\u89c1\u8fc7\u73e0\u7a46\u6717\u739b\u5cf0\u2026\u6240\u4ee5\u2026\u5e78\u798f\u5feb\u4e50\u59cb\u7ec8\u90fd\u662f\u6500\u6bd4\u4e4b\u4e0b\u7ed3\u679c\u8bba\u2026\n',
    u'createTime': 1492877797,
    u'range': u'42227-42248',
    u'reviewId': u'30018694_6PUWWS8Gq',
    u'type': 1,
    u'userVid': 30018694}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TFHfRWUI4icWvHb6bfLWu28DxwZiaObtrq1Sz4CZVDyG1Wejs8cNgEibanriaGpP78cwicoQiakqO3KfjC/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Thomas Chen2',
     u'userVid': 15126554,
     u'vDesc': u'\u9ed8\u66f0TC'}],
   u'location': u'\u91cd\u5e86 \u74a7\u5c71',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/bnFC73eKX1cUMvOlYjSZv7HzdnmUODXqhvSGhTAD9xfFVDjAjvZIkN1Nk7V9kyWbtPTPR3BQjUbnicbh9vMibsmcjkO42OibwQj/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u7d27\u76ef\u7740\u90a3\u7247\u6d77',
     u'userVid': 13817202},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'86',
    u'createTime': 1494531750,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 29,
    u'readingTime': 40593,
    u'reviewId': u'13817202_6Q0Tu1J63',
    u'startReadingTime': 1493215424,
    u'type': 3,
    u'userVid': 13817202},
   u'reviewCount': 0,
   u'reviewId': u'13817202_6Q0Tu1J63',
   u'signature': u'\u5b81\u4f5c\u767e\u592b\u957f\uff0c\u4e0d\u4f5c\u4e00\u4e66\u751f\u3002',
   u'totalReadingTime': 0,
   u'vid': 13817202,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u5728\u300a\u521b\u4e16\u8bb0\u300b\u91cc\uff0c\u4eba\u4e0d\u662f\u86c7\u7684\u540e\u4ee3\uff0c\u800c\u662f\u7531\u8036\u548c\u534e\u7528\u5730\u4e0a\u7684\u5c18\u571f\u8fd9\u79cd\u65e0\u751f\u547d\u7269\u8d28\u521b\u9020\u7684\u3002\u86c7\u4e0d\u662f\u4eba\u7c7b\u7684\u7956\u5148\uff0c\u53cd\u800c\u5f15\u8bf1\u4eba\u5bf9\u6297\u6211\u4eec\u5929\u4e0a\u7684\u7236\u3002\u6cdb\u7075\u8bba\u53ea\u628a\u4eba\u7c7b\u770b\u6210\u53e6\u4e00\u79cd\u52a8\u7269\uff0c\u4f46\u300a\u5723\u7ecf\u300b\u5219\u8ba4\u4e3a\u4eba\u7c7b\u662f\u4e0a\u5e1d\u72ec\u7279\u7684\u521b\u9020\uff0c\u8981\u8bf4\u4eba\u4e5f\u662f\u52a8\u7269\uff0c\u7b49\u4e8e\u5426\u8ba4\u4e0a\u5e1d\u7684\u80fd\u529b\u548c\u6743\u5a01\u3002\u786e\u5b9e\u5982\u6b64\uff0c\u7b49\u5230\u73b0\u4ee3\u4eba\u7c7b\u53d1\u73b0\u81ea\u5df1\u5176\u5b9e\u662f\u7531\u722c\u884c\u52a8',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 5,
    u'content': u'\u66fe\u7ecf\u4fe1\u5949\u7684\u771f\u7406\uff0c\u7a81\u7136\u88ab\u98a0\u8986\uff0c\u8be5\u662f\u4f55\u7b49\u7684\u60c6\u6005\u3002\u4e3a\u4e4b\u8017\u5c3d\u9752\u6625\u5e74\u534e\u3001\u71ac\u5230\u5934\u53d1\u82b1\u767d\u7684\u4e8b\u4e1a\u7adf\u662f\u9519\u8bef\u4e00\u573a\uff0c\u5982\u4f55\u4e0d\u4e3a\u4e4b\u766b\u72c2\u3002\u524d\u4e9b\u5e74\u6211\u6240\u6709\u7684\u6101\u7eea\u4e0d\u662f\u4e5f\u662f\u5982\u6b64\u4e48\uff0c\u660e\u660e\u77e5\u9053\u4ed8\u51fa\u7684\u52aa\u529b\u4ea7\u751f\u4e0d\u4e86\u5b9e\u8d28\u7684\u6548\u76ca\uff0c\u5374\u88ab\u4f20\u7edf\u964b\u4e60\u7ed1\u67b6\u7740\u524d\u884c\uff0c\u90a3\u8bf4\u4e0d\u51fa\u7684\u6ecb\u5473\u81f3\u4eca\u4e0d\u80fd\u91ca\u6000\u3002\n\u4e0d\u662f\u56e0\u4e3a\u8352\u5e9f\u4e86\u65f6\u95f4\uff0c\u800c\u662f\u7f3a\u5c11\u76f4\u9762\u964b\u4e60\u7684\u52c7\u6c14\uff0c\u6ca1\u80fd\u63d0\u524d\u6c89\u4e0b\u5fc3\u6765\u597d\u597d\u4fee\u70bc\u81ea\u5df1\uff0c\u4ee5\u81f3\u4e8e\u81f3\u4eca\u8fd8\u662f\u788c\u788c\u65e0\u4e3a\u3002\u5c31\u5982\u90a3\u4e9b\u4fe1\u5949\u4e0a\u5e1d\u521b\u9020\u4eba\u7c7b\u7684\u4eba\u4eec\u4e00\u6837\uff0c\u5373\u4f7f\u77e5\u9053\u4e86\u4eba\u7c7b\u662f\u8fdb\u5316\u7684\u4ea7\u7269\u672c\u8d28\u4e0a\u4e5f\u662f\u5c5e\u4e8e\u52a8\u7269\u7684\u4e00\u79cd\uff0c\u4ecd\u7136\u4e0d\u6562\u5766\u7136\u9762\u5bf9\uff0c\u4e00\u610f\u5b64\u884c\u3002',
    u'createTime': 1493356820,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'11878',
    u'reviewId': u'13817202_6Q3nP9PQh',
    u'type': 1,
    u'userVid': 13817202,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EFicElHLxI19LDvXBOqkXX1vb1EibZfCALaJ8Zic7HXeSWicxmYWTE13MVLrzTkxuguN0eqVu77tAicK26djSkiccewgy/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'A000\u2015\u5728\u8fdc\u65b9\U0001f6b6\U0001f6b6',
     u'userVid': 11354873,
     u'vDesc': u'\u6bcf\u65e5\u4e00\u8bfb\uff0c'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/qpMt1CiamLibRicodkLXwC9tZt2yJp46x124Zm7mkc2AQBB98oQRP1f1yLRjLK0n46Mib52jibhIFORK2ckaTsDqlUDbJAFXndRIb/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u80cc\u628a\u5409\u4ed6\u8d70\u5929\u6daf',
     u'userVid': 16829286,
     u'vDesc': u'\u5409\u4ed6\uff0c\u5065\u8eab\uff0c\u8bfb\u4e66'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLBtYDeRiaaYia6Aez5wQVEQS41jKhWqxqIO1aJYw9lt2WZjqBJv4Ft55XgymTkaLdDlorpTibmM8k0MA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u9759\u99a8\u9601CoCo',
     u'userVid': 2626899,
     u'vDesc': u' \u597d\u6c14\u8d28\u8981\u6bd4\u9ad8\u989c\u503c\u7ecf\u4e45\u8010\u7528\uff0c\u5e76\u4e14\u66f4\u52a0\u8d70\u5fc3'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u5317\u4eac \u897f\u57ce',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TH4QGNHNYlHxCxy2OTzuib3pREhR5MnzwTZTYTcicD7erQxu473ynkX7GLnwgtc2ynY2ZBjLZV4ety/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u738b_\u82cf_\u5e73',
     u'userVid': 2432479},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 16,
    u'content': u'94',
    u'createTime': 1494531524,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 38,
    u'readingTime': 60705,
    u'reviewId': u'2432479_6OujwYOVQ',
    u'startReadingTime': 1487843264,
    u'type': 3,
    u'userVid': 2432479},
   u'reviewCount': 0,
   u'reviewId': u'2432479_6OujwYOVQ',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 2432479,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6211\u5230\u5e95\u662f\u771f\u6b63\u5173\u5fc3\u4e5e\u4e10\uff0c\u8fd8\u662f\u53ea\u60f3\u8ba9\u81ea\u5df1\u597d\u8fc7\u70b9\uff1f',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 6,
    u'content': u'\u8fd9\u4e2a\u95ee\u9898\u786e\u5b9e\u503c\u5f97\u601d\u8003\uff0c\u4eba\u4eec\u5230\u5e95\u662f\u56e0\u4e3a\u771f\u7684\u5584\u826f\u540c\u60c5\u5173\u5fc3\u4e5e\u4e10\uff0c\u8fd8\u662f\u53ea\u56e0\u4e3a\u60f3\u8ba9\u81ea\u5df1\u597d\u8fc7\u70b9\uff0c\u901a\u8fc7\u5411\u4e5e\u4e10\u4f38\u51fa\u63f4\u624b\u6ee1\u8db3\u4e86\u81ea\u6211\u50ac\u7720\u81ea\u5df1\u662f\u597d\u4eba\uff0c\u4ece\u800c\u5fc3\u91cc\u8212\u670d\uff1f',
    u'createTime': 1488198971,
    u'range': u'27540-27780',
    u'reviewId': u'2432479_6OAzNHS9T',
    u'type': 1,
    u'userVid': 2432479}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1RmB1ZiaxJc1NOK8jLhfLX2TCAfC0rSib97TUOOiamQmNjEYeNejJccMCMD77tptxPib9qC9LBmlv9hp/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u7b11\u770b\u98ce\u4e91\uff08\u5b59\u8fdc\u5fe0\uff09',
     u'userVid': 37411103,
     u'vDesc': u'\u4e0d\u7ecf\u4e00\u756a\u5bd2\u5f7b\u9aa8\uff0c\u600e\u5f97\u6885\u82b1\u6251\u9f3b\u9999\uff1f'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uvNvkEvzjuPPVMxvejHphHvViawc0vfAriaicsHzZwDgVN6r8HJUZNOu9B5vCpafiarpUOYns7PMibXV1A/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'wtony',
     u'userVid': 11000653,
     u'vDesc': u'\u4fee\u98de\u673a\u7684'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'66',
    u'createTime': 1494530649,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 18,
    u'readingTime': 23314,
    u'reviewId': u'11000653_6PXXbN3OD',
    u'startReadingTime': 1493048418,
    u'type': 3,
    u'userVid': 11000653},
   u'reviewCount': 0,
   u'reviewId': u'11000653_6PXXbN3OD',
   u'signature': u'\u6bcf\u5929\u4e00\u5c0f\u6b65',
   u'totalReadingTime': 0,
   u'vid': 11000653,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6211\u4eec\u53ef\u80fd\u89c9\u5f97\u4e66\u9762\u6587\u5b57\u53ea\u662f\u7528\u6765\u6e29\u548c\u5730\u63cf\u8ff0\u73b0\u5b9e\uff0c\u4f46\u5b83\u5374\u9010\u6e10\u53d8\u5f97\u5a01\u529b\u65e0\u7a77\uff0c\u56e0\u4e3a\u5b83\u80fd\u591f\u91cd\u5851\u73b0\u5b9e\u3002\u5982\u679c\u5b98\u65b9\u62a5\u544a\u4e0e\u5ba2\u89c2\u73b0\u5b9e\u6709\u6240\u51b2\u7a81\uff0c\u6700\u540e\u8ba9\u6b65\u7684\u5f80\u5f80\u662f\u73b0\u5b9e\u3002\u53ea\u8981\u548c\u7a0e\u52a1\u673a\u5173\u3001\u6559\u80b2\u4f53\u7cfb\u6216\u5176\u4ed6\u70e6\u5197\u7684\u5b98\u50da\u673a\u6784\u6253\u8fc7\u4ea4\u9053\uff0c\u4f60\u5c31\u77e5\u9053\u51e0\u4e4e\u6ca1\u4eba\u5728\u610f\u771f\u76f8\uff0c\u8868\u683c\u4e0a\u5199\u7684\u53cd\u800c\u624d\u66f4\u91cd\u8981',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 8,
    u'content': u'\u5982\u540c\u73b0\u5728\u7684\u7f51\u7edc\u89c6\u9891\uff0c\u7f51\u7edc\u6587\u7ae0\uff0c\u5f88\u591a\u4eba\u4e0d\u5728\u4e4e\u771f\u76f8\uff0c\u4e0d\u5728\u4e4e\u5230\u5e95\u53d1\u751f\u4e86\u4ec0\u4e48\uff0c\u4e00\u4e2a\u89c6\u9891\u53ef\u4ee5\u6539\u53d8\u5bf9\u4e00\u4e2a\u4e8b\u60c5\u7684\u770b\u6cd5\uff0c\u53e6\u4e00\u4e2a\u89c6\u9891\u53c8\u53ef\u4ee5\u9a6c\u4e0a\u6539\u53d8\u3002\u5f88\u5c11\u6709\u4eba\u53bb\u601d\u8003\u5230\u5e95\u8fd9\u4e2a\u89c6\u9891\uff0c\u8fd9\u4e2a\u6587\u7ae0\u662f\u771f\u662f\u5047\uff0c\u6ca1\u6709\u4eba\u5728\u4e4e\u89c6\u9891\u662f\u4e0d\u662f\u4e3a\u4e86\u535a\u773c\u7403\u6446\u62cd\n',
    u'createTime': 1493959184,
    u'range': u'10263-10385',
    u'reviewId': u'11000653_6QdZkCKoD',
    u'type': 1,
    u'userVid': 11000653}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u6d77\u5357',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1aVqBfsmkPzWafI4wBp3Uj47uEKlHor0T1cNR1W9YMne16MOQnHmY0t6ibm8PKTnmhqadyk7dSPMb/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5189\u709c\u541b',
     u'userVid': 22201440},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 6,
    u'content': u'37',
    u'createTime': 1494530434,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 5,
    u'readingTime': 9331,
    u'reviewId': u'22201440_6QbdeJ6Vp',
    u'startReadingTime': 1493801522,
    u'type': 3,
    u'userVid': 22201440},
   u'reviewCount': 0,
   u'reviewId': u'22201440_6QbdeJ6Vp',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 22201440,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u4e4b\u524d\u4e70\u4e86\u4e00\u672c\u7eb8\u8d28\u4e66\u300a\u672a\u6765\u7b80\u53f2\u300b\uff0c\u5b83\u4ee5\u5b8f\u5927\u7684\u89c6\u89d2\u5ba1\u89c6\u7740\u4eba\u7c7b\u672a\u6765\u7684\u7ec8\u6781\u547d\u8fd0\uff0c\u4ed6\u8ba4\u4e3a\u8fc7\u53bb\u56f0\u6270\u4eba\u7c7b\u8fd9\u4e2a\u7fa4\u4f53\u7684\u4e09\u5927\u95ee\u9898\uff1a\u9965\u8352\u3001\u761f\u75ab\u548c\u6218\u4e89\uff0c\u5dee\u4e0d\u591a\u90fd\u89e3\u51b3\u4e86\u3002\u5c06\u6765\u8981\u89e3\u51b3\u7684\u4e09\u4e2a\u65b0\u95ee\u9898\u662f\u957f\u751f\u4e0d\u6b7b\u3001\u5e78\u798f\u5feb\u4e50\u3001\u5316\u8eab\u4e3a\u795e\uff0c\u5728\u89e3\u51b3\u8fd9\u4e9b\u65b0\u95ee\u9898\u7684\u8fc7\u7a0b\u4e2d\uff0c\u79d1\u5b66\u6280\u672f\u7684\u53d1\u5c55\u5c06\u98a0\u8986\u6211\u4eec\u5f88\u591a\u5f53\u4e0b\u8ba4\u4e3a\u65e0\u9700\u4f50\u8bc1\u7684\u201c\u5e38\u8bc6\u201d\uff0c\u6bd4\u5982\u4eba\u6587\u4e3b\u4e49\u6240\u63a8\u5d07\u7684\u81ea\u7531\u610f\u5fd7\u5c06\u9762\u4e34\u4e25\u5cfb\u6311\u6218\uff0c\u673a\u5668\u5c06\u4f1a\u4ee3\u66ff\u4eba\u7c7b\u505a\u51fa\u66f4\u660e\u667a\u7684\u9009\u62e9\u3002\n\u5f53\u4ee5\u5927\u6570\u636e\u3001\u4eba\u5de5\u667a\u80fd\u4e3a\u4ee3\u8868\u7684\u79d1\u5b66\u6280\u672f\u53d1\u5c55\u7684\u65e5\u76ca\u6210\u719f\uff0c\u4eba\u7c7b\u5c06\u9762\u4e34\u7740\u4ece\u8fdb\u5316\u5230\u667a\u4eba\u4ee5\u6765\u6700\u5927\u7684\u4e00\u6b21\u6539\u53d8\uff0c\u7edd\u5927\u90e8\u5206\u4eba\u5c06\u6ca6\u4e3a\u201c\u65e0\u4ef7\u503c\u7684\u7fa4\u4f53\u201d\uff0c\u53ea\u6709\u5c11\u90e8\u5206\u4eba\u80fd\u8fdb\u5316\u6210\u7279\u8d28\u53d1\u751f\u6539\u53d8\u7684 \u201c\u795e\u4eba\u201d\u3002\n\u672a\u6765\uff0c\u4eba\u7c7b\u5c06\u9762\u4e34\u7740\u4e09\u5927\u95ee\u9898\uff1a\u751f\u7269\u672c\u8eab\u5c31\u662f\u7b97\u6cd5\uff0c\u751f\u547d\u662f\u4e0d\u65ad\u5904\u7406\u6570\u636e\u7684\u8fc7\u7a0b\uff1b\u610f\u8bc6\u4e0e\u667a\u80fd\u7684\u5206\u79bb\uff1b\u62e5\u6709\u5927\u6570\u636e\u79ef\u7d2f\u7684\u5916\u90e8\u73af\u5883\u5c06\u6bd4\u6211\u4eec\u81ea\u5df1\u66f4\u4e86\u89e3\u81ea\u5df1\u3002\u5982\u4f55\u770b\u5f85\u8fd9\u4e09\u5927\u95ee\u9898\uff0c\u4ee5\u53ca\u5982\u4f55\u91c7\u53d6\u5e94\u5bf9\u63aa\u65bd\uff0c\u5c06\u76f4\u63a5\u5f71\u54cd\u7740\u4eba\u7c7b\u672a\u6765\u7684\u53d1\u5c55\u3002\n\u4ed6\u63cf\u8ff0\u4e86\u5de5\u4eba\u667a\u80fd\u7684\u8d70\u5411\uff0c\u8ba9\u6211\u4eec\u4e86\u89e3\u5230\u672a\u6765\u4e16\u754c\u7684\u53ef\u80fd\u6027\uff0c\u65e2\u6709\u95ee\u9898\uff0c\u53c8\u6709\u61a7\u61ac\u3002\u8fd9\u5c31\u662f\u5373\u5c06\u5230\u6765\u7684\u7b2c\u56db\u6b21\u5de5\u4e1a\u9769\u547d\u6d6a\u6f6e\u3002\u53ef\u4ee5\u8bf4\u4f5c\u8005\u7684\u7b2c\u4e00\u90e8\u4e66\u300a\u4eba\u7c7b\u7b80\u53f2\u300b\u63a2\u7a76\u7684\u662f\u4eba\u4ece\u54ea\u91cc\u300a\u672a\u6765\u7b80\u53f2\u300b\u5219\u662f\u9884\u8a00\u4eba\u7c7b\u5230\u54ea\u91cc\u53bb\u3002',
    u'createTime': 1492874135,
    u'htmlContent': u'<p>\u4e4b\u524d\u4e70\u4e86\u4e00\u672c\u7eb8\u8d28\u4e66\u300a\u672a\u6765\u7b80\u53f2\u300b\uff0c\u5b83\u4ee5\u5b8f\u5927\u7684\u89c6\u89d2\u5ba1\u89c6\u7740\u4eba\u7c7b\u672a\u6765\u7684\u7ec8\u6781\u547d\u8fd0\uff0c\u4ed6\u8ba4\u4e3a\u8fc7\u53bb\u56f0\u6270\u4eba\u7c7b\u8fd9\u4e2a\u7fa4\u4f53\u7684\u4e09\u5927\u95ee\u9898\uff1a\u9965\u8352\u3001\u761f\u75ab\u548c\u6218\u4e89\uff0c\u5dee\u4e0d\u591a\u90fd\u89e3\u51b3\u4e86\u3002\u5c06\u6765\u8981\u89e3\u51b3\u7684\u4e09\u4e2a\u65b0\u95ee\u9898\u662f\u957f\u751f\u4e0d\u6b7b\u3001\u5e78\u798f\u5feb\u4e50\u3001\u5316\u8eab\u4e3a\u795e\uff0c\u5728\u89e3\u51b3\u8fd9\u4e9b\u65b0\u95ee\u9898\u7684\u8fc7\u7a0b\u4e2d\uff0c\u79d1\u5b66\u6280\u672f\u7684\u53d1\u5c55\u5c06\u98a0\u8986\u6211\u4eec\u5f88\u591a\u5f53\u4e0b\u8ba4\u4e3a\u65e0\u9700\u4f50\u8bc1\u7684\u201c\u5e38\u8bc6\u201d\uff0c\u6bd4\u5982\u4eba\u6587\u4e3b\u4e49\u6240\u63a8\u5d07\u7684\u81ea\u7531\u610f\u5fd7\u5c06\u9762\u4e34\u4e25\u5cfb\u6311\u6218\uff0c\u673a\u5668\u5c06\u4f1a\u4ee3\u66ff\u4eba\u7c7b\u505a\u51fa\u66f4\u660e\u667a\u7684\u9009\u62e9\u3002</p><p>\u5f53\u4ee5\u5927\u6570\u636e\u3001\u4eba\u5de5\u667a\u80fd\u4e3a\u4ee3\u8868\u7684\u79d1\u5b66\u6280\u672f\u53d1\u5c55\u7684\u65e5\u76ca\u6210\u719f\uff0c\u4eba\u7c7b\u5c06\u9762\u4e34\u7740\u4ece\u8fdb\u5316\u5230\u667a\u4eba\u4ee5\u6765\u6700\u5927\u7684\u4e00\u6b21\u6539\u53d8\uff0c\u7edd\u5927\u90e8\u5206\u4eba\u5c06\u6ca6\u4e3a\u201c\u65e0\u4ef7\u503c\u7684\u7fa4\u4f53\u201d\uff0c\u53ea\u6709\u5c11\u90e8\u5206\u4eba\u80fd\u8fdb\u5316\u6210\u7279\u8d28\u53d1\u751f\u6539\u53d8\u7684 \u201c\u795e\u4eba\u201d\u3002</p><p>\u672a\u6765\uff0c\u4eba\u7c7b\u5c06\u9762\u4e34\u7740\u4e09\u5927\u95ee\u9898\uff1a\u751f\u7269\u672c\u8eab\u5c31\u662f\u7b97\u6cd5\uff0c\u751f\u547d\u662f\u4e0d\u65ad\u5904\u7406\u6570\u636e\u7684\u8fc7\u7a0b\uff1b\u610f\u8bc6\u4e0e\u667a\u80fd\u7684\u5206\u79bb\uff1b\u62e5\u6709\u5927\u6570\u636e\u79ef\u7d2f\u7684\u5916\u90e8\u73af\u5883\u5c06\u6bd4\u6211\u4eec\u81ea\u5df1\u66f4\u4e86\u89e3\u81ea\u5df1\u3002\u5982\u4f55\u770b\u5f85\u8fd9\u4e09\u5927\u95ee\u9898\uff0c\u4ee5\u53ca\u5982\u4f55\u91c7\u53d6\u5e94\u5bf9\u63aa\u65bd\uff0c\u5c06\u76f4\u63a5\u5f71\u54cd\u7740\u4eba\u7c7b\u672a\u6765\u7684\u53d1\u5c55\u3002</p><p>\u4ed6\u63cf\u8ff0\u4e86\u5de5\u4eba\u667a\u80fd\u7684\u8d70\u5411\uff0c\u8ba9\u6211\u4eec\u4e86\u89e3\u5230\u672a\u6765\u4e16\u754c\u7684\u53ef\u80fd\u6027\uff0c\u65e2\u6709\u95ee\u9898\uff0c\u53c8\u6709\u61a7\u61ac\u3002\u8fd9\u5c31\u662f\u5373\u5c06\u5230\u6765\u7684\u7b2c\u56db\u6b21\u5de5\u4e1a\u9769\u547d\u6d6a\u6f6e\u3002\u53ef\u4ee5\u8bf4\u4f5c\u8005\u7684\u7b2c\u4e00\u90e8\u4e66\u300a\u4eba\u7c7b\u7b80\u53f2\u300b\u63a2\u7a76\u7684\u662f\u4eba\u4ece\u54ea\u91cc\u300a\u672a\u6765\u7b80\u53f2\u300b\u5219\u662f\u9884\u8a00\u4eba\u7c7b\u5230\u54ea\u91cc\u53bb\u3002</p>',
    u'isPrivate': 0,
    u'range': u'',
    u'reviewId': u'22201440_6PUSX4zdK',
    u'topicRanges': [u'0-0'],
    u'type': 4,
    u'userVid': 22201440,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u5e7f\u4e1c \u6df1\u5733',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/mqdGpCvhkonYVuzbvwMiaZibyFMzXX7mcTnxX4G1vqEnNfpdSOpUcLVU331RlfpFv2rCWyuFH7f34Hiaq2icXhsBLeGu44FNAh4Q/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u91d1\u5de5\u73e0\u5b9d-Wallace',
     u'userVid': 2724513,
     u'vDesc': u'\u4f5c\u4e3a\u8bbe\u8ba1\u5e08\u7684\u6211\u559c\u6b22\u9605\u8bfb\u3001\u5b66\u4e60\u3001\u521b\u65b0\u3001\u4ea4\u53cb'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'87',
    u'createTime': 1494530031,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 12,
    u'readingTime': 59112,
    u'reviewId': u'2724513_6Pqk5hVYR',
    u'startReadingTime': 1491138185,
    u'type': 3,
    u'userVid': 2724513},
   u'reviewCount': 0,
   u'reviewId': u'2724513_6Pqk5hVYR',
   u'signature': u'\u559c\u6b22\u601d\u7ef4\u91cc\u7684\u5f02\u60f3\u5929\u5f00',
   u'totalReadingTime': 0,
   u'vid': 2724513,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u5f53\u7136\uff0c\u5230\u4e862033\u5e74\u4e5f\u53ef\u80fd\u51fa\u73b0\u8bb8\u591a\u65b0\u804c\u4e1a\uff0c\u6bd4\u5982\u865a\u62df\u4e16\u754c\u7684\u8bbe\u8ba1\u5e08\u3002\u7136\u800c\uff0c\u6b64\u7c7b\u804c\u4e1a\u53ef\u80fd\u4f1a\u9700\u8981\u6bd4\u5f53\u4e0b\u65e5\u5e38\u5de5\u4f5c\u66f4\u5f3a\u7684\u521b\u610f\u548c\u5f39\u6027\uff0c\u800c\u4e14\u5982\u679c\u6536\u94f6\u5458\u6216\u4fdd\u9669\u4e1a\u52a1\u5458\u5230\u4e8640\u5c81\u4e2d\u5e74\u5931\u4e1a\uff0c\u80fd\u5426\u6210\u529f\u8f6c\u578b\u4e3a\u865a\u62df\u4e16\u754c\u8bbe\u8ba1\u5e08\uff0c\u4e5f\u5b9e\u5728\u96be\u8bf4\u3002\u5c31\u7b97\u4ed6\u4eec\u771f\u7684\u8f6c\u578b\u6210\u529f\uff0c\u6839\u636e\u793e\u4f1a\u8fdb\u6b65\u7684\u901f\u5ea6\uff0c\u5f88\u6709\u53ef\u80fd\u518d\u8fc710\u5e74\u53c8\u5f97\u91cd\u65b0\u8f6c\u578b\u3002\u6bd5\u7adf\uff0c\u7b97\u6cd5\u4e5f\u53ef\u80fd\u4f1a\u5728\u865a\u62df\u4e16\u754c\u91cc\u6253\u8d25\u4eba\u7c7b\u3002\u6240\u4ee5\uff0c\u8fd9\u91cc\u4e0d\u53ea\u9700\u8981\u521b\u9020\u65b0\u5de5\u4f5c\uff0c\u66f4\u5f97\u521b\u9020\u201c\u4eba\u7c7b\u505a\u5f97\u6bd4\u7b97\u6cd5\u597d\u201d\u7684\u65b0\u5de5\u4f5c\u3002[\u63d2\u56fe]\n\u7531\u4e8e\u6211\u4eec\u65e0\u6cd5\u9884\u77e52030\u5e74\u62162040\u5e74\u7684\u5c31\u4e1a\u5f62\u52bf\uff0c\u73b0\u5728\u4e5f\u5c31\u4e0d\u77e5\u9053\u8be5\u5982\u4f55\u6559\u80b2\u4e0b\u4e00\u4ee3\u3002\u7b49\u5230\u5b69\u5b50\u957f\u523040\u5c81\uff0c\u4ed6\u4eec\u5728\u5b66\u6821\u5b66\u7684\u4e00\u5207\u77e5\u8bc6\u53ef\u80fd\u90fd\u5df2\u7ecf\u8fc7\u65f6\u3002\u4f20\u7edf\u4e0a\uff0c\u4eba\u751f\u4e3b\u8981\u5206\u4e3a\u4e24\u5927\u65f6\u671f\uff1a\u5b66\u4e60\u671f\uff0c\u518d\u52a0\u4e0a\u4e4b\u540e\u7684\u5de5\u4f5c\u671f\u3002\u4f46\u8fd9\u79cd\u4f20\u7edf\u6a21\u5f0f\u5f88\u5feb\u5c31\u4f1a\u5f7b\u5e95\u8fc7\u65f6\uff0c\u60f3\u8981\u4e0d\u88ab\u6dd8\u6c70\u53ea\u6709\u4e00\u6761\u8def\uff1a\u4e00\u8f88\u5b50\u4e0d\u65ad\u5b66\u4e60\uff0c\u4e0d\u65ad\u6253\u9020\u5168\u65b0\u7684\u81ea\u5df1\u3002\u53ea\u4e0d\u8fc7\uff0c\u8bb8\u591a\u4eba\uff0c\u751a\u81f3\u662f\u5927\u591a\u6570\u4eba\uff0c\u5927\u6982\u90fd\u505a\u4e0d\u5230\u8fd9\u4e00\u70b9\u3002\n\u7531\u4e8e\u63a5\u4e0b\u6765\u7684\u79d1\u6280\u53d1\u5c55\u6f5c\u529b\u6781\u5176\u5de8\u5927\uff0c\u5f88\u6709\u53ef\u80fd\u5c31\u7b97\u8fd9\u4e9b\u65e0\u7528\u7684\u5927\u4f17\u4ec0\u4e48\u4e8b\u90fd\u4e0d\u505a\uff0c\u6574\u4e2a\u793e\u4f1a\u4e5f\u6709\u80fd\u529b\u4f9b\u517b\u8fd9\u4e9b\u4eba\uff0c\u8ba9\u4ed6\u4eec\u6d3b\u4e0b\u53bb\u3002\u7136\u800c\uff0c\u4ec0\u4e48\u4e8b\u80fd\u8ba9\u4ed6\u4eec\u6253\u53d1\u65f6\u95f4\uff0c\u83b7\u5f97\u6ee1\u8db3\u611f\uff1f\u4eba\u603b\u5f97\u505a\u4e9b\u4ec0\u4e48\uff0c\u5426\u5219\u80af\u5b9a\u4f1a\u65e0\u804a\u5230\u53d1\u75af\u3002\u5230\u65f6\u5019\uff0c\u8981\u600e\u4e48\u8fc7\u5b8c\u4e00\u5929\uff1f\u7b54\u6848\u4e4b\u4e00\u53ef\u80fd\u662f\u9760\u836f\u7269\u548c\u7535\u8111\u6e38\u620f\u3002\u90a3\u4e9b\u5bf9\u793e\u4f1a\u6765\u8bf4\u591a\u4f59\u7684\u4eba\uff0c\u53ef\u4ee5\u591a\u82b1\u70b9\u65f6\u95f4\u57283D\u865a\u62df\u4e16\u754c\u91cc\uff1b\u6bd4\u8d77\u4e86\u65e0\u751f\u8da3\u7684\u73b0\u5b9e\u4e16\u754c\uff0c\u865a\u62df\u4e16\u754c\u80fd\u591f\u4e3a\u4ed6\u4eec\u63d0\u4f9b\u66f4\u591a\u523a\u6fc0\uff0c\u8bf1\u53d1\u66f4\u591a\u60c5\u611f\u6295\u5165\u3002\u7136\u800c\uff0c\u81ea\u7531\u4e3b\u4e49\u63a8\u5d07\u4eba\u7c7b\u751f\u547d\u53ca\u4eba\u7c7b\u4f53\u9a8c\u795e\u5723\u4e0d\u53ef\u4fb5\u72af\uff0c\u8fd9\u6837\u7684\u53d1\u5c55\u4f1a\u662f\u5bf9\u8fd9\u4e00\u4fe1\u5ff5\u7684\u81f4\u547d\u6253\u51fb\u3002\u8fd9\u4e9b\u4eba\u5bf9\u793e\u4f1a\u6beb\u65e0\u7528\u5904\uff0c\u6574\u5929\u6d3b\u5728\u73b0\u5b9e\u4e0e\u865a\u5e7b\u4e4b\u95f4\uff0c\u8fd9\u6837\u7684\u751f\u547d\u4f55\u6765\u795e\u5723',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 14,
    u'content': u'\u5176\u5b9e\u771f\u7684\u5230\u4e86\u8fd9\u6837\u7684\u672a\u6765\uff0c\u4f30\u8ba1\u90fd\u5f88\u5389\u5bb3\uff0c\u6211\u9884\u6d4b\uff0c\u4e00\u90e8\u5206\u9ad8\u7ea7\u4eba\u624d\u5f00\u53d1\u4e16\u754c\uff08\u5982\u8bbe\u8ba1\u865a\u62df\u4e16\u754c\uff09\uff1b\u4e00\u90e8\u5206\u4e2d\u7ea7\u4eba\u624d\u7ecf\u8425\u4e16\u754c\uff08\u5982\u6e38\u620f\u865a\u62df\u4e16\u754c\u9700\u8981\u73a9\u5bb6\uff0c\u5c31\u53ef\u80fd\u9020\u5c31\u4e00\u90e8\u5206\u4eba\u5728\u865a\u62df\u4e16\u754c\u91cc\u5f88\u5389\u5bb3\uff0c\u4ece\u800c\u5f97\u5230\u5185\u5fc3\u7684\u6ee1\u8db3\u4e0e\u4ef7\u503c\u4f53\u73b0\uff09\uff1b\u4e00\u822c\u5206\u4e00\u822c\u4eba\u624d\u914d\u5408\u5404\u79cd\u4e16\u754c\u6765\u505a\u5404\u79cd\u670d\u52a1\u5de5\u4f5c\uff0c\u7ef4\u62a4\u548c\u8c10\u4e16\u754c\u3002',
    u'createTime': 1494344564,
    u'isPrivate': 0,
    u'range': u'25955-26940',
    u'reviewId': u'2724513_6QkLZtjKT',
    u'type': 1,
    u'userVid': 2724513,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 0,
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/bnFC73eKX1cUMvOlYjSZvyfaviaicUia4I0BpdWubfeBOv0RbbX0NmNbYcTVqicuGiaOpJ0oj0v44tT9FgwAq88VLlgBJc6MePkNm/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u672a\u52a8\u5df2\u8fdc',
     u'userVid': 36825839},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 13,
    u'content': u'75',
    u'createTime': 1494529377,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 17,
    u'readingTime': 41426,
    u'reviewId': u'36825839_6PdZdQRmE',
    u'startReadingTime': 1490437470,
    u'type': 3,
    u'userVid': 36825839},
   u'reviewCount': 0,
   u'reviewId': u'36825839_6PdZdQRmE',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 36825839,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'2013\u5e74\uff0c\u5317\u4eac\u7684\u4e00\u4e9b\u8d35\u65cf\u5b66\u6821\u751a\u81f3\u65a5\u5de8\u8d44\u5728\u7f51\u7403\u573a\u53ca\u8fd0\u52a8\u573a\u5730\u76d6\u8d77\u4e86\u5de8\u5927\u7684\u5706\u9876\u5e10\u7bf7\uff0c\u5176\u4ed6\u5b66\u6821\u4e5f\u7eb7\u7eb7\u8ddf\u8fdb\u3002\u4e2d\u56fd\u7a7a\u6c14\u51c0\u5316\u5e02\u573a\u53d1\u5c55\u84ec\u52c3\u3002\u81f3\u4e8e\u5927\u591a\u4eba\u7c7b\u53d1\u73b0\u81ea\u5df1\u9677\u5165\u4e86\u53cc\u91cd\u7ade\u8d5b\u3002\u4e00\u65b9\u9762\uff0c\u6211\u4eec\u8ba4\u4e3a\u5fc5\u987b\u52a0\u5feb\u79d1\u6280\u8fdb\u6b65\u548c\u7ecf\u6d4e\u589e\u957f\u7684\u6b65\u4f10\u300210\u4ebf\u4e2d\u56fd\u4eba\u548c10\u4ebf\u5370\u5ea6\u4eba\u90fd\u5e0c\u671b\u8fc7\u4e0a\u50cf\u7f8e\u56fd\u4e2d\u4ea7\u9636\u7ea7\u4e00\u6837\u7684\u751f\u6d3b\uff0c\u800c\u5982\u679c\u7f8e\u56fd\u4eba\u8fd8\u662f\u5f00\u7740SUV\uff08\u8fd0\u52a8\u578b\u591a\u7528\u9014\u6c7d\u8f66\uff09\u3001\u901b\u7740\u8d2d\u7269\u4e2d\u5fc3\uff0c\u4ed6\u4eec\u5b9e\u5728\u627e\u4e0d\u5230\u6709\u4ec0\u4e48\u7406\u7531\u4e0d\u53bb\u5168\u529b\u8ffd\u6c42\u68a6\u60f3\u3002\u53e6\u4e00\u65b9\u9762\uff0c\u6211\u4eec\u53c8\u5fc5\u987b\u80fd\u5728\u751f\u6001\u4e16',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 10,
    u'content': u'\u73af\u4fdd\u95ee\u9898\u662f\u201c\u73b0\u4ee3\u75c5\u201d\u3002\u8ffd\u6c42\u73af\u5883\u5b89\u5168\u548c\u73af\u5883\u7f8e\u597d\u7684\u613f\u671b\uff0c\u4e0e\u4eba\u7c7b\u76ee\u524d\u4fe1\u5949\u7684\u73b0\u4ee3\u4e3b\u4e49\uff0c\u5b58\u5728\u6839\u672c\u6027\u5206\u6b67\uff0c\u5982\u4f55\u89e3\u51b3\u80fd\u5426\u89e3\u51b3\u90fd\u662f\u672a\u77e5\u6570',
    u'createTime': 1493452250,
    u'isPrivate': 0,
    u'range': u'12516',
    u'reviewId': u'36825839_6Q53Ztmsr',
    u'type': 1,
    u'userVid': 36825839,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5317\u4eac \u671d\u9633',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM57mZqO66UxJuLahH3LVRLMMhlyKdZps5G8DvicXHoHNjicY4wZNd7yQhPVo03txnYTCfYXRKh66hCrQQIUeISgnvSZshvlB3BUU/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'TAO',
     u'userVid': 22009466},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'100',
    u'createTime': 1494528109,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 96,
    u'readingTime': 50860,
    u'reviewId': u'22009466_6OYr5QKUY',
    u'startReadingTime': 1489554199,
    u'type': 3,
    u'userVid': 22009466},
   u'reviewCount': 0,
   u'reviewId': u'22009466_6OYr5QKUY',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 22009466,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\ufffc\n\u7b2c\u4e09\u90e8\u5206\u2028\u667a\u4eba\u5931\u53bb\u63a7\u5236\u6743\n\u4eba\u7c7b\u8fd8\u80fd\u7ee7\u7eed\u638c\u63a7\u4e16\u754c\u3001\u8d4b\u4e88\u4e16\u754c\u610f\u4e49\u5417\uff1f\n\u751f\u7269\u79d1\u6280\u548c\u4eba\u5de5\u667a\u80fd\u5c06\u5982\u4f55\u5a01\u80c1\u4eba\u6587\u4e3b\u4e49\uff1f\n\u8c01\u53ef\u80fd\u7ee7\u627f\u4eba\u7c7b\u7684\u89d2\u8272\uff0c\u4ec0\u4e48\u65b0\u5b97\u6559\u53ef\u80fd\u53d6\u4ee3\u4eba\u6587\u4e3b\u4e49\uff1f',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 12,
    u'content': u'\u6211\u53cd\u800c\u4f1a\u89c9\u5f97\u79d1\u6280\u7684\u53d1\u5c55\u4f1a\u5f3a\u5316\u4eba\u6587\u4e3b\u4e49\uff0c\u4e2a\u4f53\u7684\u80fd\u529b\u5f97\u5230\u63d0\u5347\uff0c\u4e2a\u4eba\u4f53\u9a8c\u4f1a\u66f4\u5f97\u5230\u5c0a\u91cd\uff0cMaybe[\u5fae\u7b11]\n',
    u'createTime': 1494379464,
    u'range': u'407',
    u'reviewId': u'22009466_6Qlo5n3Ho',
    u'type': 1,
    u'userVid': 22009466}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u5e7f\u4e1c \u97f6\u5173',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyAGiafQe2hpYIicYTnNts4nv0rho0se9xPACfmk0HkyHuI1s2A0f9PDQspExZdiafv89vUwhSbiahLsYRn17hE0fQT/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6f2b\u821e\u7ea2\u8896',
     u'userVid': 29208111},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 5,
    u'content': u'26',
    u'createTime': 1494528018,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 12,
    u'readingTime': 17373,
    u'reviewId': u'29208111_6OmqOAsLr',
    u'startReadingTime': 1487395535,
    u'type': 3,
    u'userVid': 29208111},
   u'reviewCount': 0,
   u'reviewId': u'29208111_6OmqOAsLr',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 29208111,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u9760\u7740\u75ab\u82d7\u3001\u836f\u7269\u3001\u6fc0\u7d20\u3001\u6740\u866b\u5242\u3001\u4e2d\u592e\u7a7a\u8c03\u7cfb\u7edf\u3001\u81ea\u52a8\u5582\u98df\u88c5\u7f6e\uff0c\u73b0\u5728\u6211\u4eec\u80fd\u628a\u6210\u5343\u4e0a\u4e07\u7684\u732a\u3001\u725b\u3001\u9e21\u585e\u8fdb\u6574\u800c\u8fd1\u5e74\u6765\uff0c\u968f\u7740\u4eba\u7c7b\u5f00\u59cb\u91cd\u65b0\u601d\u8003\u4eba\u4e0e\u52a8\u7269\u7684\u5173\u7cfb\uff0c\u8fd9\u6837\u7684\u505a\u6cd5\u5f00\u59cb\u62db\u81f4\u8d8a\u6765\u8d8a\u591a\u7684\u6279\u8bc4\u3002\u5ffd\u7136\u4e4b\u95f4\uff0c\u6211\u4eec\u5bf9\u4e8e\u6240\u8c13\u4f4e\u7b49\u751f\u7269\u7684\u547d\u8fd0\u6709\u4e86\u524d\u6240\u672a\u6709\u7684\u5174\u8da3\uff0c\u6216\u8bb8\u4e5f\u662f\u56e0\u4e3a\u81ea\u5df1\u5feb\u8981\u53d8\u6210\u4f4e\u7b49\u751f\u7269\u4e86\uff1f\u5982\u679c\u8ba1\u7b97\u673a\u7a0b\u5e8f\u62e5\u6709\u4e86\u8d85\u4e4e\u4eba\u7c7b\u7684\u667a\u6167\u3001\u524d\u6240\u672a\u6709\u7684\u80fd\u529b\uff0c\u6211\u4eec\u4f1a\u4e0d\u4f1a\u8ba4\u4e3a\u8fd9\u4e9b\u7a0b\u5e8f\u6bd4\u4eba\u7c7b\u66f4\u91cd\u8981\uff1f\u4e3e\u4f8b\u6765\u8bf4\uff0c\u4eba\u5de5\u667a\u80fd\u4f1a\u4e0d\u4f1a\u5229\u7528\u4eba\u7c7b\uff0c\u751a\u81f3\u4e3a\u4e86\u5b83\u81ea\u8eab\u7684\u9700\u6c42\u548c\u6b32\u671b\u800c\u6740\u6b7b\u4eba\u7c7b\uff1f\u5982',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 5,
    u'content': u'\u8d8a\u662f\u73b0\u4ee3\u751f\u7269\u5c31\u8d8a\u7cdf\u6467\u6b8b\uff0c\u795e\u6027\u4e0d\u5982\u4eba\u6027\u3002\u90a3\u73b0\u4ee3\u7684\u4eba\u6027\u53c8\u8bf4\u660e\u4e86\u4ec0\u4e48\u3002',
    u'createTime': 1493568482,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'38447',
    u'reviewId': u'29208111_6Q76RyY7D',
    u'type': 1,
    u'userVid': 29208111,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u6c5f\u82cf \u5357\u4eac',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ER80EePOk6ric29kd1eK3W4x4n9ga3BO7N6pj9koqD0MK53dj6ZpsbVbC8L4vFn7IS0YicaJDRdDLwD/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u743c',
     u'userVid': 20012900},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 16,
    u'content': u'100',
    u'createTime': 1494524918,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 95,
    u'readingTime': 71751,
    u'reviewId': u'20012900_6P0dnidcS',
    u'startReadingTime': 1489655232,
    u'type': 3,
    u'userVid': 20012900},
   u'reviewCount': 0,
   u'reviewId': u'20012900_6P0dnidcS',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 20012900,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6b63\u5982\u524d\u9762\u7684\u51b7\u6c34\u5b9e\u9a8c\uff0c\u4e0d\u7ba1\u6301\u7eed\u65f6\u95f4\u591a\u957f\uff0c\u6574\u4f53\u75bc\u75db\u5206\u6570\u53ea\u4f1a\u53cd\u6620\u5cf0\u7ec8\u5b9a\u5f8b',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 13,
    u'content': u'\u7a81\u7136\u60f3\u8d77\u6765\uff0c\u4ee5\u524d\u8ddf\u540c\u5b66\u8fd8\u6709\u540c\u4e8b\u90fd\u4e00\u8d77\u5410\u69fd\u8fc7\u7684\u4e8b\uff0c\u670d\u52a1\u4e0d\u592a\u597d\u7684\u65c5\u884c\u793e\uff0c\u884c\u7a0b\u524d\u51e0\u5929\u7684\u9910\u996e\u90fd\u5dee\u5f3a\u4eba\u610f\uff0c\u4f46\u662f\u6700\u540e\u4e00\u987f\u9910\u603b\u662f\u8d28\u91cf\u597d\u5f88\u591a\uff0c\u60f3\u6765\u4e5f\u662f\u8fd9\u4e2a\u9053\u7406\u554a\u3002\n',
    u'createTime': 1494052202,
    u'range': u'17549-17582',
    u'reviewId': u'20012900_6QfCREglX',
    u'type': 1,
    u'userVid': 20012900}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1e0KfqrAYxcKGCSzxh24yz00qQz3LBVaL8otlLmqWb56H81RHloYJC2c143bv5fQPyMxSeBj4r08/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u9a6c\u51e1\u9f99',
     u'userVid': 14435010,
     u'vDesc': u'\u521b\u53d8\u8005'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLBtYDeRiaaYia6Aez5wQVEQS41jKhWqxqIO1aJYw9lt2WZjqBJv4Ft55XgymTkaLdDlorpTibmM8k0MA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u9759\u99a8\u9601CoCo',
     u'userVid': 2626899,
     u'vDesc': u' \u597d\u6c14\u8d28\u8981\u6bd4\u9ad8\u989c\u503c\u7ecf\u4e45\u8010\u7528\uff0c\u5e76\u4e14\u66f4\u52a0\u8d70\u5fc3'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1RmB1ZiaxJc1NOK8jLhfLX2TCAfC0rSib97TUOOiamQmNjEYeNejJccMCMD77tptxPib9qC9LBmlv9hp/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u7b11\u770b\u98ce\u4e91\uff08\u5b59\u8fdc\u5fe0\uff09',
     u'userVid': 37411103,
     u'vDesc': u'\u4e0d\u7ecf\u4e00\u756a\u5bd2\u5f7b\u9aa8\uff0c\u600e\u5f97\u6885\u82b1\u6251\u9f3b\u9999\uff1f'}],
   u'location': u'\u4e0a\u6d77 \u95f5\u884c',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuNusACCxfxZrxuic4dJyR0ukXbBtBOObXK3EjoeSBLAiaFWlib0RQhoUJYv5bFToLtS7a15X0CQdz9w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5434\u4e91\u9e4f',
     u'userVid': 18401019},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'56',
    u'createTime': 1494524699,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 82,
    u'readingTime': 30077,
    u'reviewId': u'18401019_6OlrXrERk',
    u'startReadingTime': 1487339782,
    u'type': 3,
    u'userVid': 18401019},
   u'reviewCount': 0,
   u'reviewId': u'18401019_6OlrXrERk',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 18401019,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6709\u81ea\u6211\u610f\u8bc6\u7684\u9ed1\u7329\u7329',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 6,
    u'content': u'\u6211\u4eec\u65e0\u6cd5\u8bc1\u660e\u52a8\u7269\u6ca1\u6709\u610f\u8bc6\uff0c\u6bd4\u8f83\u7b80\u5355\u7684\u505a\u6cd5\u662f\u6682\u4e14\u8ba4\u4e3a\u52a8\u7269\u50cf\u4eba\u4e00\u6837\u4e5f\u6709\u610f\u8bc6\u3002\n',
    u'createTime': 1491452631,
    u'range': u'22760-22799',
    u'reviewId': u'18401019_6PvRjFBrF',
    u'type': 1,
    u'userVid': 18401019}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLBtYDeRiaaYia6Aez5wQVEQS41jKhWqxqIO1aJYw9lt2WZjqBJv4Ft55XgymTkaLdDlorpTibmM8k0MA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u9759\u99a8\u9601CoCo',
     u'userVid': 2626899,
     u'vDesc': u' \u597d\u6c14\u8d28\u8981\u6bd4\u9ad8\u989c\u503c\u7ecf\u4e45\u8010\u7528\uff0c\u5e76\u4e14\u66f4\u52a0\u8d70\u5fc3'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/bnFC73eKX1cUMvOlYjSZv7wuA6gHArxzj6zdLM7SGS49qxeicMgEtiaAopO6FQtKibzoibiblsYUX3BtB4WJLuNBae16Io8JUJqtA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u90ed\u592a\u5e73',
     u'userVid': 13135513},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TFHfRWUI4icWvHb6bfLWu28DxwZiaObtrq1Sz4CZVDyG1Wejs8cNgEibanriaGpP78cwicoQiakqO3KfjC/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Thomas Chen2',
     u'userVid': 15126554,
     u'vDesc': u'\u9ed8\u66f0TC'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM6sScmiaWCFdFKPvY4icTDU1fawsXtPmic65pBxTD0TgMTlT8WFI3BVIrTvBYbdpKzCFCrmaicQbkpNib6MT93KwfBgFXftyG75Pe2E/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u747e\u58a8',
     u'userVid': 34215425},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u6cb3\u5357 \u65b0\u4e61',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/bnFC73eKX1cUMvOlYjSZv7wuA6gHArxzj6zdLM7SGS49qxeicMgEtiaAopO6FQtKibzoibiblsYUX3BtB4WJLuNBae16Io8JUJqtA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u90ed\u592a\u5e73',
     u'userVid': 13135513},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'62',
    u'createTime': 1494522642,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 44,
    u'readingTime': 43309,
    u'reviewId': u'13135513_6PZ05oQqD',
    u'startReadingTime': 1493107872,
    u'type': 3,
    u'userVid': 13135513},
   u'reviewCount': 0,
   u'reviewId': u'13135513_6PZ05oQqD',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 13135513,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u800c\u5982\u679c\u89c9\u5f97\u4eba\u7c7b\u5e76\u4e0d\u7279\u6b8a\uff0c\u90a3\u4e48\u7b49\u5230\u8ba1\u7b97\u673a\u8d85\u8d8a\u4e86\u4eba\u7c7b\u7684\u667a\u80fd\u548c\u529b\u91cf\uff0c\u53c8\u6709\u4ec0\u4e48\u7406\u7531\u8bf4\u4eba\u7c7b\u751f\u547d\u6709\u7279\u6b8a\u4ef7\u503c\u5462\uff1f\u7a76\u7adf\uff0c\u4eba\u7c7b\u6700\u65e9\u662f\u600e\u4e48\u53d8\u5f97\u5982\u6b64\u806a\u660e\u3001\u5f3a\u5927\u7684\uff1f\u800c\u975e\u4eba\u7c7b\u7684\u5b9e\u4f53\u53c8\u6709\u591a\u5927\u53ef\u80fd\u5c06\u4f1a\u8d85\u8fc7\u6211\u4eec\uff1f',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 5,
    u'content': u'\u8d85\u4eba\u7c7b\u529b\u91cf\u51fa\u73b0\uff0c\u4eba\u7c7b\u8fd8\u600e\u4e48\u80fd\u552f\u6211\u72ec\u5c0a\uff01\u5b83\u4eec\u53c8\u600e\u4e48\u4e0d\u4f1a\u50cf\u6211\u4eec\u4e00\u6837\uff0c\u5bf9\u5f85\u4f4e\u667a\u80fd\u751f\u7269\u90a3\u4e48\u5730\u6b8b\u5fcd\uff01\n',
    u'createTime': 1493718827,
    u'range': u'39240-39025',
    u'reviewId': u'13135513_6Q9KYg18M',
    u'type': 1,
    u'userVid': 13135513}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u9655\u897f \u897f\u5b89',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EGRfOAVX9QdBZV5ibU3G2NwKuEpYianpXc6xu2uP2X3x3p8ib4hRNqkq3kNzFkj5E8FQvTm0IicqjbH2Q/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u592a\u9633\u96e8',
     u'userVid': 5112237},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 18,
    u'content': u'100',
    u'createTime': 1494521909,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 17,
    u'readingTime': 84570,
    u'reviewId': u'5112237_6OMVtY9DA',
    u'startReadingTime': 1488900437,
    u'type': 3,
    u'userVid': 5112237},
   u'reviewCount': 0,
   u'reviewId': u'5112237_6OMVtY9DA',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 5112237,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u8fd9\u672c\u300a\u672a\u6765\u7b80\u53f2\u300b\u88ab\u79f0\u4e3a\u300a\u4eba\u7c7b\u7b80\u53f2\u300b\u7684\u7eed\u96c6\uff0c\u4f46\u662f\u4e24\u4e66\u5199\u4f5c\u903b\u8f91\u5374\u5927\u4e0d\u76f8\u540c\uff1a\n\u300a\u4eba\u7c7b\u7b80\u53f2\u300b\u4ee5\u5386\u53f2\u987a\u5e8f\u4e3a\u4e3b\u7ebf\uff0c\u662f\u4e00\u672c\u5b9e\u5b9e\u5728\u5728\u7684\u5386\u53f2\u4e66\uff1b\n\u300a\u672a\u6765\u7b80\u53f2\u300b\u5374\u4ece\u591a\u4e2a\u89d2\u5ea6\u7684\u6839\u6e90\u51fa\u53d1\u8fdb\u884c\u8bba\u8ff0\uff0c\u8bc1\u660e\u8fd9\u4e9b\u89c2\u5ff5/\u6982\u5ff5\u4ea7\u751f\u539f\u56e0\uff0c\u5e76\u8fdb\u4e00\u6b65\u8bba\u8ff0\u5176\u672a\u6765\u53d1\u5c55\u8d70\u5411\uff0c\u662f\u4e00\u672c\u5730\u5730\u9053\u9053\u7684\u8bae\u8bba\u6587\u8bba\u8457\u3002\n\u8fd9\u672c\u8bba\u8457\u4e2d\u63d0\u51fa\u4e86\u5f88\u591a\u65b0\u9896\u800c\u7b26\u5408\u903b\u8f91\u7684\u89c2\u70b9\uff0c\u5217\u4e3e\u5176\u4e2d2\u4e2a\u5982\u4e0b\uff1a\n\u25cf \u751f\u7269\u4e5f\u662f\u7b97\u6cd5\uff0c\u662f\u5316\u5b66\u53cd\u5e94\u4f7f\u4eba\u4eec\u4ea7\u751f\u4e86\u611f\u53d7\uff0c\u60c5\u611f\u7b49\u3002\u5e76\u4e14\u5ef6\u4f38\u4e86\u7b97\u6cd5\u7684\u5b9a\u4e49\u8303\u56f4\u548c\u672a\u6765\u53d1\u5c55\u8d8b\u52bf\u3002\n\u25cf \u5b97\u6559\u662f\u519c\u8015\u6587\u660e\u7684\u4ea7\u7269\uff0c\u73b0\u4ee3\u79d1\u5b66\u4f7f\u4eba\u4eec\u4ece\u5fc3\u5e95\u91cc\u5426\u8ba4\u4e86\u795e\u7684\u5b58\u5728\u3002\u5e76\u4e14\u4f5c\u8005\u6269\u5c55\u4e86\u5b97\u6559\uff0c\u8ba4\u4e3a\u4eba\u6587\u4e3b\u4e49\uff0c\u8d44\u672c\u4e3b\u4e49\uff0c\u5171\u4ea7\u4e3b\u4e49\uff0c\u751a\u81f3\u5f53\u524d\u6b63\u5728\u6d41\u884c\u7684\u6570\u636e\u4e3b\u4e49\u90fd\u662f\u4e00\u79cd\u5b97\u6559\u7684\u6f14\u53d8\u5f62\u5f0f\u3002\n\u8fd9\u65e0\u7591\u662f\u4e00\u672c\u80fd\u5bf9\u4eba\u4eec\u4e16\u754c\u89c2\u5e26\u6765\u5de8\u5927\u51b2\u51fb\u7684\u4e66\uff0c\u5f3a\u70c8\u63a8\u8350\uff01',
    u'createTime': 1494422347,
    u'range': u'',
    u'reviewId': u'5112237_6Qm8TwpXD',
    u'star': 100,
    u'topicRanges': [u'0-0'],
    u'type': 4,
    u'userVid': 5112237,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypNkldGK3YWqQibpb3UJswuZyOdssZjWMAYtS5AKQvRCia7YDvWcu0Yn9wzanLThzmicILic0RdfmQCF7vYbAszDqEj8/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Vivi',
     u'userVid': 16315963},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLAw3oNmXcIkjxO9XSOjtb2v7gclyaoRbfw7uT5NpVib5chEkyiabnMzG7RVniaVib6U7TGIGsXdZhS7Mt7seuvE7ib802Dn0ZWcLcVs/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u5c0f\u6bdb',
     u'userVid': 5504581,
     u'vDesc': u'\u7231\u8fd0\u52a8\u7231\u8bfb\u4e66\uff0c\u559c\u6b22\u5b89\u9759\uff01\u7279\u522b\u559c\u6b22\u65c5\u6e38\u722c\u5c71'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1e0KfqrAYxcKGCSzxh24yz00qQz3LBVaL8otlLmqWb56H81RHloYJC2c143bv5fQPyMxSeBj4r08/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u9a6c\u51e1\u9f99',
     u'userVid': 14435010,
     u'vDesc': u'\u521b\u53d8\u8005'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLBtYDeRiaaYia6Aez5wQVEQS41jKhWqxqIO1aJYw9lt2WZjqBJv4Ft55XgymTkaLdDlorpTibmM8k0MA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u9759\u99a8\u9601CoCo',
     u'userVid': 2626899,
     u'vDesc': u' \u597d\u6c14\u8d28\u8981\u6bd4\u9ad8\u989c\u503c\u7ecf\u4e45\u8010\u7528\uff0c\u5e76\u4e14\u66f4\u52a0\u8d70\u5fc3'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u56db\u5ddd \u6210\u90fd',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TOLlNVTdUqU9tiaVvEub3Jo7smDBj6WcMR77icNNsr7I0U0pazyZaibwhuoEHlxWN9p97AAleNZ3riaE/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\U0001f3a9Mr.Chen',
     u'userVid': 4625183},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 18,
    u'content': u'100',
    u'createTime': 1494521553,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 151,
    u'readingTime': 58067,
    u'reviewId': u'4625183_6OtVvrL0s',
    u'startReadingTime': 1487821254,
    u'type': 3,
    u'userVid': 4625183},
   u'reviewCount': 0,
   u'reviewId': u'4625183_6OtVvrL0s',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 4625183,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u5f88\u5c11\u7684\u51e0\u672c\u80fd\u8ba9\u81ea\u5df1\u4e3b\u52a8\u4e14\u4ed4\u7ec6\u7684\u770b\u5b8c\u7684\u4e66\uff0c\u4e0d\u60f3\u9519\u8fc7\u8d6b\u62c9\u5229\u7684\u6bcf\u4e00\u4e2a\u89c2\u70b9\u6216\u8005\u542f\u793a\uff0c\u6240\u4ee5\u82b1\u7684\u65f6\u95f4\u6bd4\u8f83\u591a\u70b9\u3002\n\u300a\u672a\u6765\u7b80\u53f2\u300b\u627f\u63a5\u4e86\u300a\u4eba\u7c7b\u7b80\u53f2\u300b\u672b\u7ae0\u7684\u89c2\u70b9\uff0c\u5e76\u5728\u6b64\u57fa\u672c\u4e0a\u8fdb\u884c\u5ef6\u4f38\u62d3\u5c55\uff0c\u4ece\u793e\u4f1a/\u5b97\u6559/\u79d1\u6280\u7684\u53d1\u5c55\uff0c\u603b\u7ed3\u51fa\u667a\u4eba\u4e5f\u662f\u4e00\u79cd\u751f\u7269\u7b97\u6cd5\uff0c\u53ea\u662f\u4e07\u7269\u4e92\u8054\u7f51\u4e2d\u7684\u5c0f\u5c0f\u4e00\u90e8\u5206\u3002\u667a\u4eba\u4e3a\u4e86\u8ffd\u6c42\u6c38\u751f\uff0c\u5e78\u798f\uff0c\u8d85\u4eba\u7c7b\u5c06\u5bf9\u672a\u6765\u4e07\u7269\u4e92\u8054\u7f51\u8fdb\u884c\u53d1\u5c55\uff0c\u4f46\u5f53\u7b97\u6cd5\u53d1\u5c55\u5230\u6709\u4e86\u81ea\u5df1\u7684\u610f\u8bc6\u800c\u5224\u65ad\u667a\u4eba\u7684\u610f\u8bc6\u6beb\u65e0\u610f\u4e49\uff0c\u5219\u53ef\u80fd\u8ba9\u672a\u6765\u53d8\u7684\u4e0d\u53d7\u667a\u4eba\u610f\u8bc6\u6240\u63a7\uff0c\u53ef\u80fd\u751a\u81f3\u6dd8\u6c70\u667a\u4eba\u3002\n\u4eba\u7c7b\u572820\u4e16\u7eaa\u7684\u4f1f\u5927\u6210\u5c31\u2014\u2014\u514b\u670d\u9965\u8352\u3001\u761f\u75ab\u548c\u6218\u4e89\u2014\u2014\u90fd\u662f\u4e3a\u4e86\u8ba9\u6240\u6709\u4eba\u4eab\u6709\u5bcc\u8db3\u3001\u5065\u5eb7\u4e0e\u548c\u5e73\u3002\u81f3\u4e8e21\u4e16\u7eaa\u7684\u65b0\u8bae\u9898\uff1a\u83b7\u5f97\u6c38\u751f\u3001\u5e78\u798f\u5feb\u4e50\u3001\u5316\u8eab\u4e3a\u795e\uff0c\u4e5f\u540c\u6837\u5e0c\u671b\u4e3a\u5168\u4eba\u7c7b\u670d\u52a1\u3002\u7136\u800c\uff0c\u7531\u4e8e\u8fd9\u4e9b\u8ba1\u5212\u7684\u76ee\u7684\u5728\u4e8e\u8d85\u8d8a\u800c\u975e\u7ef4\u6301\u57fa\u672c\u8981\u6c42\uff0c\u6700\u540e\u5c31\u53ef\u80fd\u521b\u9020\u51fa\u65b0\u7684\u8d85\u4eba\u7c7b\u9636\u7ea7\uff0c\u780d\u65ad\u81ea\u7531\u4e3b\u4e49\u672c\u6e90\uff1b\u8d85\u4eba\u7c7b\u770b\u5f85\u4e00\u822c\u4eba\uff0c\u5c31\u4f1a\u50cf\u662f19\u4e16\u7eaa\u6b27\u6d32\u4eba\u770b\u5f85\u975e\u6d32\u4eba\u7684\u60c5\u51b5\u3002\n\u5c3d\u7ba1\u8d6b\u62c9\u5229\u5728\u4e66\u4e2d\u6700\u540e\u5bf9\u8bfb\u8005\u7ed9\u51fa\u4e86\u81ea\u5df1\u7684\u5efa\u8bae\uff0c\u4ee5\u53ca\u8bf4\u660e\u672a\u6765\u7b97\u6cd5\u5bf9\u6211\u4eec\u7684\u5f71\u54cd\u7684\u4e0d\u786e\u5b9a\u6027\uff0c\u4e0d\u8fc7\u5e86\u5e78\u7684\u662f\u6211\u4eec\u53ea\u662f\u5904\u4e8e\u201c\u7b97\u6cd5\u201d\u53d1\u5c55\u521d\u671f\uff0c\u6bd5\u7adf\u5728\u521d\u671f\u201c\u7b97\u6cd5\u201d\u7684\u8bbe\u8ba1\u90fd\u8fd8\u4ee5\u4eba\u6587\u4e3b\u4e49\u4e3a\u4e3b\uff0c\u53d1\u5c55\u5230\u4e2d\u671f\u6216\u8005\u540e\u671f\uff0c\u5c31\u4e0d\u5f97\u800c\u77e5\u4e86\u2026\u2026\n\uff0c\u4eba\u6587\u4e3b\u4e49\u8ba4\u4e3a\u201c\u4e0a\u5e1d\u662f\u4eba\u7c7b\u60f3\u8c61\u529b\u7684\u4ea7\u7269\u201d\u3002\u4f46\u73b0\u5728\u6570\u636e\u4e3b\u4e49\u4ee5\u5176\u4eba\u4e4b\u9053\u8fd8\u6cbb\u5176\u4eba\u4e4b\u8eab\uff0c\u8bf4\u9053\uff1a\u201c\u6ca1\u9519\uff0c\u4e0a\u5e1d\u662f\u4eba\u7c7b\u60f3\u8c61\u529b\u7684\u4ea7\u7269\uff0c\u4f46\u4eba\u7c7b\u7684\u60f3\u8c61\u529b\u4e00\u6837\u53ea\u662f\u751f\u5316\u7b97\u6cd5\u7684\u4ea7\u7269\u3002\u201d\u572818\u4e16\u7eaa\uff0c\u4eba\u6587\u4e3b\u4e49\u4ece\u4ee5\u795e\u4e3a\u4e2d\u5fc3\u7684\u4e16\u754c\u89c2\u8d70\u5411\u4ee5\u4eba\u4e3a\u4e2d\u5fc3\uff0c\u628a\u795e\u63a8\u5230\u4e86\u4e00\u65c1\u3002\u800c\u572821\u4e16\u7eaa\uff0c\u6570\u636e\u4e3b\u4e49\u5219\u53ef\u80fd\u4ece\u4ee5\u4eba\u4e3a\u4e2d\u5fc3\u8d70\u5411\u4ee5\u6570\u636e\u4e3a\u4e2d\u5fc3\uff0c\u628a\u4eba\u63a8\u5230\u4e00\u8fb9\u3002\n\u6570\u636e\u4e3b\u4e49\u5c31\u662f\u65b0\u7684\u5b97\u6559\uff0c\u800c\u4e14\u73b0\u5728\u5df2\u7ecf\u6709\u5f88\u591a\u4fe1\u5f92\u2026\u2026',
    u'createTime': 1494425467,
    u'htmlContent': u'<p>\u5f88\u5c11\u7684\u51e0\u672c\u80fd\u8ba9\u81ea\u5df1\u4e3b\u52a8\u4e14\u4ed4\u7ec6\u7684\u770b\u5b8c\u7684\u4e66\uff0c\u4e0d\u60f3\u9519\u8fc7\u8d6b\u62c9\u5229\u7684\u6bcf\u4e00\u4e2a\u89c2\u70b9\u6216\u8005\u542f\u793a\uff0c\u6240\u4ee5\u82b1\u7684\u65f6\u95f4\u6bd4\u8f83\u591a\u70b9\u3002</p><p>\u300a\u672a\u6765\u7b80\u53f2\u300b\u627f\u63a5\u4e86\u300a\u4eba\u7c7b\u7b80\u53f2\u300b\u672b\u7ae0\u7684\u89c2\u70b9\uff0c\u5e76\u5728\u6b64\u57fa\u672c\u4e0a\u8fdb\u884c\u5ef6\u4f38\u62d3\u5c55\uff0c\u4ece\u793e\u4f1a/\u5b97\u6559/\u79d1\u6280\u7684\u53d1\u5c55\uff0c\u603b\u7ed3\u51fa\u667a\u4eba\u4e5f\u662f\u4e00\u79cd\u751f\u7269\u7b97\u6cd5\uff0c\u53ea\u662f\u4e07\u7269\u4e92\u8054\u7f51\u4e2d\u7684\u5c0f\u5c0f\u4e00\u90e8\u5206\u3002\u667a\u4eba\u4e3a\u4e86\u8ffd\u6c42\u6c38\u751f\uff0c\u5e78\u798f\uff0c\u8d85\u4eba\u7c7b\u5c06\u5bf9\u672a\u6765\u4e07\u7269\u4e92\u8054\u7f51\u8fdb\u884c\u53d1\u5c55\uff0c\u4f46\u5f53\u7b97\u6cd5\u53d1\u5c55\u5230\u6709\u4e86\u81ea\u5df1\u7684\u610f\u8bc6\u800c\u5224\u65ad\u667a\u4eba\u7684\u610f\u8bc6\u6beb\u65e0\u610f\u4e49\uff0c\u5219\u53ef\u80fd\u8ba9\u672a\u6765\u53d8\u7684\u4e0d\u53d7\u667a\u4eba\u610f\u8bc6\u6240\u63a7\uff0c\u53ef\u80fd\u751a\u81f3\u6dd8\u6c70\u667a\u4eba\u3002</p><blockquote>\u4eba\u7c7b\u572820\u4e16\u7eaa\u7684\u4f1f\u5927\u6210\u5c31\u2014\u2014\u514b\u670d\u9965\u8352\u3001\u761f\u75ab\u548c\u6218\u4e89\u2014\u2014\u90fd\u662f\u4e3a\u4e86\u8ba9\u6240\u6709\u4eba\u4eab\u6709\u5bcc\u8db3\u3001\u5065\u5eb7\u4e0e\u548c\u5e73\u3002\u81f3\u4e8e21\u4e16\u7eaa\u7684\u65b0\u8bae\u9898\uff1a\u83b7\u5f97\u6c38\u751f\u3001\u5e78\u798f\u5feb\u4e50\u3001\u5316\u8eab\u4e3a\u795e\uff0c\u4e5f\u540c\u6837\u5e0c\u671b\u4e3a\u5168\u4eba\u7c7b\u670d\u52a1\u3002\u7136\u800c\uff0c\u7531\u4e8e\u8fd9\u4e9b\u8ba1\u5212\u7684\u76ee\u7684\u5728\u4e8e\u8d85\u8d8a\u800c\u975e\u7ef4\u6301\u57fa\u672c\u8981\u6c42\uff0c\u6700\u540e\u5c31\u53ef\u80fd\u521b\u9020\u51fa\u65b0\u7684\u8d85\u4eba\u7c7b\u9636\u7ea7\uff0c\u780d\u65ad\u81ea\u7531\u4e3b\u4e49\u672c\u6e90\uff1b\u8d85\u4eba\u7c7b\u770b\u5f85\u4e00\u822c\u4eba\uff0c\u5c31\u4f1a\u50cf\u662f19\u4e16\u7eaa\u6b27\u6d32\u4eba\u770b\u5f85\u975e\u6d32\u4eba\u7684\u60c5\u51b5\u3002</blockquote><p>\u5c3d\u7ba1\u8d6b\u62c9\u5229\u5728\u4e66\u4e2d\u6700\u540e\u5bf9\u8bfb\u8005\u7ed9\u51fa\u4e86\u81ea\u5df1\u7684\u5efa\u8bae\uff0c\u4ee5\u53ca\u8bf4\u660e\u672a\u6765\u7b97\u6cd5\u5bf9\u6211\u4eec\u7684\u5f71\u54cd\u7684\u4e0d\u786e\u5b9a\u6027\uff0c\u4e0d\u8fc7\u5e86\u5e78\u7684\u662f\u6211\u4eec\u53ea\u662f\u5904\u4e8e\u201c\u7b97\u6cd5\u201d\u53d1\u5c55\u521d\u671f\uff0c\u6bd5\u7adf\u5728\u521d\u671f\u201c\u7b97\u6cd5\u201d\u7684\u8bbe\u8ba1\u90fd\u8fd8\u4ee5\u4eba\u6587\u4e3b\u4e49\u4e3a\u4e3b\uff0c\u53d1\u5c55\u5230\u4e2d\u671f\u6216\u8005\u540e\u671f\uff0c\u5c31\u4e0d\u5f97\u800c\u77e5\u4e86\u2026\u2026</p><blockquote>\uff0c\u4eba\u6587\u4e3b\u4e49\u8ba4\u4e3a\u201c\u4e0a\u5e1d\u662f\u4eba\u7c7b\u60f3\u8c61\u529b\u7684\u4ea7\u7269\u201d\u3002\u4f46\u73b0\u5728\u6570\u636e\u4e3b\u4e49\u4ee5\u5176\u4eba\u4e4b\u9053\u8fd8\u6cbb\u5176\u4eba\u4e4b\u8eab\uff0c\u8bf4\u9053\uff1a\u201c\u6ca1\u9519\uff0c\u4e0a\u5e1d\u662f\u4eba\u7c7b\u60f3\u8c61\u529b\u7684\u4ea7\u7269\uff0c\u4f46\u4eba\u7c7b\u7684\u60f3\u8c61\u529b\u4e00\u6837\u53ea\u662f\u751f\u5316\u7b97\u6cd5\u7684\u4ea7\u7269\u3002\u201d\u572818\u4e16\u7eaa\uff0c\u4eba\u6587\u4e3b\u4e49\u4ece\u4ee5\u795e\u4e3a\u4e2d\u5fc3\u7684\u4e16\u754c\u89c2\u8d70\u5411\u4ee5\u4eba\u4e3a\u4e2d\u5fc3\uff0c\u628a\u795e\u63a8\u5230\u4e86\u4e00\u65c1\u3002\u800c\u572821\u4e16\u7eaa\uff0c\u6570\u636e\u4e3b\u4e49\u5219\u53ef\u80fd\u4ece\u4ee5\u4eba\u4e3a\u4e2d\u5fc3\u8d70\u5411\u4ee5\u6570\u636e\u4e3a\u4e2d\u5fc3\uff0c\u628a\u4eba\u63a8\u5230\u4e00\u8fb9\u3002</blockquote><p><span style="color: rgb(53, 60, 70); font-family: &quot;SF UI Text&quot;, &quot;PingFang SC&quot;, &quot;Lucida Grande&quot;, STheiti; font-size: 17px;">\u6570\u636e\u4e3b\u4e49\u5c31\u662f\u65b0\u7684\u5b97\u6559\uff0c\u800c\u4e14\u73b0\u5728\u5df2\u7ecf\u6709\u5f88\u591a\u4fe1\u5f92\u2026\u2026</span><br></p>',
    u'range': u'',
    u'reviewId': u'4625183_6QmciFZHV',
    u'star': 100,
    u'topicRanges': [u'0-0'],
    u'type': 4,
    u'userVid': 4625183,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5e7f\u4e1c \u6c5f\u95e8',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/98zCQI4oXu18ZXYeRHoXZBXumxu4nN8dFaicrINksVR4Xu6AOuftpY5doM5zxZoyhNtXgQxyJJOMYRxcicqpuME0icRIsoQBHId/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Newsreader\uff08\u5e73\u5b89\u963f\u6e05\uff09',
     u'userVid': 9260380,
     u'vDesc': u'\u5fc3\u7406\u5b66\u3001\u7406\u8bba\u7269\u7406\u5b66\u3001\u91cf\u5b50\u529b\u5b66\u3001\u54f2\u5b66\u2026\u2026'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 16,
    u'content': u'100',
    u'createTime': 1494520023,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 87,
    u'readingTime': 63335,
    u'reviewId': u'9260380_6PuA8WxEV',
    u'startReadingTime': 1491380098,
    u'type': 3,
    u'userVid': 9260380},
   u'reviewCount': 0,
   u'reviewId': u'9260380_6PuA8WxEV',
   u'signature': u'\u4f01\u9e45\uff1a243265747\uff5e',
   u'totalReadingTime': 0,
   u'vid': 9260380,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u8759\u8760\u6d3b\u5728\u4e00\u4e2a\u56de\u58f0\u7684\u4e16\u754c\u91cc\u3002\u5c31\u50cf\u4eba\u7c7b\u7684\u4e16\u754c\u8ba4\u4e3a\u6bcf\u4e2a\u7269\u54c1\u90fd\u6709\u4ee3\u8868\u6027\u7684\u5916\u5f62\u53ca\u989c\u8272\uff0c\u8759\u8760\u7684\u4e16\u754c\u5219\u8ba4\u4e3a\u6bcf\u4e2a\u7269\u54c1\u90fd\u6709\u4e13\u5c5e\u7684\u56de\u58f0\u6a21\u5f0f\u3002\u4ec5\u4ece\u67d0\u53ea\u98de\u86fe\u7ea4\u7ea4\u7fc5\u8180\u53cd\u5c04\u7684\u56de\u58f0\uff0c\u8759\u8760\u5c31\u80fd\u5224\u65ad\u8fd9\u53ea\u98de\u86fe\u7a76\u7adf\u662f\u7f8e\u98df\u8fd8\u662f\u6bd2\u836f\u3002\u81f3\u4e8e\u67d0\u4e9b\u53ef\u98df\u7528\u7684\u86fe\u7c7b\uff0c\u5219\u8fdb\u5316\u51fa\u7c7b\u4f3c\u6bd2\u86fe\u7684\u56de\u58f0\u6a21\u5f0f\u6765\u4fdd\u62a4\u81ea\u5df1\u3002\u8fd8\u6709\u4e00\u4e9b\u98de\u86fe\u8fdb\u5316\u51fa\u7684\u80fd\u529b\u66f4\u4e86\u4e0d\u8d77\uff0c\u80fd\u591f\u76f4\u63a5\u8ba9\u8759\u8760\u96f7\u8fbe\u7684\u58f0\u6ce2\u8f6c\u5411\uff0c\u4e8e\u662f\u8fd9\u4e9b\u98de\u86fe\u80fd\u591f\u50cf\u9690\u5f62\u8f70\u70b8\u673a\u4e00\u822c\u98de\u6765\u98de\u53bb\uff0c\u800c\u8759\u8760\u5374\u6d51\u7136\u672a\u89c9\u3002\u56de\u58f0\u5b9a\u4f4d\u4e16\u754c\u590d\u6742\u548c\u6fc0\u70c8\u7684\u7a0b\u5ea6\uff0c\u5e76\u4e0d\u4e9a\u4e8e\u6211\u4eec\u6240\u719f\u6089\u7684\u89c6\u89c9\u53ca\u542c\u89c9\u4e16\u754c\uff0c\u4f46\u6211\u4eec\u5c31\u662f\u5168\u7136\u672a\u77e5\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 15,
    u'content': u'\u5728\u6211\u4eec\u8ba4\u77e5\u8303\u56f4\u4ee5\u5916\u7684\u989d\u5916\u7ef4\u5ea6\uff0c\u66f4\u9ad8\u7ef4\u5ea6\u7684\u751f\u547d\u4f53\u53ef\u4ee5\u89c2\u5bdf\u6211\u4eec\uff0c\u4f46\u6211\u4eec\u4e5f\u65e0\u6cd5\u770b\u89c1\u4ed6\u4eec\u3002\u8fd9\u4e2a\u8111\u6d1e\u53ef\u4ee5\u6709\u4e0d\uff1f',
    u'createTime': 1492935275,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'5401-5632',
    u'reviewId': u'9260380_6PVXGLV7v',
    u'type': 1,
    u'userVid': 9260380,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLBtYDeRiaaYia6Aez5wQVEQS41jKhWqxqIO1aJYw9lt2WZjqBJv4Ft55XgymTkaLdDlorpTibmM8k0MA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u9759\u99a8\u9601CoCo',
     u'userVid': 2626899,
     u'vDesc': u' \u597d\u6c14\u8d28\u8981\u6bd4\u9ad8\u989c\u503c\u7ecf\u4e45\u8010\u7528\uff0c\u5e76\u4e14\u66f4\u52a0\u8d70\u5fc3'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u6e56\u5317 \u6b66\u6c49',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM7S92TSlicNeyGibqfQ8ZwNPmZzBUFuTjUeLVb5BbkF06EWcYovLmoEKrBY2fOnhWWcxw9Bgaea37Bg/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u963f\u73ae',
     u'userVid': 35208601},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'75',
    u'createTime': 1494519056,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 39,
    u'readingTime': 42025,
    u'reviewId': u'35208601_6OKuLzeIH',
    u'startReadingTime': 1488762361,
    u'type': 3,
    u'userVid': 35208601},
   u'reviewCount': 0,
   u'reviewId': u'35208601_6OKuLzeIH',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 35208601,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\uf100\u5b97\u6559\u6fc0\u8fdb\u4e3b\u4e49\u8005\u60f3\u4e0a\u5929\u5802\uff0c\u662f\u4e3a\u4e86\u5feb\u4e50\uff1b\u81ea\u7531\u4e3b\u4e49\u8005\u60f3\u589e\u52a0\u4eba\u7c7b\u81ea\u7531\uff0c\u662f\u56e0\u4e3a\u8fd9\u6837\u80fd\u5f97\u5230\u6700\u5927\u7684\u5feb\u4e50\uff1b\u5fb7\u56fd\u6c11\u65cf\u4e3b\u4e49\u8005\u4e5f\u8ba4\u4e3a\uff0c\u5982\u679c\u8ba9\u67cf\u6797\u63a7\u5236\u6574\u4e2a\u4e16\u754c\uff0c\u6bcf\u4e2a\u4eba\u90fd\u4f1a\u66f4\u5feb\u4e50\u3002\u54c8\u91cc\u65af\u8ba4\u4e3a\uff0c\u5b97\u6559\u6fc0\u8fdb\u4e3b\u4e49\u8005\u3001\u81ea\u7531\u4e3b\u4e49\u8005\u548c\u6c11\u65cf\u4e3b\u7136\u800c\uff0c\u5c31\u7b97\u54c8\u91cc\u65af\u8bf4\u5f97\u6ca1\u9519\uff0c\u5373\u6240\u6709\u4eba\u90fd\u91cd\u89c6\u5feb\u4e50\uff0c\u5b9e\u9645\u4e0a\u4e5f\u5f88\u96be\u7528\u8fd9\u79cd\u89c2\u70b9\u6765\u5e73\u606f\u4f26\u7406\u4e89\u8bae\uff0c\u7279\u522b\u662f\u201c\u5feb\u4e50\u201d\u6839\u672c\u6ca1\u6709\u79d1\u5b66\u4e0a\u7684\u5b9a\u4e49\u6216\u6d4b\u91cf\u65b9\u6cd5\u3002\u8ba9\u6211\u4eec\u518d\u6b21\u4ee5\u4e09\u5ce1\u5927\u575d\u4e3a\u4f8b\u3002\u5c31\u7b97\u6211\u4eec\u540c\u610f\uff0c\u8fd9\u9879\u8ba1\u5212\u7684\u7ec8\u6781\u76ee\u6807\u662f\u8ba9\u4e16\u754c\u6210\u4e3a',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 9,
    u'content': u'\u8fd9\u4e00\u70b9\u8ba9\u6211\u7a81\u7136\u60f3\u8d77\u6765\u4e86\uff0c\u65e2\u7136\u4eab\u53d7\u98ce\u9669\u5e26\u6765\u7684\u5feb\u4e50\u559c\u60a6\uff0c\u4e5f\u8981\u52c7\u6562\u62e5\u62b1\u98ce\u9669\u5e26\u6765\u7684\u75db\u82e6\uff0c\u4e00\u4f4d\u7684\u8ffd\u6c42\u5feb\u4e50\uff0c\u80af\u5b9a\u5e26\u6765\u66f4\u5927\u7684\u75db\u82e6\uff0c\u7f8e\u56fd\u7684\u6b21\u8d37\u5371\u673a\u5c31\u662f\u5f88\u597d\u7684\u6559\u8bad',
    u'createTime': 1493636075,
    u'isPrivate': 0,
    u'range': u'15971',
    u'reviewId': u'35208601_6Q8iDXRKs',
    u'type': 1,
    u'userVid': 35208601,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u6d59\u6c5f \u821f\u5c71',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERyRLVTCOzXrZpskjKl0TKA7YSuxia63m7ekGukvqQLfClHvwEaF989WLvvibBo44xnHITicQewZEhw5/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6478\u4f60\u5934',
     u'userVid': 3116160},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'69',
    u'createTime': 1494518016,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 73,
    u'readingTime': 23815,
    u'reviewId': u'3116160_6POPRaX4b',
    u'startReadingTime': 1492530498,
    u'type': 3,
    u'userVid': 3116160},
   u'reviewCount': 0,
   u'reviewId': u'3116160_6POPRaX4b',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 3116160,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u5982\u679c\u6709\u4eba\u63d0\u51fa\u5f02\u8bae\u8bf4\u201c\u5b66\u4f4d\u8bc1\u4e66\u53ea\u662f\u4e00\u5f20\u7eb8\u201d\uff0c\u800c\u4e14\u8ba4\u771f\u5730\u53ea\u628a\u8bc1\u4e66\u5f53\u6210\u7eb8\uff0c\u90a3\u4e48\u4ed6\u7684\u65e5\u5b50\u80af\u5b9a\u4e0d\u4f1a\u597d\u8fc7\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 8,
    u'content': u'\u8d27\u5e01\u548c\u8bc1\u4e66\u771f\u662f\u4e24\u4e2a\u6709\u610f\u601d\u7684\u4f8b\u5b50\u3002\u865a\u62df\u7684\u4fe1\u4ef0\u5efa\u7acb\u5728\u8ba9\u4eba\u987a\u4ece\u7684\u73b0\u5b9e\u4e0a\u3002\u89c4\u5219\u6c38\u8fdc\u53ea\u662f\u638c\u63e1\u5728\u5c11\u6570\u4eba\u624b\u4e2d\uff0c\u503c\u5f97\u80af\u5b9a\u7684\u662f\u4ed6\u4eec\u5f53\u7136\u4e0d\u4f1a\u53cd\u5bf9\u76ee\u524d\u7684\u8fd9\u4e9b\u4fc3\u4f7f\u4ed6\u4eec\u62e5\u6709\u6743\u5229\u7684\u89c4\u5219\u3002\u5927\u5bb6\u90fd\u8bf4\u623f\u5b50\u503c\u94b1\uff0c\u4f60\u8bf4\u623f\u5b50\u5c31\u662f\u51e0\u5757\u7816\uff0c\u53ea\u503c\u6750\u6599\u548c\u5efa\u7b51\u5de5\u7684\u52b3\u52a1\u8d39\uff0c\u90a3\u4f60\u7684\u65e5\u5b50\u4e5f\u4e0d\u597d\u8fc7\u3002',
    u'createTime': 1493374078,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'14158-14205',
    u'reviewId': u'3116160_6Q3GF4Q8a',
    u'type': 1,
    u'userVid': 3116160,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u6c5f\u82cf \u5357\u4eac',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EHqnB3naymFJycHl334WVB3LvLbL4M9X4ERpqbtcIERv6iavpbWIBaE0TAKvwPs0sDWgyFNG7ZCpgXyIsITtDgF6/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u7a0b\u7a0b',
     u'userVid': 5015457},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 9,
    u'content': u'46',
    u'createTime': 1494517147,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 48,
    u'readingTime': 33546,
    u'reviewId': u'5015457_6PN0rTmNj',
    u'startReadingTime': 1492426602,
    u'type': 3,
    u'userVid': 5015457},
   u'reviewCount': 0,
   u'reviewId': u'5015457_6PN0rTmNj',
   u'signature': u'\u4ee5\u4e66\u4e3a\u9a6c\uff0c\u4e0d\u8d1f\u65af\u5e74\u3002',
   u'totalReadingTime': 0,
   u'vid': 5015457,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u4eba\u7c7b\u53ea\u8981\u4e00\u6709\u91cd\u5927\u7a81\u7834\uff0c\u5c31\u4e0d\u53ef\u80fd\u53ea\u7528\u4e8e\u6cbb\u7597\u800c\u4e0d\u7528\u4e8e\u8fdb\u5316\u5347\u7ea7\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u5c31\u50cf\u70df\u82b1\uff0c\u6211\u4eec\u7684\u8001\u7956\u5b97\u53d1\u660e\u53ea\u662f\u4e3a\u4e86\u707f\u70c2\u7684\u70df\u82b1\uff0c\u5916\u56fd\u4eba\u5374\u7528\u5b83\u8fdb\u884c\u6b8b\u9177\u7684\u6740\u622e\u3002\u603b\u6709\u4e9b\u4e1c\u897f\u4e00\u65e6\u53d1\u660e\u51fa\u6765\u5c31\u4e0d\u53d7\u63a7\u5236\u4e86\uff0c\u56e0\u4e3a\u603b\u6709\u4e00\u4e9b\u5c45\u5fc3\u53f5\u6d4b\u7684\u4eba\u60f3\u8981\u901a\u8fc7\u8fd9\u4e9b\u53d1\u660e\u6ee1\u8db3\u4ed6\u4e2a\u4eba\u7684\u79c1\u6b32\u3002\n',
    u'createTime': 1492650642,
    u'range': u'62084-62113',
    u'reviewId': u'5015457_6PQWZZdXk',
    u'type': 1,
    u'userVid': 5015457}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TH9HFW6NVQWqT9dlAJia4oandKfzfibDv7qIT4XraNJUfFEicGZFKkjuxt7c2K7Qpu5AXZPEhFLfMEq/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u65fa\u624e',
     u'userVid': 14935271},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 9,
    u'content': u'45',
    u'createTime': 1494516295,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 2,
    u'readingTime': 12364,
    u'reviewId': u'14935271_6P5bQFEQ3',
    u'startReadingTime': 1489937835,
    u'type': 3,
    u'userVid': 14935271},
   u'reviewCount': 0,
   u'reviewId': u'14935271_6P5bQFEQ3',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 14935271,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u4eba\u7c7b\u6709\u65f6\u5019\u75f4\u8ff7\u4e8e\u67d0\u4e9b\u4e1c\u897f\uff0c\u6bd4\u5982\u6b66\u5668\u3001\u6c7d\u8f66\u751a\u81f3\u5185\u8863\u88e4\uff0c\u4ece\u800c\u4ea7\u751f\u5f3a\u70c8\u7684\u60c5\u611f\u4f9d\u9644\uff0c\u751a\u81f3\u53d8\u6210\u604b\u7269\u7656',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 6,
    u'content': u'\u4eba\u7c7b\u5f88\u6267\u7740\uff0c\u4e0d\u8bba\u751f\u6d3b\u7269\u8d28\u9700\u6c42\u8fbe\u5230\uff0c\u4e0d\u8bba\u8eab\u4f53\u5065\u5eb7\uff0c\u4e0d\u8bba\u73af\u5883\u591a\u4e48\u6b8a\u80dc\uff0c\u6211\u4eec\u8fd8\u662f\u6ca1\u80fd\u653e\u4e0b\u6267\u7740\uff0c\u6ca1\u80fd\u5b89\u4f4f\u5fc3\u7075\uff0c\u6211\u4eec\u8fd8\u662f\u4f9d\u7136\u5954\u6ce2\u5728\u8fd9\u8ff7\u4e71\u7684\u4e16\u754c\u91cc\u3002',
    u'createTime': 1491059307,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'18151-18196',
    u'reviewId': u'14935271_6PoVZ9Nm9',
    u'type': 1,
    u'userVid': 14935271,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ER2bhuyzhicxgGjeY1I8etTCUUJ8pMgx4oawZH5cIEoicYOvibia7PprHicXXdnNuGsvPp36ib72OhMkLlu/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5146\u7fa4',
     u'userVid': 11818262},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 8,
    u'content': u'42',
    u'createTime': 1494515903,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 83,
    u'readingTime': 25456,
    u'reviewId': u'11818262_6Q0eWZKvW',
    u'startReadingTime': 1493178290,
    u'type': 3,
    u'userVid': 11818262},
   u'reviewCount': 0,
   u'reviewId': u'11818262_6Q0eWZKvW',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 11818262,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u6709\u4e9b\u4eba\u51ed\u501f\u7528\u529f\u5b66\u4e60\u3001\u52aa\u529b\u5de5\u4f5c\u6216\u8f9b\u82e6\u517b\u5bb6\u624d\u5f97\u5230\u7684\u5feb\u4e50\uff0c\u53e6\u4e00\u4e9b\u4eba\u5219\u53ea\u9700\u64cd\u7eb5\u5206\u5b50\u914d\u6bd4\u51fa\u6b63\u786e\u5242\u91cf\uff0c\u5c31\u80fd\u6781\u4e3a\u8f7b\u677e\u5730\u5f97\u5230\u5feb\u4e50\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u4e24\u79cd\u5feb\u4e50\u7684\u83b7\u5f97\u65b9\u5f0f\uff0c\u9020\u6210\u4e24\u79cd\u4e0d\u540c\u7684\u7ed3\u679c\u3002\u524d\u8005\u4fc3\u4f7f\u4eba\u4eec\u7ee7\u7eed\u52aa\u529b\uff0c\u901a\u8fc7\u52aa\u529b\u83b7\u53d6\u6210\u529f\uff0c\u4e0d\u65ad\u4f53\u4f1a\u6210\u529f\u7684\u559c\u60a6\u6240\u5e26\u6765\u7684\u5feb\u4e50\u3002\u540e\u8005\u9760\u751f\u5316\u523a\u6fc0\u83b7\u53d6\u5feb\u611f\uff0c\u4f9d\u8d56\u4e00\u6b21\u6bd4\u4e00\u6b21\u9012\u589e\u7684\u523a\u6fc0\u624d\u80fd\u7ef4\u6301\u5927\u8111\u7684\u5174\u594b\u548c\u6109\u60a6\uff0c\u7ed3\u679c\u662f\u4ed8\u51fa\u751f\u547d\u7684\u4ee3\u4ef7\u3002',
    u'createTime': 1493281742,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'48359-48416',
    u'reviewId': u'11818262_6Q23SbS8q',
    u'type': 1,
    u'userVid': 11818262,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u56db\u5ddd \u6210\u90fd',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypNYfouu1XibKGbvqU1pfG9rwBUcj46FgoIyTDO96nicTdmLN8ibcZejz2vRKgPVcakjq5oyiawDia50mGoSdse5D0g4k/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u4e00\u65b9\u51c0\u571f',
     u'userVid': 15907927,
     u'vDesc': u'\u9605\u8bfb \u4fee\u8eab \u4fee\u5fc3 \u542c\u97f3\u4e50 \u6f2b\u6b65'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'13',
    u'createTime': 1494514285,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 13,
    u'readingTime': 4463,
    u'reviewId': u'15907927_6PnmmUnek',
    u'startReadingTime': 1490969877,
    u'type': 3,
    u'userVid': 15907927},
   u'reviewCount': 0,
   u'reviewId': u'15907927_6PnmmUnek',
   u'signature': u'\u8bfb\u4e66\u770b\u4e16\u754c  \u601d\u8003\u54c1\u4eba\u751f \uff0c\u4e0d\u4ee5\u5584\u5c0f\u800c\u4e0d\u4e3a\uff0c\u4e0d\u4ee5\u6076\u5c0f\u800c\u4e3a\u4e4b',
   u'totalReadingTime': 0,
   u'vid': 15907927,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u4eba\u7c7b\u4e0d\u518d\u5e73\u7b49\uff0c\u4e0d\u6b7b\u5c31\u5728\u773c\u524d\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u8fd9\u6bb5\u8bdd\u5f88\u6b8b\u9177\uff0c\u4e5f\u662f\u65e0\u6cd5\u6539\u53d8\u7684\u4e8b\u5b9e\uff0c\u4eba\u7c7b\u4e0d\u518d\u5e73\u7b49\uff0c\u4e0d\u6b7b\u5c31\u5728\u773c\u524d\u3002\u5728\u4e0d\u4e45\u7684\u5c06\u6765  \u968f\u7740\u79d1\u5b66\u6280\u672f\u7684\u53d1\u5c55\uff0c\u6709\u94b1\u7684\u4eba\u548c\u6709\u6743\u5229\u7684\u4eba\u5b83\u4eec\u4f1a\u7528\u81ea\u5df1\u7684\u624b\u6bb5\uff0c\u83b7\u5f97\u957f\u751f\u6216\u5219\u6c38\u751f\u3002',
    u'createTime': 1493764958,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'29877-29891',
    u'reviewId': u'15907927_6QazkbcFp',
    u'type': 1,
    u'userVid': 15907927,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5929\u6d25 \u9759\u6d77',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TOFDVibLkZx1qAFOLG1oX148417b8gAiaibXDsQ15mFv2ia2hThCx7lA7NKxWMOibUTeUnwpD3Jiaqvqd8/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u84dd\u591c',
     u'userVid': 4029163},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 15,
    u'content': u'90',
    u'createTime': 1494513131,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 244,
    u'readingTime': 33605,
    u'reviewId': u'4029163_6PSnj5DZ5',
    u'startReadingTime': 1492731544,
    u'type': 3,
    u'userVid': 4029163},
   u'reviewCount': 0,
   u'reviewId': u'4029163_6PSnj5DZ5',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 4029163,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u519c\u6c11\u4ee5\u4e3a\u81ea\u5df1\u662f\u4e0a\u5e1d\u6240\u9020\u4e07\u7269\u7684\u9876\u5cf0\uff0c\u79d1\u5b66\u5bb6\u5219\u8981\u8ba9\u4eba\u7c7b\u90fd\u8fdb\u5316\u5347\u7ea7\u4e3a\u795e\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 5,
    u'content': u'\u4e24\u4e2a\u56ed\uff0c\u4e00\u4e2a\u4f0a\u7538\u56ed\uff0c\u4e00\u4e2a\u4f0d\u5c14\u7d22\u666e\u5e84\u56ed\uff1b\u6e34\u671b\u83b7\u53d6\u77e5\u8bc6\uff0c\u4e00\u4e2a\u88ab\u60e9\u7f5a\uff0c\u4e00\u4e2a\u88ab\u8ba4\u53ef\u8d5e\u8d4f',
    u'createTime': 1493292402,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'37746-37779',
    u'reviewId': u'4029163_6Q2fvzO7k',
    u'type': 1,
    u'userVid': 4029163,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u7518\u8083 \u5170\u5dde\u5e02',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLA4ovxDCwauJB2TFGUa1u2kmkGF4gibCA47RxJV8ial3l1ibzpwElwyfTeRMtVL6icJzWCRBlaMEdwYpA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u7941\u6b63\u4e7e',
     u'userVid': 22516449},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'20',
    u'createTime': 1494512966,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 6,
    u'readingTime': 12314,
    u'reviewId': u'22516449_6P5brBbPy',
    u'startReadingTime': 1489937464,
    u'type': 3,
    u'userVid': 22516449},
   u'reviewCount': 0,
   u'reviewId': u'22516449_6P5brBbPy',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 22516449,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u8fd9\u4e9b\u836f\u7269\u539f\u672c\u7528\u4e8e\u6cbb\u7597\u6ce8\u610f\u529b\u4e0d\u96c6\u4e2d\uff0c\u4f46\u4eca\u5929\u5c31\u8fde\u4e00\u4e9b\u5b8c\u5168\u5065\u5eb7\u7684\u5b69\u5b50\u4e5f\u5f00\u59cb\u670d\u836f\uff0c\u5e0c\u671b\u501f\u6b64\u63d0\u9ad8\u6210\u7ee9\uff0c\u4ee5\u8fce\u5408\u8001\u5e08\u548c\u5bb6\u957f\u8d8a\u6765\u8d8a\u9ad8\u7684\u671f\u671b\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u60f3\u8d77\u4e0a\u9ad8\u4e2d\u90a3\u4f1a\uff0c\u5468\u56f4\u5f88\u591a\u540c\u5b66\u90fd\u5728\u8865\u5145\u8425\u517b\u7c7b\u836f\u7269\uff0c\u6bd4\u5982\u751f\u547d\u4e00\u53f7\u4ec0\u4e48\u7684\u3002\u8fd9\u548c\u8fd0\u52a8\u5458\u9760\u670d\u7528\u5174\u594b\u5242\u63d0\u9ad8\u6210\u7ee9\u4e00\u4e2a\u9053\u7406\u3002\n',
    u'createTime': 1494339415,
    u'range': u'44793-45147',
    u'reviewId': u'22516449_6QkGn191j',
    u'type': 1,
    u'userVid': 22516449}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u5317\u4eac',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/PiajxSqBRaELWkEnicppd3oib6Ll7oicsak7STuqOMmdyShaiaYgJGRibrV3ou04BdlibibwUtuemIpL4MfKYvNJjm2icOw/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'yaqiong',
     u'userVid': 10849941},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 13,
    u'content': u'73',
    u'createTime': 1494511583,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 11,
    u'readingTime': 49476,
    u'reviewId': u'10849941_6PrLRho4f',
    u'startReadingTime': 1491220430,
    u'type': 3,
    u'userVid': 10849941},
   u'reviewCount': 0,
   u'reviewId': u'10849941_6PrLRho4f',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 10849941,
   u'wonderReview': {u'_fljmask': 0,
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u53e4\u62c9\u683c\uff0c\u662f\u5728\u5b66\u8005\u6731\u5b66\u4e1c\u7684\u4e00\u6b21\u8bfb\u4e66\u5206\u4eab\u6d3b\u52a8\u4e2d\u77e5\u9053\u7684\u3002\u539f\u672c\u5bf9\u4e8e\u6587\u5b66\u5386\u53f2\u4e66\u5145\u6ee1\u597d\u5947\uff0c\u6731\u5b66\u4e1c\u5148\u751f\u8bf4\u4ed6\u8bfb\u5b8c\u540e\u4ea7\u751f\u4e86\u5f88\u957f\u65f6\u95f4\u7684\u751f\u7406\u4e0d\u9002\u611f\uff0c\u542c\u95fb\u6b64\u8a00\uff0c\u6211\u4e5f\u5c31\u6b64\u6401\u4e0b\u4e86\u3002\u770b\u5230\u8fd9\u91cc\u5bf9\u53e4\u62c9\u683c\u7684\u63cf\u8ff0\u548c\u4ecb\u7ecd\uff0c\u53c8\u52fe\u8d77\u4e86\u5bf9\u53e4\u62c9\u683c\u7684\u5174\u8da3\u6765\uff0c\u730e\u5947\u5fc3\u7406\u4f5c\u795f\u7f62\u3002\n',
    u'createTime': 1494325305,
    u'refReviewId': u'5808779_6Q9sgxxmJ',
    u'reviewId': u'10849941_6QkqY8rcU',
    u'type': 1,
    u'userVid': 10849941}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u798f\u5efa \u798f\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLC7G17UB4aJBc6gQwvLvKkLl3JJ7MLYU3cdIbaDIFb4Giagaia3FLk8trS2cicHlPDZRQBSeVIrVLB8A/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\U0001f433\u8587\u8587\u8587',
     u'userVid': 20705839},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 9,
    u'content': u'44',
    u'createTime': 1494509516,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 8,
    u'readingTime': 15267,
    u'reviewId': u'20705839_6OwfX4PPz',
    u'startReadingTime': 1487953586,
    u'type': 3,
    u'userVid': 20705839},
   u'reviewCount': 0,
   u'reviewId': u'20705839_6OwfX4PPz',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 20705839,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u4e07\u7269\u9075\u5faa\u7740\u540c\u6837\u4e00\u5957\u89c4\u5219\uff1a\u5bf9\u4e8e\u4efb\u4f55\u4e8b\u60c5\uff0c\u76f8\u5173\u5404\u65b9\u90fd\u8981\u4e0d\u65ad\u534f\u5546\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 5,
    u'content': u'\u6240\u6709\u4e8b\u60c5\u90fd\u80fd\u591f\u901a\u8fc7\u6c9f\u901a\u534f\u5546\u89e3\u51b3\uff0c\u5982\u679c\u4e0d\u80fd\uff0c\u8bf4\u660e\u6c9f\u901a\u7684\u529b\u5ea6\uff0c\u65b9\u6cd5\uff0c\u6d89\u53ca\u7684\u5173\u952e\u4eba\u6ca1\u6709\u627e\u5bf9\n',
    u'createTime': 1493682419,
    u'range': u'8095-8125',
    u'reviewId': u'20705839_6Q97eioqh',
    u'type': 1,
    u'userVid': 20705839}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u6d59\u6c5f \u676d\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLDjxmULDmbaPiavALGLEXmqYn7xmbx5vNkKMe9ulZRBgceStBYhxk0CVP53EJRUoRzibRRuf7U9MVwA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'SU',
     u'userVid': 14129512},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'1',
    u'createTime': 1494508948,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 2,
    u'readingTime': 1675,
    u'reviewId': u'14129512_6PMqJ2DGL',
    u'startReadingTime': 1492393874,
    u'type': 3,
    u'userVid': 14129512},
   u'reviewCount': 0,
   u'reviewId': u'14129512_6PMqJ2DGL',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 14129512,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u5230\u4e8621\u4e16\u7eaa\u521d\uff0c\u5e73\u5747\u6765\u8bf4\uff0c\u4eba\u7c7b\u6b7b\u4e8e\u5e72\u65f1\u3001\u57c3\u535a\u62c9\u75c5\u6bd2\u6216\u57fa\u5730\u7ec4\u7ec7\u6050\u6016\u88ad\u51fb\u7684\u53ef\u80fd\u6027\uff0c\u8fd8\u4e0d\u53ca\u6b7b\u4e8e\u66b4\u996e\u66b4\u98df\u9ea6\u5f53\u52b3\u98df\u54c1\u7684\u6bd4\u4f8b',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 3,
    u'content': u'\u4eba\u7c7b\u7684\u5173\u6ce8\u70b9\u4e5f\u9010\u6e10\u4ece\u9965\u8352\uff0c\u761f\u75ab\u548c\u6218\u4e89\u5ef6\u4f38\u5230\u4e86\u7cbe\u795e\u4e0a\u7684\u8d2b\u7620\uff0c\u5065\u5eb7\u4e0a\u7684\u653e\u7eb5\u548c\u5bf9\u751f\u547d\u7684\u81ea\u6211\u4eb5\u6e0e\n',
    u'createTime': 1492393858,
    u'range': u'1340-1396',
    u'reviewId': u'14129512_6PMqHYi6F',
    u'type': 1,
    u'userVid': 14129512}},
  {u'finishedBookCount': 0,
   u'gender': 0,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u6c5f\u82cf \u5357\u4eac',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/bnFC73eKX1cUMvOlYjSZvibka0BbqtDoFfmheJ5X5FYJ9iaUicHmSHreWG9Tam3Rr0SlibFXqBbH4HxRSKuZKbib3dac3yuFaru3e/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u94c3\u513f',
     u'userVid': 15303727,
     u'vDesc': u'\u559c\u6b22\u5fc3\u7406\u5b66\uff0c\u54f2\u5b66\uff0c\u5386\u53f2\u4eba\u6587\uff0c\u63a8\u7406\u5c0f\u8bf4\uff01'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'78',
    u'createTime': 1494507764,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 10,
    u'readingTime': 57235,
    u'reviewId': u'15303727_6Pt3zIUU2',
    u'startReadingTime': 1491293461,
    u'type': 3,
    u'userVid': 15303727},
   u'reviewCount': 0,
   u'reviewId': u'15303727_6Pt3zIUU2',
   u'signature': u'\u8bfb\u4e07\u5377\u4e66\uff0c\u884c\u4e07\u91cc\u8def\uff01',
   u'totalReadingTime': 0,
   u'vid': 15303727,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u4e5f\u5c31\u662f\u8bf4\uff0c\u610f\u8bc6\u662f\u5927\u8111\u67d0\u4e9b\u7a0b\u5e8f\u5236\u9020\u51fa\u6765\u4f46\u6ca1\u6709\u7528\u9014\u7684\u526f\u4ea7\u54c1\uff0c\u5c31\u50cf\u98de\u673a\u7684\u55b7\u6c14\u53d1\u52a8\u673a\u4f1a\u53d1\u51fa\u9686\u9686\u5de8\u54cd\uff0c\u4f46\u566a\u58f0\u5e76\u4e0d\u4f1a\u63a8\u52a8\u98de\u673a\u524d\u8fdb\u3002\u4eba\u7c7b\u5e76\u4e0d\u9700\u8981\u4e8c\u6c27\u5316\u78b3\uff0c\u4f46\u6bcf\u6b21\u547c\u5438\u90fd\u8ba9\u7a7a\u6c14\u91cc\u7684\u4e8c\u6c27\u5316\u78b3\u66f4\u591a\u3002\u540c\u6837\uff0c\u610f\u8bc6\u53ef\u80fd\u5c31\u662f\u5728\u590d\u6742\u7684\u795e\u7ecf\u7f51\u7edc\u4fe1\u53f7\u4f20\u9001\u4e4b\u540e\u9020\u6210\u7684\u5fc3\u7406\u6c61\u67d3\uff0c\u6ca1\u6709\u4efb\u4f55\u529f\u7528\uff0c\u5c31\u662f\u5b58\u5728\u90a3\u91cc\u7f62\u4e86\u3002\u5982\u679c\u786e\u5b9e\u5982\u6b64\uff0c\u4e5f\u5c31\u662f\u8bf4\u8fd9\u51e0\u767e\u4e07\u5e74\u6765\uff0c\u51e0\u5341\u4ebf\u751f\u7269\u6240\u7ecf\u5386\u7684\u75db\u82e6\u548c\u5feb\u4e50\u53ea\u662f\u4e00\u79cd\u5fc3\u7406\u6c61\u67d3\u3002\u8fd9\u7edd\u5bf9\u662f\u4e2a\u503c\u5f97\u601d\u8003\u7684\u60f3\u6cd5\uff0c\u867d\u7136\u53ef\u80fd\u5e76\u4e0d\u6b63\u786e\u3002\u4f46\u8fd9\u4e5f\u8ba9\u6211\u4eec\u5f88\u60ca\u8bb6\u5730\u53d1\u73b0\uff0c\u5f53\u4ee3\u79d1\u5b66\u5728\u4eca\u5929\u8981\u89e3\u91ca\u201c\u610f\u8bc6\u201d\uff0c\u8fd9\u7adf\u7136\u5df2\u7ecf\u662f\u76ee\u524d\u6700\u4f73\u7684\u7406\u8bba\u3002\n*\n\u4e5f\u8bb8\u751f\u547d\u79d1\u5b66\u770b\u8fd9\u4e2a\u95ee\u9898\u7684\u89d2\u5ea6\u9519\u4e86\uff1f\u751f\u547d\u79d1\u5b66\u8ba4\u4e3a\u751f\u547d\u5c31\u662f\u7528\u6765\u5904\u7406\u6570\u636e\u7684\uff0c\u800c\u751f\u7269\u4f53\u5c31\u662f\u8fdb\u884c\u8fd0\u7b97\u548c\u505a\u51fa\u51b3\u5b9a\u7684\u673a\u5668\u3002\u7136\u800c\uff0c\u628a\u751f\u7269\u4f53\u7c7b\u63a8\u6210\u7b97\u6cd5\u53ef\u80fd\u662f\u4e2a\u8bef\u5bfc\u300219\u4e16\u7eaa\uff0c\u79d1\u5b66\u5bb6\u628a\u5927\u8111\u548c\u601d\u60f3\u6bd4\u4f5c\u84b8\u6c7d\u53d1\u52a8\u673a\u3002\u4e3a\u4ec0\u4e48\u7528\u84b8\u6c7d\u53d1\u52a8\u673a\u505a\u6bd4\u55bb\uff1f\u56e0\u4e3a\u5f53\u65f6\u90a3\u5c31\u662f\u6700\u5148\u8fdb\u7684\u79d1\u6280\uff0c\u80fd\u591f\u63a8\u52a8\u706b\u8f66\u3001\u8f6e\u8239\u548c\u5de5\u5382\uff0c\u6240\u4ee5\u8981\u89e3\u91ca\u751f\u547d\u7684\u65f6\u5019\uff0c\u4ed6\u4eec\u4e5f\u76f8\u4fe1\u5e94\u8be5\u91c7\u7528\u7c7b\u4f3c\u7684\u539f\u5219\u3002\u4e8e\u662f\uff0c\u4ed6\u4eec\u76f8\u4fe1\u5fc3\u7075\u548c\u8eab\u4f53\u5c31\u50cf\u662f\u7531\u5404\u79cd\u7ba1\u9053\u3001\u6c7d\u7f38\u3001\u9600\u95e8\u548c\u6d3b\u585e\u6784\u6210\u7684\uff0c\u80fd\u591f\u84c4\u79ef\u548c\u91ca\u653e\u538b\u529b\uff0c\u4ece\u800c\u505a\u51fa\u5404\u79cd\u8fd0\u52a8\u548c\u884c\u4e3a\u3002\u8fd9\u79cd\u60f3\u6cd5\u751a\u81f3\u4e5f\u5bf9\u5f17\u6d1b\u4f0a\u5fb7\u7684\u5fc3\u7406\u5b66\u5f71\u54cd\u751a\u6df1\uff0c\u81f3\u4eca\u4ecd\u6709\u5f88\u591a\u5fc3\u7406\u5b66\u672f\u8bed\u6765\u81ea\u673a\u68b0\u5de5\u7a0b\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 6,
    u'content': u'\u592a\u4e0d\u5c0a\u91cd\u610f\u8bc6\u4e86\uff0c\u5b9e\u5728\u4e0d\u6562\u82df\u540c\uff0c\u6211\u6070\u6070\u8ba4\u4e3a\u6b63\u662f\u56e0\u4e3a\u6709\u5d07\u9ad8\u7684\u610f\u8bc6\uff0c\u624d\u81ea\u53e4\u5c31\u6709\u820d\u8eab\u53d6\u4e49\u7684\u82f1\u96c4\u5c42\u51fa\u4e0d\u7a77\uff0c\u4eba\u7c7b\u624d\u521b\u9020\u4e86\u90a3\u4e48\u591a\u5947\u8ff9\uff01\n',
    u'createTime': 1492504706,
    u'range': u'14749',
    u'reviewId': u'15303727_6POnHGhrF',
    u'type': 1,
    u'userVid': 15303727}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6e56\u5317 \u6b66\u6c49',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypPTOthKOEOukU42ujAzWPXDjHaibY8YT3QZbbs4DKyNcFfiasXUsna3iaLicXP1UnawmksgFGolRDdIrzvv8dTZfhSU/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u8983',
     u'userVid': 37933167},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 18,
    u'content': u'99',
    u'createTime': 1494507549,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 179,
    u'readingTime': 32172,
    u'reviewId': u'37933167_6Q1srWRKw',
    u'startReadingTime': 1493247457,
    u'type': 3,
    u'userVid': 37933167},
   u'reviewCount': 0,
   u'reviewId': u'37933167_6Q1srWRKw',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 37933167,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u5f88\u503c\u5f97\u63a8\u8350\u7684\u4e00\u672c\u4e66\uff0c\u5199\u7684\u6bd4\u4eba\u7c7b\u7b80\u53f2\u66f4\u4e3a\u5b8f\u5927\u900f\u5f7b\uff0c\u6709\u4e00\u79cd\u65f6\u95f4\u7684\u667a\u6167\u60a0\u7136\u884c\u95f4\u3002\u6709\u65f6\u95f4\u4e0d\u59a8\u770b\u770b\u5427\uff01',
    u'createTime': 1494408396,
    u'range': u'',
    u'reviewId': u'37933167_6QlTFkHYn',
    u'star': 100,
    u'topicRanges': [u'0-0'],
    u'type': 4,
    u'userVid': 37933167,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u9655\u897f \u897f\u5b89',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuVeJ5EGXTIkZgiawicjvvfwUpvloibPRkHsbQ5icHosGl4uelP4vmGgiccTnlsOAWLHI8w0FQtTFhiciayg/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'andy',
     u'userVid': 8600034,
     u'vDesc': u'\u81ea\u7531\u8077\u696d'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'64',
    u'createTime': 1494503834,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 26,
    u'readingTime': 33098,
    u'reviewId': u'8600034_6OCGJwHTa',
    u'startReadingTime': 1488318923,
    u'type': 3,
    u'userVid': 8600034},
   u'reviewCount': 0,
   u'reviewId': u'8600034_6OCGJwHTa',
   u'signature': u'\u8209\u982d\u671b\u660e\u6708\uff0c\u628a\u9152\u554f\u9752\u5929\u3002\u8ab0\u8a00\u5bf8\u8349\u5fc3\uff0c\u6625\u98a8\u5439\u53c8\u751f\u3002',
   u'totalReadingTime': 0,
   u'vid': 8600034,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u5728\u4f26\u7406\u4e0a\uff0c\u4eba\u6587\u4e3b\u4e49\u7684\u5ea7\u53f3\u94ed\u662f\u201c\u611f\u89c9\u5bf9\u4e86\uff0c\u5c31\u505a\u5427\u201d\u3002\u5728\u653f\u6cbb\u4e0a\uff0c\u4eba\u6587\u4e3b\u4e49\u544a\u8bc9\u6211\u4eec\u201c\u9009\u6c11\u80fd\u505a\u51fa\u6700\u597d\u7684\u9009\u62e9\u201d\u3002\u5728\u7f8e\u5b66\u4e0a\uff0c\u4eba\u6587\u4e3b\u4e49\u8bf4\u201c\u770b\u7684\u4eba\u89c9\u5f97\u7f8e\uff0c\u5c31\u662f\u7f8e\u201d\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 11,
    u'content': u'\u4eba\u6587\u4e3b\u4e49\u4e0d\u8be5\u53d8\u6210\u81ea\u6211\u4e3a\u4e2d\u5fc3\u7684\u5e4c\u5b50\uff0c\u4eba\u6587\u4e3b\u4e49\u5f3a\u8c03\u81ea\u6211\u611f\u53d7\uff0c\u4f46\u524d\u63d0\u662f\u4e0d\u7834\u574f\u4ed6\u4eba\u7684\u81ea\u6211\u611f\u53d7\uff0c\u7531\u6b64\u8bf4\u4eba\u6587\u4e3b\u4e49\u662f\u4e00\u79cd\u81ea\u6211\u548c\u81ea\u6211\u4e4b\u95f4\u7684\u5e73\u8861\u5173\u7cfb\uff0c\u4eba\u6587\u4e3b\u4e49\u8fd8\u4f1a\u5f3a\u8c03\u76f8\u4e92\u611f\u53d7\u3002\n',
    u'createTime': 1493806218,
    u'range': u'7644-7823',
    u'reviewId': u'8600034_6QbimulQ7',
    u'type': 1,
    u'userVid': 8600034}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u56db\u5ddd \u6210\u90fd',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8utOLn2om1rJicbjnjCByob5VeMlxhQibF6Fx3IRNicQbe0ibkFCCVSjsdYmOugKiaEAmjk4WgY1fhLCZDic16Q9n5g5Pq/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u9648\u601d\u84d3',
     u'userVid': 4031094},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'76',
    u'createTime': 1494502383,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 206,
    u'readingTime': 23106,
    u'reviewId': u'4031094_6PYjHzrj6',
    u'startReadingTime': 1493069042,
    u'type': 3,
    u'userVid': 4031094},
   u'reviewCount': 0,
   u'reviewId': u'4031094_6PYjHzrj6',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 4031094,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u5c31\u7b97\u5404\u79cd\u5b97\u6559\u7ecf\u5178\u4ece\u6839\u672c\u4e0a\u626d\u66f2\u4e86\u5927\u4f17\u5bf9\u4e8e\u73b0\u5b9e\u672c\u8d28\u7684\u7406\u89e3\uff0c\u5374\u8fd8\u662f\u80fd\u5927\u6743\u5728\u63e1\u6570\u5343\u5e74\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 8,
    u'content': u'\u6bcf\u6b21\u770b\u5230\u4f5c\u8005\u5bf9\u5b97\u6559\u7684\u5632\u8bbd\uff0c\u5c31\u4e0d\u7981\u60f3\u73b0\u4ee3\u4eba\u7684\u4fe1\u4ef0\u662f\u4ec0\u4e48\uff0c\u662f\u4eba\u6743\uff1f\u662f\u5e73\u7b49\uff1f\u662f\u56fd\u5bb6\uff1f\u53ef\u5f53\u5171\u540c\u8ba4\u8bc6\u7684\u8fd9\u5f20\u7f51\u88ab\u6495\u7834\u4ee5\u540e\uff0c\u6211\u4eec\u5728\u672a\u6765\u53c8\u5c06\u88ab\u5982\u4f55\u8bc4\u8bf4\u3002\n',
    u'createTime': 1493488231,
    u'range': u'14693-14732',
    u'reviewId': u'4031094_6Q5HgsmAL',
    u'type': 1,
    u'userVid': 4031094}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5e7f\u4e1c \u60e0\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLDdvGq8mptiaWRX2ezYkQH9pjHSejasR3wlT02pVcSLrYV1ocGOiayChUBCR6sdRlETwsgfWrmMkl1w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Mr. Toro',
     u'userVid': 15626834,
     u'vDesc': u'\u4e0d\u6e38\u624b\u597d\u95f2\u3001\u4e0d\u865a\u5ea6\u5149\u9634\u3002'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'7',
    u'createTime': 1494500949,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 35,
    u'readingTime': 17001,
    u'reviewId': u'15626834_6PCfeBZ5a',
    u'startReadingTime': 1491815345,
    u'type': 3,
    u'userVid': 15626834},
   u'reviewCount': 0,
   u'reviewId': u'15626834_6PCfeBZ5a',
   u'signature': u'\U0001f3c0\u4e0e\U0001f4d6\uff0c\u4e00\u4e2a\u90fd\u4e0d\u80fd\u5c11\u3002',
   u'totalReadingTime': 0,
   u'vid': 15626834,
   u'wonderReview': {u'_fljmask': 0,
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u4eba\u4e0e\u4eba\u7684\u6c9f\u901a\uff0c\u5e76\u4e0d\u662f\u7b80\u5355\u7684\u4fe1\u606f\u4ea4\u6d41\uff0c\u4ef7\u503c\u89c2\u5dee\u5f02\u7684\u5927\u5c0f\u51b3\u5b9a\u6c9f\u901a\u6df1\u6d45\uff0c\u5176\u5b83\u5982\u77e5\u8bc6\u3001\u6001\u5ea6\u3001\u6027\u522b\u3001\u5e74\u9f84\u3001\u5173\u7cfb\u7b49\u90fd\u662f\u5176\u6b21\u3002\n',
    u'createTime': 1493946589,
    u'refReviewId': u'18239918_6OmyEsi2n',
    u'reviewId': u'15626834_6QdLAbQzQ',
    u'type': 1,
    u'userVid': 15626834}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TFHfRWUI4icWvHb6bfLWu28DxwZiaObtrq1Sz4CZVDyG1Wejs8cNgEibanriaGpP78cwicoQiakqO3KfjC/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Thomas Chen2',
     u'userVid': 15126554,
     u'vDesc': u'\u9ed8\u66f0TC'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u5317\u4eac \u671d\u9633',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM6M6Et53iabqFvkLvujUv7V1PQ1P13ZyT50S1DBqTKWpemw6gcrhqshE4AnEJXcyAv3zficw3YC3yCQ/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5f20\u5b50\u9633superme',
     u'userVid': 10914121},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 15,
    u'content': u'87',
    u'createTime': 1494500000,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 9,
    u'readingTime': 53105,
    u'reviewId': u'10914121_6OVGAgVjQ',
    u'startReadingTime': 1489397990,
    u'type': 3,
    u'userVid': 10914121},
   u'reviewCount': 0,
   u'reviewId': u'10914121_6OVGAgVjQ',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 10914121,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u81ea\u7531\u4e3b\u4e49\u653f\u6cbb\u8ba4\u4e3a\uff0c\u9009\u6c11\u80fd\u505a\u51fa\u6700\u597d\u7684\u9009\u62e9\u3002\u81ea\u7531\u4e3b\u4e49\u827a\u672f\u8ba4\u4e3a\uff0c\u89c2\u770b\u4f5c\u54c1\u7684\u4eba\u89c9\u5f97\u7f8e\uff0c\u5c31\u662f\u7f8e\u3002\u81ea\u7531\u4e3b\u4e49\u7ecf\u6d4e\u5b66\u8ba4\u4e3a\uff0c\u987e\u5ba2\u6c38\u8fdc\u662f\u5bf9\u7684\u3002\u81ea\u7531\u4e3b\u4e49\u4f26\u7406\u8ba4\u4e3a\uff0c\u53ea\u8981\u611f\u89c9\u5bf9\u4e86\uff0c\u5c31\u8be5\u53bb\u505a\u3002\u81ea\u7531\u4e3b\u4e49\u6559\u80b2\u8ba4\u4e3a\uff0c\u6211\u4eec\u8981\u4e3a\u81ea\u5df1\u601d\u8003\uff0c\u56e0\u4e3a\u4ece\u5185\u5fc3\u5c31\u80fd\u627e\u5230\u6240\u6709\u7b54\u6848\u3002\n\u572819\u201420\u4e16\u7eaa\uff0c\u4eba\u6587\u4e3b\u4e49\u7684\u793e\u4f1a\u516c\u4fe1\u5ea6\u53ca\u653f\u6cbb\u529b\u91cf\u4e0e\u65e5\u4ff1\u589e\uff0c\u5f00\u59cb\u4ea7\u751f\u4e24\u4e2a\u622a\u7136\u4e0d\u540c\u7684\u5206\u652f\uff1a\u793e\u4f1a\u4eba\u6587\u4e3b\u4e49\uff08\u5305\u62ec\u5404\u79cd\u793e\u4f1a\u4e3b\u4e49\u548c\u5171\u4ea7\u4e3b\u4e49\u8fd0\u52a8\uff09\uff0c\u4ee5\u53ca\u8fdb\u5316\u4eba\u6587\u4e3b\u4e49\uff08\u4ee5\u7eb3\u7cb9\u4e3a\u6700\u8457\u540d\u7684\u4ee3\u8868\uff09\u3002\u4e24\u4e2a\u5206\u652f\u90fd\u540c\u610f\u81ea\u7531\u4e3b\u4e49\u7684\u770b\u6cd5\uff0c\u4e5f\u5c31',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 11,
    u'content': u'\u81ea\u7531\u4e3b\u4e49\u56fa\u7136\u4f1a\u627e\u5230\u6b63\u786e\u7684\u9053\u8def\uff0c\u4f46\u65e0\u5948\u5176\u6ede\u540e\u6027\u3002\u8ba1\u5212\u4e3b\u4e49\u7684\u7f3a\u70b9\u91cd\u91cd\uff0c\u4e2a\u4eba\u8ba4\u4e3a\u53ea\u662f\u6ca1\u6709\u7ecf\u8fc7\u53cd\u590d\u79d1\u5b66\u7684\u7406\u8bba\u8ba8\u8bba\u3002',
    u'createTime': 1493635872,
    u'isPrivate': 0,
    u'range': u'22431',
    u'reviewId': u'10914121_6Q8iqc4Az',
    u'type': 1,
    u'userVid': 10914121,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM6IQ3a1q8q2W8mOanV3afnQo02NnDmIe0ia66FhSflF81Hicffz8xADNwqJUkbtYrT7yHXAoibcb2goA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'EVA',
     u'userVid': 3123059,
     u'vDesc': u'\u6bcf\u5929\uff0c\u6211\u80fd\u591f\u505a\u4e9b\u4ec0\u4e48\u3002\u8bfb\u4e66\u3002'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 15,
    u'content': u'89',
    u'createTime': 1494496536,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 33,
    u'readingTime': 46518,
    u'reviewId': u'3123059_6OvWKuGPo',
    u'startReadingTime': 1487935993,
    u'type': 3,
    u'userVid': 3123059},
   u'reviewCount': 0,
   u'reviewId': u'3123059_6OvWKuGPo',
   u'signature': u'\u767d\u9a79\u8fc7\u9699 \u6ef4\u6c34\u7a7f\u77f3',
   u'totalReadingTime': 0,
   u'vid': 3123059,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u4f60\u6709\u6ca1\u6709\u60f3\u8fc7\uff0c\u867d\u7136\u6218\u4e89\u8fd9\u4e48\u6050\u6016\uff0c\u81f3\u5c11\u8fd8\u7b97\u662f\u4ef6\u5927\u4e8b\uff1f\u6211\u662f\u8bf4\uff0c\u5728\u6218\u4e89\u91cc\uff0c\u4eba\u5f97\u9762\u5bf9\u73b0\u5b9e\u3002\u548c\u5e73\u7684\u65f6\u5019\uff0c\u5168\u4e16\u754c\u5927\u6982\u6709\u4e5d\u6210\u7684\u4eba\uff0c\u8fc7\u7684\u5927\u6982\u90fd\u662f\u90aa\u6076\u800c\u5546\u4e1a\u5316\u7684\u751f\u6d3b\uff0c\u611a\u8822\u3001\u81ea\u79c1\u3001\u5962\u4f88\u3001\u6267\u7740\u4e8e\u9e21\u6bdb\u849c\u76ae\u7684\u5c0f\u4e8b\u3002\u4f46\u5230\u4e86\u6218\u65f6\uff0c\u4e00\u5207\u90fd\u53d8\u5f97\u91ce\u86ee\uff0c\u4f46\u81f3\u5c11\u66f4\u8bda\u5b9e\uff0c\u4e5f\u66f4\u76f4\u63a5\u3002\u6362\u4e2a\u89d2\u5ea6\u6765\u770b\uff1a\u548c\u5e73\u7684\u65f6\u5019\uff0c\u6bcf\u4e2a\u4eba\u8fc7\u7684\u53ea\u662f\u81ea\u5df1\u7684\u5c0f\u65e5\u5b50\uff0c\u505a\u4e9b\u7410\u788e\u5c0f\u4e8b\uff0c\u62c5\u5fc3\u81ea\u5df1\u662f\u4e0d\u662f\u8212\u670d\u3001\u94b1\u591f\u4e0d\u591f\u7528\u8fd9\u79cd\u4e8b\uff0c\u4e00\u5207\u53ea\u662f\u4e3a\u81ea\u5df1\u6d3b\u7740\u3002\u8fd9\u79cd\u751f\u6d3b\u4e5f\u592a\u6076\u5fc3\u4e86\u5427\uff01\u4f46\u5728\u6218\u65f6\uff0c\u5c31\u7b97\u4f60\u786e\u5b9e\u88ab\u6740\u4e86\uff08\u4eba\u672c\u6765\u5c31\u53ea\u80fd\u591a\u6d3b\u51e0\u5e74\uff0c\u96be\u514d\u4e00\u6b7b\uff09\uff0c\u5374\u80fd\u786e\u5207\u77e5\u9053\uff0c\u81ea\u5df1\u7684\u6b7b\u662f\u4e3a\u4e86\u81ea\u5df1\u7684\u56fd\u5bb6\u3002\u4e8b\u5b9e\u4e0a\uff0c\u4f60\u5b8c\u6210\u4e86\u4e00\u4e2a\u7406\u60f3\u3002\u5728\u6211\u770b\u6765\uff0c\u8fd9\u5728\u65e5\u5e38\u751f\u6d3b\u91cc\u5f88\u5c11\u80fd\u591f\u505a\u5230\u3002\u56e0\u4e3a\u65e5\u5e38\u751f\u6d3b\u7684\u57fa\u7840\u662f\u5546\u4e1a\u5316\u548c\u81ea\u79c1\u3002\u5982\u679c\u4f60\u4e5f\u60f3\u201c\u6709\u70b9\u513f\u6210\u5c31\u201d\uff0c\u5c31\u4e0d\u53ef\u80fd\u8896\u624b\u65c1\u89c2\u3002\n\u5c31\u6211\u4e2a\u4eba\u800c\u8a00\uff0c\u5e38\u5e38\u5f88\u9ad8\u5174\u81ea\u5df1\u78b0\u4e0a\u4e86\u6218\u4e89\u3002\u8fd9\u8ba9\u6211\u610f\u8bc6\u5230\uff0c\u751f\u547d\u771f\u662f\u4e00\u4ef6\u5c0f\u4e8b\u3002\u6211\u8ba4\u4e3a\u6218\u4e89\u8ba9\u6bcf\u4e2a\u4eba\u90fd\u6709\u673a\u4f1a\u201c\u8df3\u51fa\u81ea\u5df1\u201d\uff0c\u5927\u6982\u53ef\u4ee5\u8fd9\u4e48\u8bf4\u5427\u2026\u2026\u786e\u5b9e\uff0c\u6211\u6562\u8bf4\u81ea\u5df1\u4e00\u8f88\u5b50\u4ece\u6ca1\u8fd9\u4e48\u6fc0\u52a8\u548c\u5174\u594b\u8fc7\uff0c\u7b80\u76f4\u5c31\u50cf\u770b\u7740\u4e00\u573a\u5927\u578b\u7279\u6280\u79c0\u8981\u5f00\u573a\uff0c\u5c31\u50cf\u53bb\u5e744\u6708\u90a3\u6837\u3002\u6211\u5728\u8fc7\u53bb\u5927\u7ea6\u534a\u5c0f\u65f6\u91cc\u611f\u89c9\u5230\u7684\u5174\u594b\uff0c\u5b9e\u5728\u4e0d\u662f\u8fd9\u4e2a\u4e16\u4e0a\u4efb\u4f55\u4e8b\u60c5\u80fd\u6bd4\u7684\u3002[\u63d2\u56fe]',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 11,
    u'content': u'\u8c01\u66f4\u53ef\u6015\uff0c\n\u662f\u6218\u4e89\u8fd8\u662f\u6709\u8fd9\u6837\u601d\u60f3\u7684\u4eba\uff0c\n\u6218\u4e89\u4f1a\u5e26\u6765\u4ec0\u4e48\uff0c\n\u53c8\u4f1a\u6bc1\u706d\u4ec0\u4e48\uff0c\n\u5982\u679c\u5168\u4e16\u754c\u90fd\u6218\u4e89\u4e86\uff0c\n\u5730\u7403\u4f1a\u4e0d\u4f1a\u706d\u4ea1\uff0c\n\u4eba\u7c7b\u8fd8\u4f1a\u4e0d\u4f1a\u5b58\u5728\uff0c\n\u4e0d\u80fd\u4eab\u53d7\u5730\u7403\u7ed9\u4e88\u6211\u4eec\u7684\u5927\u81ea\u7136\u7684\u540c\u65f6\uff0c\n\u8fd8\u8981\u8fde\u5e26\u6bc1\u706d\u4e00\u5207\u5728\u6b64\u4ee5\u6b64\u4e3a\u751f\u7684\u5176\u4ed6\u751f\u7269\uff0c\n\u7231\u6218\u4e89\u7684\u4eba\uff0c\n\u4e0d\u5982\u4f60\u4eec\u76f4\u63a5\u53bb\u6b7b\u66f4\u597d\u3002',
    u'createTime': 1493627449,
    u'isPrivate': 0,
    u'range': u'27631-28126',
    u'reviewId': u'3123059_6Q89eakz7',
    u'type': 1,
    u'userVid': 3123059,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u5317\u4eac \u897f\u57ce',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLAYjOic3eiabMu2fszAGfStqQ9yNsO4iccNsKHibAzIa16ugGnW6rf0oo7nVGRYuiblpvNnkugTu7TKQfA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5218\u70dc\u6770',
     u'userVid': 35927572},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'80',
    u'createTime': 1494493881,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 15,
    u'readingTime': 51635,
    u'reviewId': u'35927572_6POw59hrg',
    u'startReadingTime': 1492512382,
    u'type': 3,
    u'userVid': 35927572},
   u'reviewCount': 0,
   u'reviewId': u'35927572_6POw59hrg',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 35927572,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u73b0\u4ee3\u6587\u5316\u7684\u529b\u91cf\u662f\u5386\u53f2\u4e0a\u6700\u5f3a\u7684\u529b\u91cf\uff0c\u800c\u4e14\u8fd8\u5728\u4e0d\u505c\u7814\u7a76\u3001\u53d1\u660e\u3001\u53d1\u73b0\u4e0e\u589e\u957f\u3002\u540c\u65f6\uff0c\u73b0\u4ee3\u6587\u5316\u4e5f\u6bd4\u4ee5\u5f80\u4efb\u4f55\u6587\u5316\u611f\u53d7\u5230\u4e86\u66f4\u5927\u7684\u5b58\u5728\u6027\u7126\u8651\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 10,
    u'content': u'\u653e\u5f03\u610f\u4e49\uff0c\u4e5f\u5c31\u653e\u4e0b\u4e86\u601d\u60f3\u684e\u688f\uff0c\u4e8e\u662f\u6211\u4eec\u53ef\u4ee5\u653e\u624b\u63a2\u7d22\uff0c\u53d1\u5c55\uff0c\u8ffd\u5bfb\u529b\u91cf\u3002\n\u653e\u5f03\u610f\u4e49\uff0c\u4e5f\u5c31\u653e\u5f03\u4e86\u7531\u5e7b\u60f3\u865a\u6784\u800c\u6210\u7684\u5fc3\u7075\u4fdd\u62a4\u4f1e\uff0c\u6b64\u65f6\u4e5f\u552f\u6709\u529b\u91cf\u80fd\u7ed9\u4e88\u6211\u4eec\u52c7\u6c14\u53bb\u9762\u5bf9\u8fd9\u4e2a\u5bd2\u51b7\u3001\u8352\u51c9\u3001\u6b8b\u9177\u7684\u5b87\u5b99\u3002\n',
    u'createTime': 1493656176,
    u'range': u'2362-2454',
    u'reviewId': u'35927572_6Q8EAgpjs',
    u'type': 1,
    u'userVid': 35927572}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5317\u4eac \u6d77\u6dc0',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLCkmMqib0k6FPKMCu7pKELJAsha5WQTZKxIEVztFRSFwK0929crCyriavPmiaoJmibadUBkkv2aSszpibQ/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u749e\u6a80',
     u'userVid': 12257535},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 13,
    u'content': u'69',
    u'createTime': 1494492895,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 7,
    u'readingTime': 16368,
    u'reviewId': u'12257535_6PndoAvFM',
    u'startReadingTime': 1490961656,
    u'type': 3,
    u'userVid': 12257535},
   u'reviewCount': 0,
   u'reviewId': u'12257535_6PndoAvFM',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 12257535,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u73b0\u5728\u7684\u6211\u4eec\u770b\u5f85\u5929\u5802\uff0c\u548c\u6211\u4eec\u4e00\u767e\u5e74\u540e\u770b\u5f85\u73b0\u5728\u7684\u6c11\u4e3b\uff0c\u4f1a\u4e0d\u4f1a\u662f\u7c7b\u4f3c\u7684\u60ca\u8bb6\uff1f\u6709\u8da3\u6781\u4e86\u3002',
    u'createTime': 1491473557,
    u'range': u'',
    u'reviewId': u'12257535_6Pwe9PHLz',
    u'star': 100,
    u'type': 4,
    u'userVid': 12257535,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypNkldGK3YWqQibpb3UJswuZyOdssZjWMAYtS5AKQvRCia7YDvWcu0Yn9wzanLThzmicILic0RdfmQCF7vYbAszDqEj8/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Vivi',
     u'userVid': 16315963},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u5317\u4eac',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EFicElHLxI19LMotKa7KLM1HSiaL50ic2KwAUCDohQm5by8qJ0wJIfTg7icO5WGNz3eNyibKFIaoQuoC1YdiaSfL68Ysg/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6708\u8ff7\u6d25\u6e21',
     u'userVid': 7700456},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 9,
    u'content': u'100',
    u'createTime': 1494490989,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 38,
    u'readingTime': 54497,
    u'reviewId': u'7700456_6Ols4DkHz',
    u'startReadingTime': 1487339888,
    u'type': 3,
    u'userVid': 7700456},
   u'reviewCount': 0,
   u'reviewId': u'7700456_6Ols4DkHz',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 7700456,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'1850\u5e74\uff0c\u5168\u7403\u6709\u8d85\u8fc790%\u7684\u4eba\u662f\u519c\u6c11\uff0c\u800c\u4e0d\u7ba1\u662f\u5728\u6052\u6cb3\u3001\u5c3c\u7f57\u6cb3\u8fd8\u662f\u957f\u6c5f\u6cbf\u5cb8\uff0c\u90fd\u6ca1\u6709\u4eba\u77e5\u9053\u84b8\u6c7d\u673a\u3001\u94c1\u8def\u6216\u7535\u62a5\u7ebf\u3002\u7136\u800c\u5728\u66fc\u5f7b\u65af\u7279\u548c\u4f2f\u660e\u7ff0\uff0c\u4e00\u5c0f\u7fa4\u9886\u5bfc\u7740\u5de5\u4e1a\u9769\u547d\u7684\u5de5\u7a0b\u5e08\u3001\u653f\u6cbb\u5bb6\u548c\u91d1\u878d\u5bb6\uff0c\u5c31\u5df2\u7ecf\u51b3\u5b9a\u4e86\u8fd990%\u519c\u6c11\u7684\u547d\u8fd0\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 11,
    u'content': u'\u5927\u591a\u6570\u4eba\u90fd\u4e0d\u6e05\u695a\u4e16\u754c\u5c06\u8981\u53d1\u751f\u4ec0\u4e48\u6837\u7684\u53d8\u5316\uff0c\u8fd9\u4e9b\u6280\u672f\u4e5f\u7684\u786e\u4e5f\u638c\u63e1\u5728\u5c11\u6570\u4eba\u7684\u624b\u4e2d',
    u'createTime': 1488414444,
    u'isPrivate': 0,
    u'range': u'40655-40761',
    u'reviewId': u'7700456_6OEn00CXk',
    u'type': 1,
    u'userVid': 7700456,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2Iyhm0k7mCYEjkdicDMaX8yVUCrxSs0K3SZDnicOIyeCvTskYkwtqeoax60CoLU30jddW3KCiczt6ibdG618H1gytXict/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'susu',
     u'userVid': 11828665},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypMB3fI1c37mfftxvqtdrNBIKA4BHfBepEvrwrjQOrzwicS37bNKjlJuEoPBWH5h47BnmJXicJ4reWZzaoaHhqssEP/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u5931\u3002',
     u'userVid': 15125510,
     u'vDesc': u'\u968f\u6027\u81ea\u7531\u6de1\u7136\u606c\u9759'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1RmB1ZiaxJc1NOK8jLhfLX2TCAfC0rSib97TUOOiamQmNjEYeNejJccMCMD77tptxPib9qC9LBmlv9hp/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u7b11\u770b\u98ce\u4e91\uff08\u5b59\u8fdc\u5fe0\uff09',
     u'userVid': 37411103,
     u'vDesc': u'\u4e0d\u7ecf\u4e00\u756a\u5bd2\u5f7b\u9aa8\uff0c\u600e\u5f97\u6885\u82b1\u6251\u9f3b\u9999\uff1f'}],
   u'location': u'\u5409\u6797 \u957f\u6625',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypMB3fI1c37mfftxvqtdrNBIKA4BHfBepEvrwrjQOrzwicS37bNKjlJuEoPBWH5h47BnmJXicJ4reWZzaoaHhqssEP/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u5931\u3002',
     u'userVid': 15125510,
     u'vDesc': u'\u968f\u6027\u81ea\u7531\u6de1\u7136\u606c\u9759'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'85',
    u'createTime': 1494483370,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 61,
    u'readingTime': 59252,
    u'reviewId': u'15125510_6PeW3nSE0',
    u'startReadingTime': 1490491367,
    u'type': 3,
    u'userVid': 15125510},
   u'reviewCount': 0,
   u'reviewId': u'15125510_6PeW3nSE0',
   u'signature': u'\u72ec\u7acb\u7684\u4eba\u683c\u3002\u72ec\u7acb\u7684\u601d\u60f3\u3002',
   u'totalReadingTime': 0,
   u'vid': 15125510,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u5982\u679c\u60f3\u8ba9\u4eba\u76f8\u4fe1\u67d0\u4e9b\u5047\u60f3\u5b9e\u4f53\uff0c\u6bd4\u5982\u795e\u6216\u56fd\u5bb6\uff0c\u5c31\u8981\u8ba9\u4ed6\u4eec\u727a\u7272\u4e00\u4e9b\u6709\u4ef7\u503c\u7684\u4e1c\u897f\u3002\u727a\u7272\u4ee4\u4eba\u8d8a\u75db\u82e6\uff0c\u4ed6\u4eec\u5c31\u8d8a\u4f1a\u76f8\u4fe1\u727a\u7272\u5949\u732e\u7684\u5bf9\u8c61\u786e\u5b9e\u5b58\u5728\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 13,
    u'content': u'\u4eba\u7684\u52a3\u6839\u6027\uff0c\u5b81\u613f\u81ea\u6b3a\u6b3a\u4eba\uff0c\u4e00\u9519\u5230\u5e95\uff0c\u4e5f\u4e0d\u613f\u610f\u627f\u8ba4\u9519\u8bef\u53bb\u6539\u6b63\uff0c\u6216\u8bb8\u662f\u56e0\u4e3a\u6709\u8fc7\u4ed8\u51fa\uff0c\u4e5f\u6216\u8bb8\u53ea\u662f\u4e0d\u613f\u610f\u627f\u8ba4\u81ea\u5df1\u7684\u611a\u8822\u3002\u5c31\u50cf\u90a3\u4e9b\u6ca1\u6709\u4e86\u7231\u8fd8\u5728\u4e00\u8d77\u7684\u604b\u4eba\u4eec\uff0c\u4e92\u76f8\u6298\u78e8\u7740\u3001\u75db\u82e6\u7740\uff0c\u660e\u660e\u5634\u91cc\u8bf4\u7740\u8981\u5206\u5f00\uff0c\u5374\u8fd8\u662f\u4e00\u76f4\u575a\u6301\u7740\uff0c\u8bf4\u4ec0\u4e48\u820d\u4e0d\u5f97\uff0c\u786e\u5b9e\u662f\u820d\u4e0d\u5f97\uff0c\u4e0d\u8fc7\u662f\u820d\u4e0d\u5f97\u81ea\u5df1\u7684\u4ed8\u51fa\u800c\u975e\u604b\u4eba\uff0c\u603b\u89c9\u5f97\u81ea\u5df1\u5df2\u7ecf\u4ed8\u51fa\u5f88\u591a\uff0c\u4e0d\u613f\u610f\u81ea\u5df1\u4ed8\u51fa\u5c31\u6b64\u6d6a\u8d39\uff0c\u4fbf\u4e00\u76f4\u6b7b\u8017\u7740\uff0c\u6700\u540e\u8017\u5230\u4e86\u7edd\u671b\uff0c\u6ee1\u8eab\u75b2\u60eb\uff0c\u624d\u653e\u4e0b\uff0c\u4e0d\u6562\u518d\u7231\u518d\u4ed8\u51fa\uff0c\u51c6\u5907\u597d\u81ea\u5df1\u6210\u4e3a\u4e0b\u4e00\u6bb5\u604b\u60c5\u7684\u5438\u8840\u9b3c\uff0c\u5faa\u73af\u5f80\u590d\u3002',
    u'createTime': 1494184847,
    u'htmlContent': u'',
    u'isPrivate': 0,
    u'range': u'23280-23344',
    u'reviewId': u'15125510_6QhXEuQ9I',
    u'type': 1,
    u'userVid': 15125510,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u798f\u5efa \u798f\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypMEtp3c9pXwEsMft4nEvS2PlkZufe3H3zDszmbmhuvMiaETk5jKficJuABnh8DAKYcXricbicr974qB0g/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'DreDam',
     u'userVid': 16831199},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 18,
    u'content': u'98',
    u'createTime': 1494483234,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 67,
    u'readingTime': 49503,
    u'reviewId': u'16831199_6PUEZ7ddh',
    u'startReadingTime': 1492861340,
    u'type': 3,
    u'userVid': 16831199},
   u'reviewCount': 0,
   u'reviewId': u'16831199_6PUEZ7ddh',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 16831199,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u4e0d\u8bba\u662f\u5b97\u6559\u6781\u7aef\u4e3b\u4e49\u3001\u7b2c\u4e09\u4e16\u754c\u7684\u72ec\u88c1\u4e3b\u4e49\u8fd8\u662f\u7b80\u5355\u7684\u5a5a\u59fb\u89e6\u7901\uff0c\u6309\u7167\u73b0\u4ee3\u6027\u89c2\u70b9\uff0c\u51e0\u4e4e\u4efb\u4f55\u516c\u5171\u6216\u79c1\u4eba\u7684\u95ee\u9898\u90fd\u80fd\u7528\u201c\u628a\u997c\u505a\u5927\u201d\u6765\u89e3\u51b3\u3002\u50cf\u5df4\u57fa\u65af\u5766\u6216\u57c3\u53ca\u8fd9\u6837\u7684\u56fd\u5bb6\uff0c\u53ea\u8981\u80fd\u7ef4\u6301\u4eae\u773c\u7684\u7ecf\u6d4e\u589e\u957f\u7387\uff0c\u4eba\u6c11\u5c31\u80fd\u4eab\u53d7\u5230\u79c1\u5bb6\u8f66\u548c\u51b0\u7bb1\u7b49\u5b9e\u60e0\uff0c\u8d70\u4e0a\u4e16\u4fd7\u7684\u5e78\u798f\u9053\u8def\uff0c\u800c\u4e0d\u4f1a\u968f\u7740\u5b97\u6559\u6781\u7aef\u4e3b\u4e49\u8005\u8d77\u821e\u3002\u540c\u6837\uff0c\u50cf\u521a\u679c\u6216\u7f05\u7538\u8fd9\u6837\u7684\u56fd\u5bb6\uff0c\u5982\u679c\u7ecf\u6d4e\u589e\u957f\uff0c\u5c31\u80fd\u4ea7\u751f\u5bcc\u88d5\u7684\u4e2d\u4ea7\u9636\u7ea7\u4f5c\u4e3a\u81ea\u7531\u6c11\u4e3b\u7684\u57fa\u77f3\u3002\u81f3\u4e8e\u592b\u59bb\u5931\u548c\u8fd9\u79cd\u95ee\u9898\uff0c\u53ea\u8981\u80fd\u4e70\u5957\u66f4\u5927\u7684\u623f\u5b50\uff08\u4e0d\u7528\u6324\u5728\u4e00\u4e2a\u72ed\u5c0f\u7684\u623f\u95f4\uff09\u3001\u4e70\u53f0\u6d17\u7897\u673a\uff08\u4e0d\u7528\u5435\u7740\u8be5\u8f6e\u5230\u8c01\u6d17\u7897\uff09\u3001\u6bcf\u5468\u8fdb\u884c\u4e24\u6b21\u6602\u8d35\u7684\u5a5a\u59fb\u54a8\u8be2\uff0c',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 10,
    u'content': u'\u5728\u73b0\u4ee3\u6027\u89c2\u70b9\u770b\u6765\uff0c\u201c\u628a\u997c\u505a\u6cd5\u201d\u5373\u7528\u66f4\u5927\u7684\u5229\u606f\u6765\u906e\u76d6\u773c\u524d\u7684\u77db\u76fe\u3002\n',
    u'createTime': 1493706114,
    u'range': u'6295-6537',
    u'reviewId': u'16831199_6Q9x5UIFt',
    u'type': 1,
    u'userVid': 16831199}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5THRhceFiaTqTiaL7iaqtJtVQIHZRgdgskXdM5U4q1g2NZHsFhTCAibAcJSTxkMYyWLwjr5A4jeCN2fEn/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'GJ',
     u'userVid': 30222904},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypPTOthKOEOukemf6t06QdMKPUSicVic09OKzWcNfGeTz4EVpibwvnoWeWHRrCHmOBhcaKD66BM88rlIXOFVrcDBXah/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Wang   Pu\u270c\ufe0f',
     u'userVid': 30000501,
     u'vDesc': u'   Put down everything!'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EHIXde4XPVNUoXS0hYFvVB3Tl1HFCV6lh3oanNaauWrEqURXpvJt8zrMEWib9ibloRclAR9IichbPQJg/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u5c0f\u56db',
     u'userVid': 9557068,
     u'vDesc': u'\u8bfb\u4e66\uff0c\u4ea4\u53cb\uff0c\u53bb\u65c5\u884c\u3002\u4e66\u53cb\u53ef\u52a0\u5fae:410324981'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2Iyhm0k7mCYEjkdicDMaX8yVUCrxSs0K3SZDnicOIyeCvTskYkwtqeoax60CoLU30jddW3KCiczt6ibdG618H1gytXict/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'susu',
     u'userVid': 11828665},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/PiajxSqBRaEJeWZM15WRg1kniciayO519vwdbicOd29YoCj1f7DbjZCxb1BIbGENmZEpHmkCBzAj7G6JIJJvofxSbA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'wowhy',
     u'userVid': 8309018},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/NrpzR3Ku5JRa2LdsyiaWVPZJIXDZdksdeTnr2l7tvLdN6VUgg0x8vnVPajltjNhNG8HJPUw4QcVicAgdjsYops92pZV33h1ialib/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u65b9\u5347',
     u'userVid': 24904322,
     u'vDesc': u'\u4e0e\u6709\u809d\u80c6\u4eba\u5171\u4e8b\uff0c\u4ece\u65e0\u5b57\u53e5\u5904\u8bfb\u4e66\u3002'},
    {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypOteWy0jU4ERibvqxJHe3C0htUk66wS5opMQX0gzOWTakSplnib3iaEBhBCqvicqVHf8jUichUGHx5rtYuPV4Gz9SA7w/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6a59\u5c0f\u55b5\U0001f34e',
     u'userVid': 20536569}],
   u'location': u'\u4e0a\u6d77 \u6d66\u4e1c\u65b0\u533a',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLBLT60jeHmaBZVRHMT2tWzSfJaf17TNcmBdGsfl9BZEiamxVUrGsuUDyyp65OYcftl8srXWM87eauQ/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Sunny',
     u'userVid': 19515614,
     u'vDesc': u'\U0001f47c\u5929\u4f7f\u7231\u7f8e\u4e3d\U0001f47c'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 16,
    u'content': u'93',
    u'createTime': 1494482191,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 187,
    u'readingTime': 49979,
    u'reviewId': u'19515614_6OzMLa9eV',
    u'startReadingTime': 1488154043,
    u'type': 3,
    u'userVid': 19515614},
   u'reviewCount': 0,
   u'reviewId': u'19515614_6OzMLa9eV',
   u'signature': u'\u7231\u8bfb\u4e66\u3001\u7231\u65c5\u884c\u3001\u7231\u751f\u6d3b\u3001\u7231\u81ea\u7531\u7684\u8bbe\u8ba1\u5e08',
   u'totalReadingTime': 0,
   u'vid': 19515614,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'\u4e2d\u4e16\u7eaa\u6b27\u6d32\uff0c\u5929\u4e3b\u6559\u6559\u4f1a\u5c31\u8ba4\u4e3a\u4e0a\u5e1d\u4e0d\u559c\u6b22\u5bcc\u4eba\u3002\u8036\u7a23\u66fe\u8bf4\uff0c\u8d22\u4e3b\u901a\u8fc7\u5929\u5802\u4e4b\u95e8\u6bd4\u9a86\u9a7c\u7a7f\u8fc7\u9488\u773c\u8fd8\u96be\u3002\u800c\u4e3a\u4e86\u8ba9\u5bcc\u4eba\u4e5f\u80fd\u8fdb\u5165\u5929\u5802\u4e4b\u95e8\uff0c\u6559\u4f1a\u9f13\u52b1\u4ed6\u4eec\u8981\u591a\u591a\u5949\u732e\uff0c\u5e76\u5a01\u80c1\u4ed6\u4eec\uff0c\u4e0d\u90a3\u4e48\u505a\u7684\u8bdd\u5c31\u4f1a\u5728\u5730\u72f1\u91cc\u88ab\u70e7\u6b7b\u3002',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'chapterUid': 9,
    u'content': u'\u6559\u4f1a\u65e2\u9700\u8981\u8ffd\u968f\u8005\uff0c\u4e5f\u9700\u8981\u94b1\u505a\u652f\u6491\u3002\u501f\u7740\u7a77\u4eba\u548c\u5bcc\u4eba\u7684\u5bf9\u7acb\uff0c\u7f16\u51fa\u8fd9\u4e48\u4e00\u5219\u6545\u4e8b\uff0c\u7b80\u76f4\u5c31\u662f\u4e00\u77f3\u4e8c\u9e1f\uff01\u7ecf\u6d4e\u5b66\u4e0a\u7684\u201c\u5171\u8d62\u201d\uff01\u53ef\u662f\u4ed4\u7ec6\u89c2\u5bdf\uff0c\u6559\u4f1a\u624d\u662f\u771f\u6b63\u7684\u5927\u8d62\u5bb6\uff01\n',
    u'createTime': 1492001652,
    u'range': u'4162-4285',
    u'reviewId': u'19515614_6PFwB5tTH',
    u'type': 1,
    u'userVid': 19515614}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5e7f\u4e1c \u5e7f\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EHzORfDmskSv1ufXWZECB9PFN4HUCejmHKx3lZxoBgHMItgEzT7ssDMQYIrOSMkcZHXfAon8adgOfDzZg5sqyyZ/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'peter\u6797\u6dd1\u5f6c',
     u'userVid': 3513789},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 18,
    u'content': u'100',
    u'createTime': 1494478844,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 1,
    u'readingTime': 41953,
    u'reviewId': u'3513789_6OM4db0yf',
    u'startReadingTime': 1488851634,
    u'type': 3,
    u'userVid': 3513789},
   u'reviewCount': 0,
   u'reviewId': u'3513789_6OM4db0yf',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 3513789,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u8fd8\u662f\u86ee\u503c\u5f97\u4e00\u8bfb\u7684\u4e00\u672c\u4e66\uff0c\u4e66\u672c\u63cf\u8ff0\u7684\u672a\u6765\u4e16\u754c\u786e\u5b9e\u8d85\u4e4e\u60f3\u8c61\uff0c\u6211\u4eec\u53ef\u80fd\u6210\u4e86\u534a\u4eba\u534a\u673a\u5668\u7684\u8d85\u7ea7\u751f\u7269\uff0c\u5927\u90e8\u5206\u4eba\u53ef\u80fd\u53d8\u5f97\u4e00\u65e0\u662f\u5904\uff0c\u6709\u94b1\u5c31\u80fd\u53d8\u6210\u8d85\u7ea7\u751f\u7269\uff0c\u800c\u73b0\u5728\u7684\u793e\u4f1a\u4f26\u7406\u53ef\u80fd\u4e5f\u4f1a\u5d29\u584c\u3002',
    u'createTime': 1494379491,
    u'range': u'',
    u'reviewId': u'3513789_6Qlo7b0yI',
    u'star': 100,
    u'topicRanges': [u'0-0'],
    u'type': 4,
    u'userVid': 3513789,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u65e5\u672c',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8utR8icPku6Bq4zrcDbsolWlBqlwyOaxaesK9XhwQiaqkQVA53h4aDAZFHw8HicOiaOfVBOdGziaUeKLCv4JQo3IllZak/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Yuemi\U0001f60a',
     u'userVid': 19319430},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 18,
    u'content': u'100',
    u'createTime': 1494478778,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 13,
    u'readingTime': 43838,
    u'reviewId': u'19319430_6P4QRM4Lt',
    u'startReadingTime': 1489918612,
    u'type': 3,
    u'userVid': 19319430},
   u'reviewCount': 0,
   u'reviewId': u'19319430_6P4QRM4Lt',
   u'signature': u'\u8eab\u662f\u83e9\u63d0\u6811\uff0c\u5fc3\u5982\u660e\u955c\u53f0\uff0c\u65f6\u65f6\u52e4\u62c2\u62ed\uff0c\u83ab\u4f7f\u60f9\u5c18\u57c3\u3002',
   u'totalReadingTime': 0,
   u'vid': 19319430,
   u'wonderReview': {u'_fljmask': 0,
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u53ef\u4ee5\u8bf4\u662f\u300a\u4eba\u7c7b\u7b80\u53f2\u300b\u6700\u540e\u4e24\u7ae0\u7684\u52a0\u6df1\u7248\u3002\u7ee7\u7eed\u5bf9\u4eba\u5de5\u667a\u80fd\u4e0e\u751f\u7269\u5de5\u7a0b\u8fdb\u884c\u5206\u6790\u3002\u9884\u6d4b\u7684\u672a\u6765\u5c06\u662f\u8d85\u4eba\u53d6\u4ee3\u6211\u4eec\u8fd9\u4e9b\u5e73\u51e1\u7684\u667a\u4eba\u3002\n\u8bfb\u5b8c\u4ee5\u540e\u6211\u89c9\u5f97\uff0c\u90a3\u4e48\u6211\u4eec\u53c8\u4e3a\u4f55\u8981\u62fc\u4e86\u547d\u7684\u53bb\u594b\u6597\u5462\uff1f\u4e0d\u5982\u628a\u66f4\u591a\u7684\u7cbe\u529b\u4e0e\u65f6\u95f4\u7559\u7ed9\u73b0\u5728\u966a\u4f34\u5728\u8eab\u8fb9\u7684\uff0c\u91cd\u8981\u7684\u4eba\u3002\u4e0d\u6c42\u8363\u534e\u5bcc\u8d35\uff0c\u53ea\u613f\u73b0\u4e16\u5b89\u7a33\uff0c\u6709\u4f60\u6709\u6211\u3002\n',
    u'createTime': 1494388658,
    u'reviewId': u'19319430_6Qly7zcr5',
    u'star': 80,
    u'type': 4,
    u'userVid': 19319430}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [{u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TFHfRWUI4icWvHb6bfLWu28DxwZiaObtrq1Sz4CZVDyG1Wejs8cNgEibanriaGpP78cwicoQiakqO3KfjC/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'Thomas Chen2',
     u'userVid': 15126554,
     u'vDesc': u'\u9ed8\u66f0TC'}],
   u'location': u'\u5317\u4eac \u4e30\u53f0',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5THfad4PCWUbWmC4nbaxpuc19NzgkRK8XaYbp0IObWIjLCozznYAdJfhrJYLicNkokuAlTpBD2Et7s/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u660eFTCoding',
     u'userVid': 2408402},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 18,
    u'content': u'100',
    u'createTime': 1494478615,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 170,
    u'readingTime': 30504,
    u'reviewId': u'2408402_6OKwmZ0sV',
    u'startReadingTime': 1488763830,
    u'type': 3,
    u'userVid': 2408402},
   u'reviewCount': 0,
   u'reviewId': u'2408402_6OKwmZ0sV',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 2408402,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u8fd9\u4e66\u6ca1\u6709\u9884\u60f3\u7684\u90a3\u4e48\u597d\uff5e\u4e66\u540d\u786e\u5b9e\u6bd4\u8f83\u5438\u5f15\u773c\u7403\uff0c\u53ef\u4ee5\u5f53\u6210\u4eba\u7c7b\u54f2\u5b66\u601d\u60f3\u53d1\u5c55\u53f2\u6765\u770b\uff5e\u8fd9\u4e66\u4e2d\u95f4\u4ee5\u524d\u6211\u89c9\u5f97\u8fd8\u53ef\u4ee5\uff0c\u4f46\u662f\u5230\u540e\u9762\uff5e\u770b\u7684\u51fa\u6765\u4f5c\u8005\u662f\u4e2a\u5f88\u5d07\u5c1a\u8ba1\u7b97\u673a\u6280\u672f\u7684\u4eba\uff0c\u57fa\u672c\u4e0a\u6240\u6709\u4e1c\u897f\u90fd\u7528\u7b97\u6cd5\u548c\u4eba\u5de5\u667a\u80fd\u6765\u8c08\uff5e\u800c\u4e14\u592a\u5f3a\u8c03\u6570\u636e\u4e3b\u4e49\u8d85\u8fc7\u4eba\u6587\u4e3b\u4e49\uff0c\u81ea\u7531\u4e3b\u4e49\uff0c\u6c11\u4e3b\u4e3b\u4e49\u2026\u672c\u4eba\u4e5f\u7b97\u5bf9\u8ba1\u7b97\u673a\u6280\u672f\u6bd4\u8f83\u719f\u6089\uff5e\u5b9e\u8bdd\u8fd9\u79cd\u6d77\u9614\u5929\u7a7a\u7684\u60f3\u6765\u60f3\u53bb\uff5e\u8ba9\u6211\u81ea\u5df1\u8bfb\u5c31\u6bd4\u8f83\u7d2f\u4e86',
    u'createTime': 1494379701,
    u'range': u'',
    u'reviewId': u'2408402_6Qlolo0ht',
    u'star': 60,
    u'topicRanges': [u'0-0'],
    u'type': 4,
    u'userVid': 2408402,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'likes': [],
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2Iz4b4DCfxqEW6iaweWfJwkBf2NQgNQxc55rOwJhstbmbBYoyG2MhuG4wU3tERPSJvUtZOaw5tFXgVmwHnYCibj6qz/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u82b1\u521d\u4e09',
     u'userVid': 12347017},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 16,
    u'content': u'100',
    u'createTime': 1494477820,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 97,
    u'readingTime': 35563,
    u'reviewId': u'12347017_6OZCBQLUh',
    u'startReadingTime': 1489621550,
    u'type': 3,
    u'userVid': 12347017},
   u'reviewCount': 0,
   u'reviewId': u'12347017_6OZCBQLUh',
   u'signature': u'\u81ea\u6211\u5224\u65ad',
   u'totalReadingTime': 0,
   u'vid': 12347017,
   u'wonderReview': {u'_fljmask': 0,
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u600e\u4e48\u53ef\u4ee5\u4e09\u5206\u4e4b\u4e8c\u7684\u5185\u5bb9\u90fd\u662f\u7092\u5269\u996d\u5462\uff1f\u4e0d\u8fc7\u4e00\u60f3\u5230\u81ea\u5df1\u53ef\u80fd\u4ee5\u540e\u5c31\u662f\u4e00\u5927\u63a8\u6570\u636e\u5c31\u6709\u70b9\u540e\u6015\uff01\n',
    u'createTime': 1494252530,
    u'reviewId': u'12347017_6Qj9x2qfK',
    u'star': 60,
    u'type': 4,
    u'userVid': 12347017}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5317\u4eac \u901a\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TF1vm0w0GLCkeI0aFzOrRqH4yS482BJgAjNdVoGicyADq1My75jYoEuGOyqqktuEFTQ0gKEtX4vLJ/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u9648\u6d77\u6ce2',
     u'userVid': 33119163,
     u'vDesc': u'\u751f\u800c\u77e5\u4e4b\uff0c\u53bb\u7e41\u5b58\u771f'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 18,
    u'content': u'100',
    u'createTime': 1494477474,
    u'finishReading': 1,
    u'isPrivate': 0,
    u'noteCount': 22,
    u'readingTime': 29004,
    u'reviewId': u'33119163_6OJNe805a',
    u'startReadingTime': 1488722473,
    u'type': 3,
    u'userVid': 33119163},
   u'reviewCount': 0,
   u'reviewId': u'33119163_6OJNe805a',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 33119163,
   u'wonderReview': {u'_fljmask': 0,
    u'abstract': u'',
    u'bookId': u'852290',
    u'bookVersion': 2017835511,
    u'content': u'\u7a0b\u5e8f\u5458\u4e92\u8054\u7f51\u4ece\u4e1a\u8005\u8ba4\u4e3a\u751f\u547d\u5c31\u662f\u6570\u636e\u5904\u7406\uff0c\u505a\u51fa\u5404\u79cd\u51b3\u7b56\uff0c\u7ecf\u6d4e\u5b66\u5bb6\u8ba4\u4e3a\u4eba\u7c7b\u5c31\u662f\u79fb\u52a8\u548c\u5236\u9020\u8d44\u672c\uff0c\u653f\u6cbb\u5bb6\u8ba4\u4e3a\u653f\u6cbb\u5236\u5ea6\u63a8\u8fdb\u4eba\u7c7b\u8fdb\u6b65\uff0c\u80fd\u6e90\u79d1\u5b66\u5bb6\u8ba4\u4e3a\u4eba\u7c7b\u793e\u4f1a\u662f\u968f\u7740\u5bf9\u80fd\u6e90\u7684\u6df1\u5165\u5f00\u53d1\u800c\u53d1\u5c55\u7684\u3002\n\u6211\u770b\u5230\u5404\u79cd\u7684\u89c2\u70b9\uff0c\u8fd9\u624d\u662f\u4eba\u7c7b\u793e\u4f1a\u80fd\u53d1\u5c55\u5230\u4eca\u5929\u9664\u4e86\u5e78\u8fd0\u4ee5\u5916\u7684\u7b2c\u4e00\u56e0\u7d20\uff0c\u5206\u5e03\u5f0f\u7684\uff0c\u4e0d\u65ad\u7edd\u5404\u79cd\u53ef\u80fd\u7684\u53d1\u5c55\u3002',
    u'createTime': 1494377812,
    u'range': u'',
    u'reviewId': u'33119163_6QlmhzuNx',
    u'star': 100,
    u'topicRanges': [u'0-0'],
    u'type': 4,
    u'userVid': 33119163,
    u'wechatSns': 0}},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u798f\u5efa \u798f\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EFicElHLxI19LBQ3jjfrMiaeXcPfcQ32aicAlqYv7vPCfGXCOItpVG0ZOD8LRl311UCsHc9PcUt62jAwyqBu2IZC7m/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6e05\u98ce',
     u'userVid': 5718371},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 14,
    u'content': u'86',
    u'createTime': 1494463548,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 59833,
    u'reviewId': u'5718371_6QccysRFU',
    u'startReadingTime': 1493857698,
    u'type': 3,
    u'userVid': 5718371},
   u'reviewCount': 0,
   u'reviewId': u'5718371_6QccysRFU',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 5718371},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u798f\u5efa \u53a6\u95e8',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM776omBnNOGOZWMu9zSQdZFDbmxdBHPiaIokVUbyMAaLLicRfQ1AcUF9cHXq3MRWW8UVyuLELdj8yicg/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'COPPERHAMMER',
     u'userVid': 1219130},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'1',
    u'createTime': 1494463522,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 1412,
    u'reviewId': u'1219130_6QlHiiI8k',
    u'startReadingTime': 1494397062,
    u'type': 3,
    u'userVid': 1219130},
   u'reviewCount': 0,
   u'reviewId': u'1219130_6QlHiiI8k',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 1219130},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5e7f\u4e1c \u5e7f\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypPdOTUAN2Ua6awB9HibicO5kQn8xkNZmUDv07aicAuRuBZyfOKTWB1AHJiaeicOM9LCPec0GUBhmYs83JVlZQU9F6qIk/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Alex Chan',
     u'userVid': 9070926},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'17',
    u'createTime': 1494463521,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 4177,
    u'reviewId': u'9070926_6Qj9iaqzH',
    u'startReadingTime': 1494252311,
    u'type': 3,
    u'userVid': 9070926},
   u'reviewCount': 0,
   u'reviewId': u'9070926_6Qj9iaqzH',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 9070926},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u56db\u5ddd \u6210\u90fd',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM4JciaSlkKSI4BCo6ZnPQwgtQvM7cJg4RQ19icL0RPxcxoiaQic3RszRPoia2waVfwnKaHBHyvHBbsSrG9Diaw7OS6KT97xYwicYOXpRU/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u90ed\u5f3a',
     u'userVid': 1804957},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'2',
    u'createTime': 1494463517,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 503,
    u'reviewId': u'1804957_6QmRPLn5Z',
    u'startReadingTime': 1494463518,
    u'type': 3,
    u'userVid': 1804957},
   u'reviewCount': 0,
   u'reviewId': u'1804957_6QmRPLn5Z',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 1804957},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u5e7f\u4e1c \u6df1\u5733',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypPhia4j2R3vWSCtXcsWQUAj8hpicoateRxgkicTlBqxribNaz455xCMMJWCRrlc1bWB7fMXNsJIDHk75JlufKokAxiao/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'shi\u2006jing',
     u'userVid': 13107029},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 6,
    u'content': u'20',
    u'createTime': 1494463472,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 1,
    u'readingTime': 17592,
    u'reviewId': u'13107029_6Q3w3Zgfp',
    u'startReadingTime': 1493364368,
    u'type': 3,
    u'userVid': 13107029},
   u'reviewCount': 0,
   u'reviewId': u'13107029_6Q3w3Zgfp',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 13107029},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5317\u4eac \u4e1c\u57ce',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EFicElHLxI19LD8hkwibZglDfzjElFcyTXUQ6UBZ5D4RDwfQmPnRMj7PULDdLicjHvzP7SMgCZCDmsNueSpnFmib8e7/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u4e00\u6367\u6708',
     u'userVid': 23415359},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'3',
    u'createTime': 1494463461,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 7043,
    u'reviewId': u'23415359_6OJfUZon8',
    u'startReadingTime': 1488691958,
    u'type': 3,
    u'userVid': 23415359},
   u'reviewCount': 0,
   u'reviewId': u'23415359_6OJfUZon8',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 23415359},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1VupfE7FZIM5nZVhn5xp2nyJo0bWamnWkzH97aAPGszToYYObF8mU9O8riaGUUfKXEUZfQO0RrZS8/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u' Penda \U0001f43c',
     u'userVid': 4460497},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'18',
    u'createTime': 1494463458,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 16,
    u'readingTime': 5125,
    u'reviewId': u'4460497_6Qks1u6qp',
    u'startReadingTime': 1494326271,
    u'type': 3,
    u'userVid': 4460497},
   u'reviewCount': 0,
   u'reviewId': u'4460497_6Qks1u6qp',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 4460497},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u4e0a\u6d77 \u6d66\u4e1c\u65b0\u533a',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Q3auHgzwzM4vgDP01E26KMvibzxFHbtStN0QX3lpTBM4AwcFamPDqxGbntiado0Qprp28mFblm6HQ1pV84VtlSYQ/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Joey Yang',
     u'userVid': 8231511},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 5,
    u'content': u'11',
    u'createTime': 1494463450,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 12859,
    u'reviewId': u'8231511_6PXaaJ8bg',
    u'startReadingTime': 1493003512,
    u'type': 3,
    u'userVid': 8231511},
   u'reviewCount': 0,
   u'reviewId': u'8231511_6PXaaJ8bg',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 8231511},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u4e0a\u6d77',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EFicElHLxI19LA7YO850Qq2KpEMZPicjknP5jekMBxJianicZYuyM9ia8hdPg9dXvVlcZUtp4qz3ia8LpIbBa976GtPwc/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u8a00\u8a00\u4eec\u7684\u7238\u7238',
     u'userVid': 1550110},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 5,
    u'content': u'25',
    u'createTime': 1494463432,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 4687,
    u'reviewId': u'1550110_6QjRGa4a8',
    u'startReadingTime': 1494292975,
    u'type': 3,
    u'userVid': 1550110},
   u'reviewCount': 0,
   u'reviewId': u'1550110_6QjRGa4a8',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 1550110},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6d77\u5357 \u6d77\u53e3',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/u2TQic5FGG8Qn51mO8QVC0OK5JxqAlQgKAJNZhfpgnNp98PGCTOFSgMkAxvJCvdib8ayIQibCvlO1Z5o0aXqict2LhptSFjrKKgW/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5218\u632f',
     u'userVid': 16314929},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 5,
    u'content': u'17',
    u'createTime': 1494463420,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 12275,
    u'reviewId': u'16314929_6OxhAor3Q',
    u'startReadingTime': 1488011883,
    u'type': 3,
    u'userVid': 16314929},
   u'reviewCount': 0,
   u'reviewId': u'16314929_6OxhAor3Q',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 16314929},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u5e7f\u4e1c \u6df1\u5733',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/XpytRujVypPTOthKOEOukQydBSoF1SrBpy5Mk3FLSQUduiaTIz5a8FXw6icMa8t9KqjgpeQAdRSIP2Mr2lzY3iaiaf60a8w9dwnia/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u55bb\u5029',
     u'userVid': 13857651},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 5,
    u'content': u'25',
    u'createTime': 1494463381,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 7472,
    u'reviewId': u'13857651_6OMmTC3Bl',
    u'startReadingTime': 1488868751,
    u'type': 3,
    u'userVid': 13857651},
   u'reviewCount': 0,
   u'reviewId': u'13857651_6OMmTC3Bl',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 13857651},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u8fbd\u5b81 \u6c88\u9633',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/ajNVdqHZLLA2mTVF8uiarvqRPvWSPYFiaIlQzicg5sTvrXWuXF2rqOnJv3yib87GDsSzGib0UV0xRdwJAIfhYFq8WNw/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'leey',
     u'userVid': 13100663},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 9,
    u'content': u'27',
    u'createTime': 1494463354,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 15,
    u'readingTime': 18171,
    u'reviewId': u'13100663_6Ox8sMdbS',
    u'startReadingTime': 1488003525,
    u'type': 3,
    u'userVid': 13100663},
   u'reviewCount': 0,
   u'reviewId': u'13100663_6Ox8sMdbS',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 13100663},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/mqdGpCvhkokoAR5lAzBiafVPiaUjCtsUnhxxUSFqZJf7q4XkG3zFAMqB21BZ2NZOTq0iaEU5OZhAhIz192bgPRgRyP9xDatiaGicn/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\U0001f340 \u9ea6\u7530\U0001f340',
     u'userVid': 12055872},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'12',
    u'createTime': 1494463352,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 3233,
    u'reviewId': u'12055872_6QjPjdiGV',
    u'startReadingTime': 1494290804,
    u'type': 3,
    u'userVid': 12055872},
   u'reviewCount': 0,
   u'reviewId': u'12055872_6QjPjdiGV',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 12055872},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5317\u4eac \u6d77\u6dc0',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EFt1GsaGNQzfKEVhKkKx8iaGVV1sLod53T1cBLG2M5jpTDCzyJhfvxqmb6kCJgEameIB20ojFQLesA/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'isV': 0,
     u'name': u'\u6731\u6210',
     u'userVid': 12109050,
     u'vDesc': u'\u8bf8\u6cd5\u4ece\u7f18\u8d77\u5982\u6765\u8bf4\u662f\u56e0 \u5f7c\u6cd5\u56e0\u7f18\u5c3d\u662f\u5927\u6c99\u95e8\u8bf4'},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 6,
    u'content': u'30',
    u'createTime': 1494463340,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 13079,
    u'reviewId': u'12109050_6OnCOtYBR',
    u'startReadingTime': 1487463328,
    u'type': 3,
    u'userVid': 12109050},
   u'reviewCount': 0,
   u'reviewId': u'12109050_6OnCOtYBR',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 12109050},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5317\u4eac \u671d\u9633',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1cCQOZCtKgYPd4WvQetdfnUZX6cCRCGSDjFFlHZr3P2rmiaX2Tzich0ZnKPibWhJkORMpUbbAG3E0em/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u82cf\u6587\u9510',
     u'userVid': 20926108},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 6,
    u'content': u'38',
    u'createTime': 1494463305,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 26152,
    u'reviewId': u'20926108_6OVReAzUv',
    u'startReadingTime': 1489407747,
    u'type': 3,
    u'userVid': 20926108},
   u'reviewCount': 0,
   u'reviewId': u'20926108_6OVReAzUv',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 20926108},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6c5f\u897f \u5357\u660c',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1frskRlf20kNPkyJUf21sy3iboJsPVlk4uovtyia98uHpicHCEdRzaFboAv5KzV1oAtEGAp9pRSsNQp/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5e86\uff01\u5e86\uff01\u5e86\uff01',
     u'userVid': 11905439},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'9',
    u'createTime': 1494463271,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 4373,
    u'reviewId': u'11905439_6Pnzu2nqh',
    u'startReadingTime': 1490981892,
    u'type': 3,
    u'userVid': 11905439},
   u'reviewCount': 0,
   u'reviewId': u'11905439_6Pnzu2nqh',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 11905439},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5c71\u4e1c \u9752\u5c9b',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uuibibVZpBCUg1RLclG4bLkxCWWMaD5OI6bGjWRKxwP1pibFn5kPpnlU8DlDzHys9pMMpOlWA59Cy1RBYRbNEY6gpp/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5f20\u715c\xaeZahi',
     u'userVid': 1161233},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'18',
    u'createTime': 1494463269,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 12,
    u'readingTime': 8211,
    u'reviewId': u'1161233_6PJcjnlKW',
    u'startReadingTime': 1492210268,
    u'type': 3,
    u'userVid': 1161233},
   u'reviewCount': 0,
   u'reviewId': u'1161233_6PJcjnlKW',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 1161233},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5e7f\u4e1c \u5e7f\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uv4wgsjPQF90m55icyem7yorLFjyOcUk8L9OPPgXEd9uW7XYoyJJq7nhiajKwObcE0kOZzqL8icich1SSKVC3yOd4u9/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u653f',
     u'userVid': 1007030},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 9,
    u'content': u'47',
    u'createTime': 1494463256,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 4,
    u'readingTime': 28740,
    u'reviewId': u'1007030_6Ot5yfB68',
    u'startReadingTime': 1487773657,
    u'type': 3,
    u'userVid': 1007030},
   u'reviewCount': 0,
   u'reviewId': u'1007030_6Ot5yfB68',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 1007030},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EGASoztic7xgf4LBA82Wzo6zZY13CfwgS0IgABsKm5WShvNrJkmdicPWugaPwh2rSHJ0nabnfBmsAnQ/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u963f\u52c7',
     u'userVid': 17837353},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'3',
    u'createTime': 1494463254,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 10,
    u'readingTime': 3535,
    u'reviewId': u'17837353_6Qm7vTcyP',
    u'startReadingTime': 1494421082,
    u'type': 3,
    u'userVid': 17837353},
   u'reviewCount': 0,
   u'reviewId': u'17837353_6Qm7vTcyP',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 17837353},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u9752\u6d77',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/u2TQic5FGG8Qn51mO8QVC0Bes7yU4hWuIJgPr1TXUQyibFOJYGXxhh67HhRsZ5xUR1DUPqY8wic09fx2c8SmQibMlGCupZDey7TT/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u884c\u8005',
     u'userVid': 37024835},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 6,
    u'content': u'34',
    u'createTime': 1494463250,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 16308,
    u'reviewId': u'37024835_6QiWaMP0e',
    u'startReadingTime': 1494240292,
    u'type': 3,
    u'userVid': 37024835},
   u'reviewCount': 0,
   u'reviewId': u'37024835_6QiWaMP0e',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 37024835},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6d59\u6c5f \u676d\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TOZKRglqHsjicsFhj4MWbSuUtbglsnaa9A0T94WRaN1OcmreQzZHbPkb2VovrxlFSPmg0rvV8NhWL/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u8212\u4fca',
     u'userVid': 23413219},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'1',
    u'createTime': 1494463242,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 1248,
    u'reviewId': u'23413219_6QmPlRQqC',
    u'startReadingTime': 1494461244,
    u'type': 3,
    u'userVid': 23413219},
   u'reviewCount': 0,
   u'reviewId': u'23413219_6QmPlRQqC',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 23413219},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6e56\u5317 \u968f\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8uvLibDhaLhiaQDwxzmdciacvlNTQJVz8kOU372uLIe1Ghe0dL3S1dWTF2ZQThcPHrgibpiabHraEzbtbS0iamDldEzKV4/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Sandy',
     u'userVid': 37833287},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'4',
    u'createTime': 1494463235,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 1951,
    u'reviewId': u'37833287_6QixXewQv',
    u'startReadingTime': 1494218104,
    u'type': 3,
    u'userVid': 37833287},
   u'reviewCount': 0,
   u'reviewId': u'37833287_6QixXewQv',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 37833287},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TCR49Vptf1ticePSDYyfYynaicNBweibVugeAicuR4PqOOBa5o1AaYxMVRy98HjwibfH8u5ZicWm2NrZO6/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Tung',
     u'userVid': 16470235},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'5',
    u'createTime': 1494463229,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 1507,
    u'reviewId': u'16470235_6Qmlf29bi',
    u'startReadingTime': 1494433659,
    u'type': 3,
    u'userVid': 16470235},
   u'reviewCount': 0,
   u'reviewId': u'16470235_6Qmlf29bi',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 16470235},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5317\u4eac \u4e30\u53f0',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/PiajxSqBRaELZJ6pFENSrWqt6dNmRU475dYSozViabph17m0lS4e6YUGBVsvCpA5SetZnStPBvIoS5nskr9sfEJQ/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Seele',
     u'userVid': 36832897},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'71',
    u'createTime': 1494463219,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 40922,
    u'reviewId': u'36832897_6Q0NuUx4W',
    u'startReadingTime': 1493209940,
    u'type': 3,
    u'userVid': 36832897},
   u'reviewCount': 0,
   u'reviewId': u'36832897_6Q0NuUx4W',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 36832897},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u4e0a\u6d77 \u666e\u9640',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/PiajxSqBRaEIpFwEicic9gAiaSB3mWSwvDNqF4MVCOv8uXMUC3llHXbowaClrhffN8MHnkPppI4pXAdDnzGY1zlg9Q/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u6ce1\u6ce1',
     u'userVid': 3927441},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 11,
    u'content': u'55',
    u'createTime': 1494463219,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 19,
    u'readingTime': 30637,
    u'reviewId': u'3927441_6Pk3CVyr2',
    u'startReadingTime': 1490782306,
    u'type': 3,
    u'userVid': 3927441},
   u'reviewCount': 0,
   u'reviewId': u'3927441_6Pk3CVyr2',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 3927441},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u5c71\u4e1c \u4e34\u6c82',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/q6R4LBaD3TwrtiaM3e8O71QslIED8okWicydgggibKz9cgib8Hlhtl3M1z4iaxkVcJ1zucWCibNomdntZus84I0CP6cYLJhxlEVwvC/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'Ohlala',
     u'userVid': 8719140},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'10',
    u'createTime': 1494463208,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 1634,
    u'reviewId': u'8719140_6QlTMemVT',
    u'startReadingTime': 1494408497,
    u'type': 3,
    u'userVid': 8719140},
   u'reviewCount': 0,
   u'reviewId': u'8719140_6QlTMemVT',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 8719140},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u6c5f\u82cf \u6cf0\u5dde',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/V0mhkIwf3EFicElHLxI19LCM1OibaliaUjicDaf52GhdAFA1N0ibw08b8YAXyRkntNwC7PRrTKVNWtDv7VXl5uXXlyVZia6cuda4QU/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u5f90\u707f',
     u'userVid': 11838117},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'16',
    u'createTime': 1494463188,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 4163,
    u'reviewId': u'11838117_6QgcxLStm',
    u'startReadingTime': 1494084889,
    u'type': 3,
    u'userVid': 11838117},
   u'reviewCount': 0,
   u'reviewId': u'11838117_6QgcxLStm',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 11838117},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u5185\u8499\u53e4 \u547c\u4f26\u8d1d\u5c14',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IxvcX0MemIZuRg4ebUUf3JgEIbroXdhibicYdHGuicv7ZX6ibdGdAm5MvzY45UFglPwZFjOwuejJXdeQXpJg9EpAost/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u94c9\u6cfd',
     u'userVid': 38422350},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'5',
    u'createTime': 1494463157,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 3877,
    u'reviewId': u'38422350_6OxouhhOC',
    u'startReadingTime': 1488018206,
    u'type': 3,
    u'userVid': 38422350},
   u'reviewCount': 0,
   u'reviewId': u'38422350_6OxouhhOC',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 38422350},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u7f8e\u56fd',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8us8o6wgd6RDc2M3TnJlCZj8En1MqmQbxOkp5NEYqlrkkJYw7djbcGJ6jOmpkUoLt8QCPenclAcRnCRcibj4y2jch/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\u9ec4\u5fd7\u8d85 Jerry',
     u'userVid': 27036950},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 8,
    u'content': u'41',
    u'createTime': 1494463151,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 0,
    u'readingTime': 5377,
    u'reviewId': u'27036950_6Qiim15kc',
    u'startReadingTime': 1494203813,
    u'type': 3,
    u'userVid': 27036950},
   u'reviewCount': 0,
   u'reviewId': u'27036950_6Qiim15kc',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 27036950},
  {u'finishedBookCount': 0,
   u'gender': 1,
   u'location': u'\u4e0a\u6d77 \u6d66\u4e1c\u65b0\u533a',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/FicCThRvK2IyxP2BCjyw5TAe73NUCWb2qkydlXsm8rFDdyHGj2gE9C2OXyfiawYUOEejZqicMeSPwCQ7A2zwJT5bwicNs7oYS0Rq/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'xuyang',
     u'userVid': 22234738},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 3,
    u'content': u'18',
    u'createTime': 1494463142,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 2,
    u'readingTime': 5661,
    u'reviewId': u'22234738_6QjOaBDKg',
    u'startReadingTime': 1494289760,
    u'type': 3,
    u'userVid': 22234738},
   u'reviewCount': 0,
   u'reviewId': u'22234738_6QjOaBDKg',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 22234738},
  {u'finishedBookCount': 0,
   u'gender': 2,
   u'location': u'\u56db\u5ddd \u6210\u90fd',
   u'review': {u'author': {u'avatar': u'http://wx.qlogo.cn/mmopen/Gvv8Rxbd8usODicWicSC7LZk1PoTAdB8ynLANOS1iahfAfic0F0icRPxAK7IzJFyiaakpcnhtTDyxG5Ugr50Q1uic2Lia5ytXHoh1QYL/0',
     u'isFollower': 0,
     u'isFollowing': 0,
     u'name': u'\U0001f48b\u6167\u5d3d',
     u'userVid': 7538756},
    u'book': {u'author': u'\u5c24\u74e6\u5c14\xb7\u8d6b\u62c9\u5229',
     u'bookId': u'852290',
     u'bookStatus': 1,
     u'cover': u'http://wfqqreader.3g.qq.com/cover/290/852290/s_852290.jpg',
     u'format': u'epub',
     u'soldout': 0,
     u'title': u'\u672a\u6765\u7b80\u53f2\uff1a\u4ece\u667a\u4eba\u5230\u667a\u795e',
     u'version': 2017835511},
    u'bookId': u'852290',
    u'chapterIdx': 6,
    u'content': u'32',
    u'createTime': 1494463124,
    u'finishReading': 0,
    u'isPrivate': 0,
    u'noteCount': 1,
    u'readingTime': 27565,
    u'reviewId': u'7538756_6P98pgdyH',
    u'startReadingTime': 1490161882,
    u'type': 3,
    u'userVid': 7538756},
   u'reviewCount': 0,
   u'reviewId': u'7538756_6P98pgdyH',
   u'signature': u'',
   u'totalReadingTime': 0,
   u'vid': 7538756}],
 u'totalCount': 1876}
#朋友阅读排行 url_friend_ranking = 'https://i.weread.qq.com/friend/ranking'#?synckey=1494072246&mine=1' r = requests.get(url_friend_ranking,headers=headers) j = r.json() j
#正在关注的朋友 url_friend_following = 'https://i.weread.qq.com/friend/following'#?synckey=0&syncver=0' r = requests.get(url_friend_following,headers=headers) j = r.json() j
#关注者 url_friend_follower = 'https://i.weread.qq.com/friend/follower'#?synckey=0&syncver=0' r = requests.get(url_friend_follower,headers=headers) j = r.json() j
https://i.weread.qq.com/friend/wechat?synckey=0&detailInfo=0 https://i.weread.qq.com/friend/wechat?synckey=0&detailInfo=1 https://i.weread.qq.com/mp/list?synckey=0 https://i.weread.qq.com/mp/read https://i.weread.qq.com/review/list?listType=7&synckey=1493899702&maxIdx=1476286187&listMode=1 https://i.weread.qq.com/review/list?listType=10&synckey=0&maxIdx=0&count=0&listMode=1 #关注者 url_friend_follower = 'https://i.weread.qq.com/friend/follower'#?synckey=0&syncver=0' r = requests.get(url_friend_follower,headers=headers) j = r.json() j

In [ ]:

ogm

from py2neo.ogm import GraphObject, Property, RelatedTo, RelatedFrom class Book(GraphObject): __primarykey__ = "title" title = Property() tagline = Property() released = Property() producers = RelatedFrom("Person", "PRODUCED") comments = RelatedTo("Comment", "COMMENT") def __lt__(self, other): return self.title < other.title class Person(GraphObject): __primarykey__ = "name" name = Property() born = Property() acted_in = RelatedTo(Movie) directed = RelatedTo(Movie) produced = RelatedTo(Movie) def __lt__(self, other): return self.name < other.name class Comment(GraphObject): date = Property() name = Property() text = Property() subject = RelatedFrom(Movie, "COMMENT") def __init__(self, date, name, text): self.date = date self.name = name self.text = text def __lt__(self, other): return self.date < other.date

In [ ]:
def get_from_api(api,id_):
    r = requests.get(api.format(id_),headers=headers)
    j = r.json()
    return j

In [97]:
class Book(GraphObject):
    __primarykey__ = 'bookId'
    
    bookId = Property()
    author = Property()
    title = Property()
    category = Property()
    tags = Property()
    lastChapterIdx = Property()
    price = Property()
    publishPrice = Property()
    publishTime = Property()
    publisher = Property()
    star = Property()
    recommended = Property()
    totalWords = Property()
    version = Property()
    
    #category = Label()
    
    def __init__(self, bookId):
        self.bookId = bookId
        if self.exists_in_mongo():
            self.get_mongo_data()
        else:
            self.get_api_data()
            self.save_mongo_data()
        self.init_Property()
        self.push()
        
    def get_api_data(self):
        self.book_info = get_book_info(self.bookId)
        self.book_chapterInfos = get_book_chapterInfos(self.bookId)
        self.book_review_list = get_book_review_list(self.bookId)
        
    def init_Property(self):
        self.author = self.book_info['author']
        self.title = self.book_info['title']
        self.category = self.book_info['category']
        self.tags = self.book_info['tags']
        self.lastChapterIdx = self.book_info['lastChapterIdx']
        self.price = self.book_info['price']
        #self.publishPrice = self.book_info['publishPrice']
        #self.publishTime = self.book_info['publishTime']
        self.publisher = self.book_info['publisher']
        #self.star = self.book_info['star']
        self.recommended = self.book_info['recommended']
        self.totalWords = self.book_info['totalWords']
        self.version = self.book_info['version']
        
    def exists_in_mongo(self):
        return books.find_one({'bookId':self.bookId}) != None
    
    def save_mongo_data(self):
        self.mongo_data = {
            '_id':self.bookId,
            'bookId':self.bookId,
            'book_info':self.book_info,
            'book_chapterInfos':self.book_chapterInfos,
            'book_review_list':self.book_review_list,
        }
        books.insert_one(self.mongo_data)
    
    def get_mongo_data(self):
        self.mongo_data = books.find_one({'bookId':self.bookId})
        self.book_info = self.mongo_data['book_info']
        self.book_chapterInfos = self.mongo_data['book_chapterInfos']
        self.book_review_list = self.mongo_data['book_review_list']
        
    def push(self):
        graph.push(self)

In [147]:
class User(GraphObject):
    __primarykey__ = 'userVid'
    
    userVid = Property()
    bookReviewCount = Property()
    booklistCollectCount = Property()
    booklistCount = Property()
    buyCount = Property()
    followerCount = Property()
    followingCount = Property()
    gender = Property()
    likeBookCount = Property()
    location = Property()
    noteBookCount = Property()
    reviewCommentedCount = Property()
    reviewCount = Property()
    totalReadingTime = Property()
    vDesc = Property()
    
    review = RelatedTo('Book','REVIEW')
    comment = RelatedTo('User','COMMENT')
    like_review = RelatedTo('User','LIKE_REVIEW')
    reading = RelatedTo('Book','REDING')
    finish = RelatedTo('Book','FINISH')
    
    def __init__(self, userVid):
        self.userVid = userVid
        if self.exists_in_mongo():
            self.get_mongo_data()
        else:
            self.get_api_data()
            self.save_mongo_data()
        self.init_Property()
        self.book_shelf_link()
        self.push()
        
    def get_api_data(self):
        self.user_profile = get_user_profile(self.userVid)
        self.book_finishreading = get_book_finishreading(self.userVid)
        self.book_shelf_friendsshelf = get_shelf_friendsshelf(self.userVid)
        
    def init_Property(self):
        #self.bookReviewCount = self.user_profile['bookReviewCount']
        #self.booklistCollectCount = self.user_profile['booklistCollectCount']
        #self.booklistCount = self.user_profile['booklistCount']
        #self.buyCount = self.user_profile['buyCount']
        self.followerCount = self.user_profile['followerCount']
        self.followingCount = self.user_profile['followingCount']
        self.gender = self.user_profile['gender']
        #self.likeBookCount = self.user_profile['likeBookCount']
        self.location = self.user_profile['location']
        #self.noteBookCount = self.user_profile['noteBookCount']
        #self.reviewCommentedCount = self.user_profile['reviewCommentedCount']
        #self.reviewCount = self.user_profile['reviewCount']
        self.totalReadingTime = self.user_profile['totalReadingTime']
        self.vDesc = self.user_profile['vDesc']
        
    def exists_in_mongo(self):
        return users.find_one({'userVid':self.userVid}) != None
    
    def save_mongo_data(self):
        self.mongo_data = {
            '_id':self.userVid,
            'userVid':self.userVid,
            'user_profile':self.user_profile,
            'book_finishreading':self.book_finishreading,
            'book_shelf_friendsshelf':self.book_shelf_friendsshelf,
        }
        users.insert_one(self.mongo_data)
    
    def get_mongo_data(self):
        self.mongo_data = users.find_one({'userVid':self.userVid})
        self.user_profile = self.mongo_data['user_profile']
        self.book_finishreading = self.mongo_data['book_finishreading']
        self.book_shelf_friendsshelf = self.mongo_data['book_shelf_friendsshelf']
        
    def push(self):
        graph.push(self)
        
    def book_shelf_link(self):
        bookfinish = self.book_finishreading
        bookreading = list(set(self.book_shelf_friendsshelf)-set(self.book_finishreading))
        for bf in bookfinish:
            bf = int(bf)
            b = Book.select(graph,bf).first()#selector.select('Book').where(bookId=bf).first()
            if not b:
                b = Book(bf)
            self.finish.add(b)
            #self.push()
        for br in bookreading:
            br = int(br)
            b = Book.select(graph,br).first()#selector.select('Book').where(bookId=bf).first()
            if not b:
                b = Book(br)
            #self.reading.add(b)
def book_shelf_link(user): bookfinish = user.book_finishreading bookreading = list(set(user.book_shelf_friendsshelf)-set(user.book_finishreading)) for bf in bookfinish: bf = int(bf) b = Book.select(graph,bf).first()#selector.select('Book').where(bookId=bf).first() if not b: b = Book(bf) user.finish.add(b) #self.push() for br in bookreading: br = int(br) b = Book.select(graph,br).first()#selector.select('Book').where(bookId=bf).first() if not b: b = Book(br) user.reading.add(b) #self.push() user.push()
u = User(7649467) #book_shelf_link(u)
b = Book(852290)
u.review.add(b) u.push()
u.
u = User.select(graph,19130121).first()
u.review.add(b) u.push()
uu = selector.select('User').where(userVid=19130121).first()
uu.a = 123
uu.a
bb= Book.select(graph,828968).first()

In [149]:
booklist = [635838,635938,728774]

In [163]:
def link_for_booklist(booklist):
    for book in booklist:
        b = Book.select(graph,book).first()
        if not b:
            b = Book(book)
        b.get_mongo_data()
        for r in b.book_review_list['reviews']:
            try:
                ruid = r['review']['userVid']
                #r['commentsCount']
                #r['likesCount']
                ru = User.select(graph,ruid).first()
                if not ru:
                    ru = User(ruid)
                ru.review.add(b)
                ru.push()
                for c in r['commentsForList']:
                    cuid = c['author']['userVid']
                    cu = User.select(graph,cuid).first()
                    if not cu:
                        cu = User(cuid)
                    cu.comment.add(ru)
                    cu.push()
                for l in r['likesForList']:
                    luid = l['author']['userVid']
                    lu = User.select(graph,luid).first()
                    if not lu:
                        lu = User(luid)
                    lu.like_review.add(ru)
                    lu.push() 
            except:
                pass
link_for_booklist(booklist)

In [ ]: