├── .gitignore ├── README ├── TODO ├── analyzer ├── find_candidates.pig ├── octo.py ├── octo_sample.py └── run.sh ├── counter ├── crawler ├── .gitignore ├── __init__.py ├── dependencies.txt ├── model │ ├── __init__.py │ ├── base_scraper.py │ ├── crawler.py │ ├── mechanize_page_loader.py │ ├── scrapers.py │ └── selenium_page_loader.py ├── run.py └── test │ ├── __init__.py │ ├── book_scraper_test.py │ ├── fixture │ ├── blank_book_page.html │ ├── blank_reader_page.html │ ├── book.1766670.csv │ ├── full_book_page.html │ └── full_reader_page.html │ ├── page_loader_test.py │ └── reader_scraper_test.py ├── demo-server ├── deploy ├── good_books.csv ├── good_sf_books.csv ├── public ├── images │ └── paper.jpg ├── index.html ├── javascripts │ ├── d3.layout.cloud.js │ ├── d3.v2.js │ ├── jquery-1.8.3.min.js │ └── jquery.csv-0.71.js ├── stylesheets │ ├── bubble.css │ └── doumine.css ├── top_readers.html ├── top_readers.js ├── top_readers_tag.html ├── top_readers_tag.js └── top_sf_readers_tag.html ├── sample_data ├── book.1000067.csv ├── book.1000280.csv ├── book.1000317.csv ├── book.1000445.csv ├── book.1000482.csv ├── book.1000506.csv ├── book.1000687.csv ├── book.1001154.csv ├── book.1001174.csv ├── book.1001204.csv ├── book.1001292.csv ├── book.1001349.csv ├── book.1001389.csv ├── book.1001737.csv ├── book.1001896.csv ├── book.1001920.csv ├── book.1002299.csv ├── book.1002349.csv ├── book.1002474.csv ├── book.1002690.csv ├── book.1003000.csv ├── book.1003136.csv ├── book.1003479.csv ├── book.1003646.csv ├── book.1004118.csv ├── book.1004325.csv ├── book.1004329.csv ├── book.1004554.csv ├── book.1004574.csv ├── book.1004821.csv ├── book.1005193.csv ├── book.1005521.csv ├── book.1005680.csv ├── book.1005813.csv ├── book.1005918.csv ├── book.1006197.csv ├── book.1006214.csv ├── book.1006560.csv ├── book.1006720.csv ├── reader.chrisiron.csv ├── reader.zippo.zero.csv ├── reader.ziq.csv ├── reader.zishy.csv ├── reader.zison.csv ├── reader.zithan.csv ├── reader.zizhao.csv ├── reader.zizon.csv ├── reader.zj12912.csv ├── reader.zj2610.csv ├── reader.zjoenew.csv ├── reader.zju.csv ├── reader.zju_mick.csv ├── reader.zjuhpp.csv ├── reader.zjulyf.csv ├── reader.zjy2091.csv ├── reader.zkbasten.csv ├── reader.zkkpkk.csv ├── reader.zknyy.csv ├── reader.zliaa.csv ├── reader.zlib.csv ├── reader.zlite.csv ├── reader.zlk.csv ├── reader.zlmind.csv ├── reader.zloolz.csv ├── reader.zls.csv ├── reader.zmsleeping.csv ├── reader.znetor.csv ├── reader.zoe11.csv ├── reader.zoechan.csv ├── reader.zoej.csv ├── reader.zoelss.csv ├── reader.zoetantan.csv ├── reader.zongs.csv ├── reader.zoomq.csv ├── reader.zorrow.csv ├── reader.zoufeiyy.csv ├── reader.zoujibing.csv ├── reader.zpijiake.csv ├── reader.zputee.csv ├── reader.zrbcool.csv ├── reader.zrking.csv ├── reader.zrs7_24.csv ├── reader.zshn-222.csv ├── reader.zshtang.csv ├── reader.zshu.csv ├── reader.zsk526.csv ├── reader.zsmickycat.csv ├── reader.ztzt.csv ├── reader.zukhz.csv ├── reader.zuma.csv ├── reader.zuohaocheng.csv ├── reader.zuohy.csv ├── reader.zuojg.csv ├── reader.zuowj.csv ├── reader.zwchen.csv ├── reader.zwp199126.csv ├── reader.zxiaoxiao.csv ├── reader.zxkt2739.csv ├── reader.zxloong.csv ├── reader.zxpan.csv ├── reader.zxustc.csv ├── reader.zxwind.csv ├── reader.zxygentoo.csv ├── reader.zy_best.csv ├── reader.zydudu.csv ├── reader.zyeming.csv ├── reader.zyh26258.csv ├── reader.zyhmat.csv ├── reader.zyn321.csv ├── reader.zypub.csv ├── reader.zyqwendy.csv ├── reader.zyyang.csv ├── reader.zyybiz.csv ├── reader.zz14.csv ├── reader.zz18.csv ├── reader.zz78.csv ├── reader.zz8ss5ww6.csv ├── reader.zzhangjiej.csv ├── reader.zzinit.csv ├── reader.zzky.csv ├── reader.zzsherry.csv ├── reader.zzu7.csv ├── reader.zzy.ll.csv ├── reader.zzyong.csv ├── reader.zzywq.csv ├── reader.zzz_.csv └── reader.zzzzszz.csv ├── spider └── visualizer ├── __init__.py └── top_readers.py /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.pyc 2 | output 3 | data 4 | public/data 5 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigix/DouMine/d39f6f6fe027ae3d6f15f60960718785d817793c/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | == TODO == 2 | Show listed books in corresponding pages 3 | Better crawler: fetch book titles 4 | Better crawler: fetch people locations and nicknames 5 | -------------------------------------------------------------------------------- /analyzer/find_candidates.pig: -------------------------------------------------------------------------------- 1 | %declare INPUT_DIR 'data' 2 | 3 | raw_readers = LOAD '$INPUT_DIR/reader.*.csv' USING PigStorage(',', '-tagsource') AS (source:chararray, book_id:int); 4 | readers = FOREACH (FILTER raw_readers BY book_id > 0) GENERATE STRSPLIT(source, '\\.', 3).$1 AS reader_id, book_id; 5 | 6 | /* load books 7 | raw_books = LOAD '$INPUT_DIR/book.*.csv' USING PigStorage(',', '-tagsource') AS (source:chararray, reader_id:chararray); 8 | books = FOREACH (FILTER raw_books BY reader_id != 'ID') GENERATE (int) STRSPLIT(source, '\\.', 3).$1 AS book_id, reader_id; 9 | */ 10 | 11 | /* find most read books 12 | book_reading_grouped = GROUP books BY book_id; 13 | book_reading_counts = FOREACH book_reading_grouped GENERATE group, COUNT(books) AS readings; 14 | book_reading_counts_ordered = LIMIT (ORDER book_reading_counts BY readings DESC) 10; 15 | DUMP book_reading_counts_ordered; 16 | */ 17 | 18 | good_books = LOAD 'good_sf_books.csv' USING PigStorage(',') AS (book_id:int, book_title:chararray); 19 | good_book_readings = JOIN readers BY book_id, good_books BY book_id; 20 | good_book_reading_grouped = GROUP good_book_readings BY reader_id; 21 | good_book_reading_counts = FOREACH good_book_reading_grouped GENERATE group, COUNT(good_book_readings) AS read_good_books; 22 | top_readers = LIMIT (ORDER good_book_reading_counts BY read_good_books DESC) 1000; 23 | 24 | /* 25 | DUMP top_readers; 26 | */ 27 | 28 | STORE top_readers INTO 'output'; -------------------------------------------------------------------------------- /analyzer/octo_sample.py: -------------------------------------------------------------------------------- 1 | ### triangular.py 2 | # server 3 | source = dict(zip(range(100), range(100))) 4 | 5 | def final(key, value): 6 | print key, value 7 | 8 | # client 9 | def mapfn(key, value): 10 | for i in range(value + 1): 11 | yield key, i 12 | 13 | def reducefn(key, value): 14 | return sum(value) 15 | -------------------------------------------------------------------------------- /analyzer/run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | rm -rf output && \ 4 | pig -x local -f analyzer/find_candidates.pig -l /dev/null 5 | -------------------------------------------------------------------------------- /counter: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | ls -l data/ | grep -c "book.*.csv" 3 | ls -l data/ | grep -c "reader.*.csv" 4 | 5 | -------------------------------------------------------------------------------- /crawler/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.pyc 2 | *.pyc 3 | -------------------------------------------------------------------------------- /crawler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigix/DouMine/d39f6f6fe027ae3d6f15f60960718785d817793c/crawler/__init__.py -------------------------------------------------------------------------------- /crawler/dependencies.txt: -------------------------------------------------------------------------------- 1 | lxml==2.3beta1 2 | mechanize==0.2.5 3 | nose==1.1.2 4 | -------------------------------------------------------------------------------- /crawler/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigix/DouMine/d39f6f6fe027ae3d6f15f60960718785d817793c/crawler/model/__init__.py -------------------------------------------------------------------------------- /crawler/model/base_scraper.py: -------------------------------------------------------------------------------- 1 | import re 2 | import os 3 | import random 4 | 5 | from lxml import etree 6 | 7 | from mechanize_page_loader import MechanizePageLoader 8 | from selenium_page_loader import SeleniumPageLoader 9 | 10 | class BaseScraper: 11 | page_loader = SeleniumPageLoader() 12 | # page_loader = MechanizePageLoader() 13 | 14 | def __init__(self, id, basedir): 15 | self.id = id 16 | self.basedir = basedir 17 | self.load_existing_data() 18 | 19 | def need_scrape(self): 20 | return self._results == None 21 | 22 | def load_existing_data(self): 23 | if(not os.access(self.csv_file_path(), os.F_OK)): 24 | self._results = None 25 | else: 26 | csv_file = open(self.csv_file_path()) 27 | csv_content = csv_file.read() 28 | csv_file.close() 29 | self._results = csv_content.strip().split("\n")[1:] 30 | 31 | def csv_file_path(self): 32 | return self.basedir + "/" + self._scraper_name() + "." + str(self.id) + ".csv" 33 | 34 | def persistent(self): 35 | if(not os.access(self.basedir, os.F_OK)): 36 | os.makedirs(self.basedir) 37 | all_results = self.results() 38 | 39 | csv_file = open(self.csv_file_path(), "w") 40 | csv_file.write("ID\n") 41 | for result in all_results: 42 | csv_file.write(result + "\n") 43 | csv_file.close() 44 | 45 | def spawn(self): 46 | results = map(self._spawn, self.results()) 47 | random.shuffle(results) 48 | return results 49 | 50 | def results(self): 51 | if(self.need_scrape()): 52 | self._results = self._actual_fetch_results() 53 | return self._results 54 | 55 | def _actual_fetch_results(self): 56 | has_more_items = True 57 | start = 0 58 | result = [] 59 | 60 | while(has_more_items): 61 | page_content = self.load_page(start) 62 | # Ignore item if 404 error happens 63 | if(page_content == None): 64 | break 65 | 66 | page_dom = etree.HTML(page_content) 67 | links = page_dom.xpath(self._data_link()) 68 | data_urls = map(lambda link: link.get("href"), links) 69 | result_ids = map(lambda url: re.search("http://book.douban.com/\w+/(.+)/", url).group(1), data_urls) 70 | 71 | has_more_items = len(result_ids) > 0 72 | 73 | for an_id in result_ids: 74 | result.append(an_id) 75 | 76 | start += self._page_size() 77 | 78 | return result 79 | 80 | def load_page(self, start): 81 | return BaseScraper.page_loader.load(self._url(start)) 82 | 83 | # def set_page_loader(self, page_loader): 84 | # self.page_loader = page_loader 85 | -------------------------------------------------------------------------------- /crawler/model/crawler.py: -------------------------------------------------------------------------------- 1 | import time 2 | 3 | from collections import deque 4 | 5 | from scrapers import BookScraper, ReaderScraper 6 | 7 | class Crawler: 8 | def __init__(self, book_id, limit=1000, basedir="data"): 9 | self.limit = limit 10 | self.basedir = basedir 11 | self.scrapers_queue = deque() 12 | self.scrapers_queue.append(BookScraper(book_id, self.basedir)) 13 | 14 | def run(self): 15 | while(self.limit > 0 and len(self.scrapers_queue) > 0): 16 | scraper = self.scrapers_queue.pop() 17 | if(scraper.need_scrape()): 18 | self.limit -= 1 19 | scraper.persistent() 20 | for new_scraper in scraper.spawn(): 21 | if(isinstance(new_scraper, ReaderScraper)): 22 | self.scrapers_queue.append(new_scraper) 23 | else: 24 | if(len(self.scrapers_queue) > 1000): 25 | continue 26 | self.scrapers_queue.appendleft(new_scraper) 27 | print "[" + time.asctime() + "] Scraped " + scraper.id + " at " + str(self.limit) + ". In queue: " + str(len(self.scrapers_queue)) -------------------------------------------------------------------------------- /crawler/model/mechanize_page_loader.py: -------------------------------------------------------------------------------- 1 | from urllib2 import HTTPError 2 | 3 | import mechanize 4 | import cookielib 5 | 6 | browser = mechanize.Browser() 7 | cj = cookielib.LWPCookieJar() 8 | browser.set_cookiejar(cj) 9 | browser.set_handle_equiv(True) 10 | browser.set_handle_gzip(True) 11 | browser.set_handle_redirect(True) 12 | browser.set_handle_referer(True) 13 | browser.set_handle_robots(False) 14 | browser.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(), max_time=1) 15 | browser.addheaders = [ 16 | ('User-agent', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_7) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11'), 17 | ('Connection', 'keep-alive'), 18 | ('Accept', 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'), 19 | ('Accept-Encoding', 'gzip,deflate,sdch'), 20 | ('Accept-Language', 'en-US,en;q=0.8'), 21 | ('Accept-Charset', 'ISO-8859-1,utf-8;q=0.7,*;q-0.3') 22 | ] 23 | 24 | class MechanizePageLoader: 25 | def load(self, url): 26 | try: 27 | response = browser.open(url) 28 | return response.read() 29 | except HTTPError as e: 30 | if(int(e.code) == 404): 31 | return None 32 | raise e 33 | -------------------------------------------------------------------------------- /crawler/model/scrapers.py: -------------------------------------------------------------------------------- 1 | from base_scraper import BaseScraper 2 | 3 | class ReaderScraper(BaseScraper): 4 | def books(self): 5 | return self.results() 6 | 7 | def _scraper_name(self): 8 | return "reader" 9 | 10 | def _spawn(self, book_id): 11 | return BookScraper(book_id, self.basedir) 12 | 13 | def _url(self, start): 14 | return "http://book.douban.com/people/" + str(self.id) + "/collect?start=" + str(start) 15 | 16 | def _data_link(self): 17 | return "//div[@class='item']//div[@class='pic']//a" 18 | 19 | def _page_size(self): 20 | return 15 21 | 22 | class BookScraper(BaseScraper): 23 | def readers(self): 24 | return self.results() 25 | 26 | def _scraper_name(self): 27 | return "book" 28 | 29 | def _spawn(self, reader_id): 30 | return ReaderScraper(reader_id, self.basedir) 31 | 32 | def _url(self, start): 33 | return "http://book.douban.com/subject/" + str(self.id) + "/collections?start=" + str(start) 34 | 35 | def _data_link(self): 36 | return "//div[@id='collections_tab']//div[@class='sub_ins']//div[@class='pl2']//a" 37 | 38 | def _page_size(self): 39 | return 20 -------------------------------------------------------------------------------- /crawler/model/selenium_page_loader.py: -------------------------------------------------------------------------------- 1 | from selenium import webdriver 2 | from selenium.webdriver.common.keys import Keys 3 | 4 | class SeleniumPageLoader: 5 | def __init__(self): 6 | fp = webdriver.FirefoxProfile() 7 | fp.set_preference("permissions.default.image", 2) 8 | self.driver = webdriver.Firefox(firefox_profile=fp) 9 | 10 | def __del__(self): 11 | self.driver.close() 12 | 13 | def load(self, url): 14 | try: 15 | self.driver.get(url) 16 | return self.driver.page_source 17 | except Exception as e: 18 | self.driver.close() 19 | raise e 20 | -------------------------------------------------------------------------------- /crawler/run.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | 4 | from model.crawler import Crawler 5 | 6 | Crawler('4262627', 10, os.path.dirname(__file__) + "/../data").run() 7 | -------------------------------------------------------------------------------- /crawler/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigix/DouMine/d39f6f6fe027ae3d6f15f60960718785d817793c/crawler/test/__init__.py -------------------------------------------------------------------------------- /crawler/test/book_scraper_test.py: -------------------------------------------------------------------------------- 1 | import os 2 | import shutil 3 | 4 | from ..model.scrapers import BookScraper 5 | 6 | class TestBookScraper: 7 | def setUp(self): 8 | self.basedir = "/tmp/books" 9 | self.clean_temp_directory() 10 | self.scraper = BookScraper(1766670, self.basedir) 11 | self.scraper.set_page_loader(StubBookPageLoader()) 12 | 13 | def test_scrape_reader_ids_of_given_book(self): 14 | # When 15 | reader_ids = self.scraper.readers() 16 | 17 | # Then 18 | assert len(reader_ids) == 40 19 | assert reader_ids[0] == "53516791" 20 | 21 | def test_persistent_reader_ids_of_given_book(self): 22 | # When 23 | self.scraper.persistent() 24 | 25 | # Then 26 | assert len(os.listdir(self.basedir)) == 1 27 | 28 | def test_spawn_book_scrapers(self): 29 | # When 30 | reader_scrapers = self.scraper.spawn() 31 | 32 | # Then 33 | assert len(reader_scrapers) == 40 34 | 35 | def test_load_scraped_data_when_initiation(self): 36 | # Given 37 | self.copy_fixture_file("book.1766670.csv") 38 | 39 | # When 40 | scraper = BookScraper(1766670, self.basedir) 41 | 42 | # Then 43 | assert len(scraper._results) == 32 44 | assert scraper._results[0] == "53516791" 45 | 46 | def copy_fixture_file(self, filename): 47 | if(not os.access(self.basedir, os.F_OK)): 48 | os.makedirs(self.basedir) 49 | shutil.copyfile(os.path.dirname(__file__) + "/fixture/" + filename, self.basedir + "/" + filename) 50 | 51 | def clean_temp_directory(self): 52 | shutil.rmtree(self.basedir, True) 53 | 54 | class StubBookPageLoader: 55 | def load(self, url): 56 | file_name = "blank_book_page.html" if url.endswith("?start=40") else "full_book_page.html" 57 | return open(os.path.dirname(__file__) + "/fixture/" + file_name).read() 58 | -------------------------------------------------------------------------------- /crawler/test/fixture/book.1766670.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 53516791 3 | cuillgln 4 | 3148817 5 | acgism 6 | 57666883 7 | 3911047 8 | z_y 9 | overminder 10 | raturs 11 | 49873193 12 | xiaofanjiang 13 | jkdirac 14 | b-tag 15 | anderslin 16 | yoyomyo 17 | 48954122 18 | 48559452 19 | 42607360 20 | risent 21 | tingleshao 22 | linjunhalida 23 | minounou 24 | ychael 25 | 3668641 26 | ManofPhysics 27 | legendsland 28 | NalaGinrut 29 | 3373640 30 | 3071679 31 | wshuyi 32 | buluzhai 33 | 2062738 34 | -------------------------------------------------------------------------------- /crawler/test/page_loader_test.py: -------------------------------------------------------------------------------- 1 | from ..model.page_loader import PageLoader 2 | 3 | class TestPageLoader: 4 | def test_return_none_if_page_does_not_exist(self): 5 | page_loader = PageLoader() 6 | assert page_loader.load("http://www.douban.com/people/does_not_exist") == None -------------------------------------------------------------------------------- /crawler/test/reader_scraper_test.py: -------------------------------------------------------------------------------- 1 | import os 2 | import shutil 3 | 4 | from ..model.scrapers import ReaderScraper 5 | 6 | class TestReaderScraper: 7 | def setUp(self): 8 | self.basedir = "/tmp/readers" 9 | self.clean_temp_directory() 10 | self.scraper = ReaderScraper(41904640, self.basedir) 11 | self.scraper.set_page_loader(StubReaderPageLoader()) 12 | 13 | def test_scrape_book_ids_of_given_reader(self): 14 | # When 15 | book_ids = self.scraper.books() 16 | 17 | # Then 18 | assert len(book_ids) == 30 19 | assert book_ids[0] == '4199761' 20 | 21 | def test_persistent_book_ids_of_given_book(self): 22 | # When 23 | self.scraper.persistent() 24 | 25 | # Then 26 | assert len(os.listdir(self.basedir)) == 1 27 | assert open(self.basedir + "/" + "reader.41904640.csv").read().split("\n")[1] == '4199761' 28 | 29 | def test_spawn_book_scrapers(self): 30 | # When 31 | book_scrapers = self.scraper.spawn() 32 | 33 | # Then 34 | assert len(book_scrapers) == 30 35 | 36 | def clean_temp_directory(self): 37 | shutil.rmtree(self.basedir, True) 38 | 39 | 40 | class StubReaderPageLoader: 41 | def load(self, url): 42 | file_name = "blank_reader_page.html" if url.endswith("?start=30") else "full_reader_page.html" 43 | return open(os.path.dirname(__file__) + "/fixture/" + file_name).read() 44 | -------------------------------------------------------------------------------- /demo-server: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd `dirname $0`/public 3 | 4 | # use default port if called without args 5 | PORT=2600 6 | if [[ $1 =~ ^[0-9]+$ ]] 7 | then PORT=$1 8 | fi 9 | 10 | echo "Starting local http server (ctrl-c to exit)" 11 | python -m SimpleHTTPServer $PORT 12 | -------------------------------------------------------------------------------- /deploy: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ssh doumine@thoughtworkers.org "rm -rf ~/doumine.thoughtworkers.org/public" && \ 4 | scp -r ./public doumine@thoughtworkers.org:~/doumine.thoughtworkers.org/public 5 | -------------------------------------------------------------------------------- /good_books.csv: -------------------------------------------------------------------------------- 1 | 4262627, Refactoring 2 | 1229923, Refactoring 3 | 4199741, Clean Code 4 | 1230036, Test Driven Development 5 | 3324516, Implementation Patterns 6 | 1917706, Refactoring to Patterns 7 | 1148282, SICP 8 | 9 | 1477390, Code Complete 10 | 1140457, Agile Software Development 11 | 1052241, Design Patterns 12 | 1219912, Design Patterns Explained 13 | 5387401, Art of Unix Programming 14 | 1629512, DDD 15 | 16 | 4826290, Patterns of Enterprise Application Architecture 17 | 1230559, Patterns of Enterprise Application Architecture 18 | 1289151, Core J2EE Patterns 19 | 2065284, Release It 20 | 21 | 1102259, The Mythical Man-Month 22 | 1152111, Pragmatic Programmers 23 | 3558788, Productive Programmers 24 | 1099376, XP Explained 25 | 4031959, ThoughtWorks Anthology 26 | 2580604, Continuous Integration 27 | 6862062, Continuous Delivery -------------------------------------------------------------------------------- /good_sf_books.csv: -------------------------------------------------------------------------------- 1 | 2567698, 三体 2 | 1258490, Foundation 3 | 1394364, The Hitchhiker's Guide to the Galaxy 4 | 3191247, Good Omens 5 | 1187842, Ted Jiang 6 | 1192090, 球状闪电 7 | 1140727, Ender's Game 8 | 1772786, True Names 9 | 1140726, 计算中的上帝 10 | 1865765, Childhood's End 11 | 1481311, Dune 12 | 2064688, 异乡异客 13 | 2340609, 2001 Space Odessy 14 | 1005207, 神经浪游者 15 | 1140729, 星船伞兵 16 | 1424636, 环形世界 17 | 1959340, Time Machine 18 | 2042631, Frankenstein 19 | 1085470, 海底两万里 20 | 1292322, 群星我的归宿 -------------------------------------------------------------------------------- /public/images/paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigix/DouMine/d39f6f6fe027ae3d6f15f60960718785d817793c/public/images/paper.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/javascripts/d3.layout.cloud.js: -------------------------------------------------------------------------------- 1 | // Word cloud layout by Jason Davies, http://www.jasondavies.com/word-cloud/ 2 | // Algorithm due to Jonathan Feinberg, http://static.mrfeinberg.com/bv_ch03.pdf 3 | (function(exports) { 4 | function cloud() { 5 | var size = [256, 256], 6 | text = cloudText, 7 | font = cloudFont, 8 | fontSize = cloudFontSize, 9 | rotate = cloudRotate, 10 | padding = cloudPadding, 11 | spiral = archimedeanSpiral, 12 | words = [], 13 | timeInterval = Infinity, 14 | event = d3.dispatch("word", "end"), 15 | timer = null, 16 | cloud = {}; 17 | 18 | cloud.start = function() { 19 | var board = zeroArray((size[0] >> 5) * size[1]), 20 | bounds = null, 21 | n = words.length, 22 | i = -1, 23 | tags = [], 24 | data = words.map(function(d, i) { 25 | return { 26 | text: text.call(this, d, i), 27 | font: font.call(this, d, i), 28 | rotate: rotate.call(this, d, i), 29 | size: ~~fontSize.call(this, d, i), 30 | padding: cloudPadding.call(this, d, i) 31 | }; 32 | }).sort(function(a, b) { return b.size - a.size; }); 33 | 34 | if (timer) clearInterval(timer); 35 | timer = setInterval(step, 0); 36 | step(); 37 | 38 | return cloud; 39 | 40 | function step() { 41 | var start = +new Date, 42 | d; 43 | while (+new Date - start < timeInterval && ++i < n && timer) { 44 | d = data[i]; 45 | d.x = (size[0] * (Math.random() + .5)) >> 1; 46 | d.y = (size[1] * (Math.random() + .5)) >> 1; 47 | cloudSprite(d, data, i); 48 | if (place(board, d, bounds)) { 49 | tags.push(d); 50 | event.word(d); 51 | if (bounds) cloudBounds(bounds, d); 52 | else bounds = [{x: d.x + d.x0, y: d.y + d.y0}, {x: d.x + d.x1, y: d.y + d.y1}]; 53 | // Temporary hack 54 | d.x -= size[0] >> 1; 55 | d.y -= size[1] >> 1; 56 | } 57 | } 58 | if (i >= n) { 59 | cloud.stop(); 60 | event.end(tags, bounds); 61 | } 62 | } 63 | } 64 | 65 | cloud.stop = function() { 66 | if (timer) { 67 | clearInterval(timer); 68 | timer = null; 69 | } 70 | return cloud; 71 | }; 72 | 73 | cloud.timeInterval = function(x) { 74 | if (!arguments.length) return timeInterval; 75 | timeInterval = x == null ? Infinity : x; 76 | return cloud; 77 | }; 78 | 79 | function place(board, tag, bounds) { 80 | var perimeter = [{x: 0, y: 0}, {x: size[0], y: size[1]}], 81 | startX = tag.x, 82 | startY = tag.y, 83 | maxDelta = Math.sqrt(size[0] * size[0] + size[1] * size[1]), 84 | s = spiral(size), 85 | dt = Math.random() < .5 ? 1 : -1, 86 | t = -dt, 87 | dxdy, 88 | dx, 89 | dy; 90 | 91 | while (dxdy = s(t += dt)) { 92 | dx = ~~dxdy[0]; 93 | dy = ~~dxdy[1]; 94 | 95 | if (Math.min(dx, dy) > maxDelta) break; 96 | 97 | tag.x = startX + dx; 98 | tag.y = startY + dy; 99 | 100 | if (tag.x + tag.x0 < 0 || tag.y + tag.y0 < 0 || 101 | tag.x + tag.x1 > size[0] || tag.y + tag.y1 > size[1]) continue; 102 | // TODO only check for collisions within current bounds. 103 | if (!bounds || !cloudCollide(tag, board, size[0])) { 104 | if (!bounds || collideRects(tag, bounds)) { 105 | var sprite = tag.sprite, 106 | w = tag.width >> 5, 107 | sw = size[0] >> 5, 108 | lx = tag.x - (w << 4), 109 | sx = lx & 0x7f, 110 | msx = 32 - sx, 111 | h = tag.y1 - tag.y0, 112 | x = (tag.y + tag.y0) * sw + (lx >> 5), 113 | last; 114 | for (var j = 0; j < h; j++) { 115 | last = 0; 116 | for (var i = 0; i <= w; i++) { 117 | board[x + i] |= (last << msx) | (i < w ? (last = sprite[j * w + i]) >>> sx : 0); 118 | } 119 | x += sw; 120 | } 121 | delete tag.sprite; 122 | return true; 123 | } 124 | } 125 | } 126 | return false; 127 | } 128 | 129 | cloud.words = function(x) { 130 | if (!arguments.length) return words; 131 | words = x; 132 | return cloud; 133 | }; 134 | 135 | cloud.size = function(x) { 136 | if (!arguments.length) return size; 137 | size = [+x[0], +x[1]]; 138 | return cloud; 139 | }; 140 | 141 | cloud.font = function(x) { 142 | if (!arguments.length) return font; 143 | font = d3.functor(x); 144 | return cloud; 145 | }; 146 | 147 | cloud.rotate = function(x) { 148 | if (!arguments.length) return rotate; 149 | rotate = d3.functor(x); 150 | return cloud; 151 | }; 152 | 153 | cloud.text = function(x) { 154 | if (!arguments.length) return text; 155 | text = d3.functor(x); 156 | return cloud; 157 | }; 158 | 159 | cloud.spiral = function(x) { 160 | if (!arguments.length) return spiral; 161 | spiral = spirals[x + ""] || x; 162 | return cloud; 163 | }; 164 | 165 | cloud.fontSize = function(x) { 166 | if (!arguments.length) return fontSize; 167 | fontSize = d3.functor(x); 168 | return cloud; 169 | }; 170 | 171 | cloud.padding = function(x) { 172 | if (!arguments.length) return padding; 173 | padding = d3.functor(x); 174 | return cloud; 175 | }; 176 | 177 | return d3.rebind(cloud, event, "on"); 178 | } 179 | 180 | function cloudText(d) { 181 | return d.text; 182 | } 183 | 184 | function cloudFont() { 185 | return "serif"; 186 | } 187 | 188 | function cloudFontSize(d) { 189 | return Math.sqrt(d.value); 190 | } 191 | 192 | function cloudRotate() { 193 | return (~~(Math.random() * 6) - 3) * 30; 194 | } 195 | 196 | function cloudPadding() { 197 | return 1; 198 | } 199 | 200 | // Fetches a monochrome sprite bitmap for the specified text. 201 | // Load in batches for speed. 202 | function cloudSprite(d, data, di) { 203 | if (d.sprite) return; 204 | c.clearRect(0, 0, (cw << 5) / ratio, ch / ratio); 205 | var x = 0, 206 | y = 0, 207 | maxh = 0, 208 | n = data.length; 209 | di--; 210 | while (++di < n) { 211 | d = data[di]; 212 | c.save(); 213 | c.font = ~~((d.size + 1) / ratio) + "px " + d.font; 214 | var w = c.measureText(d.text + "m").width * ratio, 215 | h = d.size << 1; 216 | if (d.rotate) { 217 | var sr = Math.sin(d.rotate * cloudRadians), 218 | cr = Math.cos(d.rotate * cloudRadians), 219 | wcr = w * cr, 220 | wsr = w * sr, 221 | hcr = h * cr, 222 | hsr = h * sr; 223 | w = (Math.max(Math.abs(wcr + hsr), Math.abs(wcr - hsr)) + 0x1f) >> 5 << 5; 224 | h = ~~Math.max(Math.abs(wsr + hcr), Math.abs(wsr - hcr)); 225 | } else { 226 | w = (w + 0x1f) >> 5 << 5; 227 | } 228 | if (h > maxh) maxh = h; 229 | if (x + w >= (cw << 5)) { 230 | x = 0; 231 | y += maxh; 232 | maxh = 0; 233 | } 234 | if (y + h >= ch) break; 235 | c.translate((x + (w >> 1)) / ratio, (y + (h >> 1)) / ratio); 236 | if (d.rotate) c.rotate(d.rotate * cloudRadians); 237 | c.fillText(d.text, 0, 0); 238 | c.restore(); 239 | d.width = w; 240 | d.height = h; 241 | d.xoff = x; 242 | d.yoff = y; 243 | d.x1 = w >> 1; 244 | d.y1 = h >> 1; 245 | d.x0 = -d.x1; 246 | d.y0 = -d.y1; 247 | x += w; 248 | } 249 | var pixels = c.getImageData(0, 0, (cw << 5) / ratio, ch / ratio).data, 250 | sprite = []; 251 | while (--di >= 0) { 252 | d = data[di]; 253 | var w = d.width, 254 | w32 = w >> 5, 255 | h = d.y1 - d.y0, 256 | p = d.padding; 257 | // Zero the buffer 258 | for (var i = 0; i < h * w32; i++) sprite[i] = 0; 259 | x = d.xoff; 260 | if (x == null) return; 261 | y = d.yoff; 262 | var seen = 0, 263 | seenRow = -1; 264 | for (var j = 0; j < h; j++) { 265 | for (var i = 0; i < w; i++) { 266 | var k = w32 * j + (i >> 5), 267 | m = pixels[((y + j) * (cw << 5) + (x + i)) << 2] ? 1 << (31 - (i % 32)) : 0; 268 | if (p) { 269 | if (j) sprite[k - w32] |= m; 270 | if (j < w - 1) sprite[k + w32] |= m; 271 | m |= (m << 1) | (m >> 1); 272 | } 273 | sprite[k] |= m; 274 | seen |= m; 275 | } 276 | if (seen) seenRow = j; 277 | else { 278 | d.y0++; 279 | h--; 280 | j--; 281 | y++; 282 | } 283 | } 284 | d.y1 = d.y0 + seenRow; 285 | d.sprite = sprite.slice(0, (d.y1 - d.y0) * w32); 286 | } 287 | } 288 | 289 | // Use mask-based collision detection. 290 | function cloudCollide(tag, board, sw) { 291 | sw >>= 5; 292 | var sprite = tag.sprite, 293 | w = tag.width >> 5, 294 | lx = tag.x - (w << 4), 295 | sx = lx & 0x7f, 296 | msx = 32 - sx, 297 | h = tag.y1 - tag.y0, 298 | x = (tag.y + tag.y0) * sw + (lx >> 5), 299 | last; 300 | for (var j = 0; j < h; j++) { 301 | last = 0; 302 | for (var i = 0; i <= w; i++) { 303 | if (((last << msx) | (i < w ? (last = sprite[j * w + i]) >>> sx : 0)) 304 | & board[x + i]) return true; 305 | } 306 | x += sw; 307 | } 308 | return false; 309 | } 310 | 311 | function cloudBounds(bounds, d) { 312 | var b0 = bounds[0], 313 | b1 = bounds[1]; 314 | if (d.x + d.x0 < b0.x) b0.x = d.x + d.x0; 315 | if (d.y + d.y0 < b0.y) b0.y = d.y + d.y0; 316 | if (d.x + d.x1 > b1.x) b1.x = d.x + d.x1; 317 | if (d.y + d.y1 > b1.y) b1.y = d.y + d.y1; 318 | } 319 | 320 | function collideRects(a, b) { 321 | return a.x + a.x1 > b[0].x && a.x + a.x0 < b[1].x && a.y + a.y1 > b[0].y && a.y + a.y0 < b[1].y; 322 | } 323 | 324 | function archimedeanSpiral(size) { 325 | var e = size[0] / size[1]; 326 | return function(t) { 327 | return [e * (t *= .1) * Math.cos(t), t * Math.sin(t)]; 328 | }; 329 | } 330 | 331 | function rectangularSpiral(size) { 332 | var dy = 4, 333 | dx = dy * size[0] / size[1], 334 | x = 0, 335 | y = 0; 336 | return function(t) { 337 | var sign = t < 0 ? -1 : 1; 338 | // See triangular numbers: T_n = n * (n + 1) / 2. 339 | switch ((Math.sqrt(1 + 4 * sign * t) - sign) & 3) { 340 | case 0: x += dx; break; 341 | case 1: y += dy; break; 342 | case 2: x -= dx; break; 343 | default: y -= dy; break; 344 | } 345 | return [x, y]; 346 | }; 347 | } 348 | 349 | // TODO reuse arrays? 350 | function zeroArray(n) { 351 | var a = [], 352 | i = -1; 353 | while (++i < n) a[i] = 0; 354 | return a; 355 | } 356 | 357 | var cloudRadians = Math.PI / 180, 358 | cw = 1 << 11 >> 5, 359 | ch = 1 << 11, 360 | canvas, 361 | ratio = 1; 362 | 363 | if (typeof document !== "undefined") { 364 | canvas = document.createElement("canvas"); 365 | canvas.width = 1; 366 | canvas.height = 1; 367 | ratio = Math.sqrt(canvas.getContext("2d").getImageData(0, 0, 1, 1).data.length >> 2); 368 | canvas.width = (cw << 5) / ratio; 369 | canvas.height = ch / ratio; 370 | } else { 371 | // node-canvas support 372 | var Canvas = require("canvas"); 373 | canvas = new Canvas(cw << 5, ch); 374 | } 375 | 376 | var c = canvas.getContext("2d"), 377 | spirals = { 378 | archimedean: archimedeanSpiral, 379 | rectangular: rectangularSpiral 380 | }; 381 | c.fillStyle = "red"; 382 | c.textAlign = "center"; 383 | 384 | exports.cloud = cloud; 385 | })(typeof exports === "undefined" ? d3.layout || (d3.layout = {}) : exports); 386 | -------------------------------------------------------------------------------- /public/stylesheets/bubble.css: -------------------------------------------------------------------------------- 1 | text { 2 | font: 10px sans-serif; 3 | } 4 | -------------------------------------------------------------------------------- /public/stylesheets/doumine.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: url('../images/paper.jpg'); 3 | font-family: "Titillium Web", sans-serif; 4 | color: #412C16; 5 | width: 1200px; 6 | } 7 | 8 | svg { 9 | float: left; 10 | margin-top: 10px; 11 | } 12 | 13 | .books { 14 | float: left; 15 | width: 230px; 16 | margin: 10px 0 0 5px; 17 | font-size: 15px; 18 | } 19 | 20 | .books p { 21 | margin: 0; 22 | font-size: 17px; 23 | } 24 | 25 | .books ul { 26 | list-style: none; 27 | } 28 | 29 | .books a { 30 | text-decoration: none; 31 | color: #60401F; 32 | } 33 | 34 | .books a:hover { 35 | color:#005580; 36 | text-decoration:underline; 37 | } -------------------------------------------------------------------------------- /public/top_readers.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Bubble Chart 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/top_readers.js: -------------------------------------------------------------------------------- 1 | var r = 1024, 2 | format = d3.format(",d"), 3 | fill = d3.scale.category20c(); 4 | 5 | var bubble = d3.layout.pack() 6 | .sort(null) 7 | .size([r, r]) 8 | .padding(1.5); 9 | 10 | var vis = d3.select("#chart").append("svg") 11 | .attr("width", r * 1.5) 12 | .attr("height", r) 13 | .attr("class", "bubble"); 14 | 15 | d3.json("data/top_readers.json", function(json) { 16 | var node = vis.selectAll("g.node") 17 | .data(bubble.nodes(classes(json)) 18 | .filter(function(d) { return !d.children; })) 19 | .enter().append("g") 20 | .attr("class", "node") 21 | .attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; }); 22 | 23 | node.append("title") 24 | .text(function(d) { return d.className + ": " + format(d.value); }); 25 | 26 | node.append("circle") 27 | .attr("r", function(d) { return d.r; }) 28 | .style("fill", function(d) { 29 | var grayScale = 20 - d.value; 30 | var grayValue = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'][grayScale] 31 | return '#ee' + grayValue + grayValue + grayValue + grayValue; 32 | }); 33 | 34 | node.append('a').attr('xlink:href', function(d){ return 'http://www.douban.com/people/' + d.className;}).attr('target', '_blank') 35 | .append("text").attr("text-anchor", "middle").attr("dy", ".3em") 36 | .text(function(d) { 37 | var txt = d.className.substring(0, d.r / 3); 38 | return txt; 39 | }); 40 | }); 41 | 42 | // Returns a flattened hierarchy containing all leaf nodes under the root. 43 | function classes(root) { 44 | var classes = []; 45 | 46 | function recurse(name, node) { 47 | if (node.children) node.children.forEach(function(child) { recurse(node.name, child); }); 48 | else classes.push({packageName: name, className: node.name, value: node.size}); 49 | } 50 | 51 | recurse(null, root); 52 | return {children: classes}; 53 | } 54 | -------------------------------------------------------------------------------- /public/top_readers_tag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DouMine | Programmers 6 | 7 | 8 | 9 | 10 | 11 | 17 | 18 | 19 |
20 |

People read these books ...

21 | 22 |
23 | 24 | -------------------------------------------------------------------------------- /public/top_readers_tag.js: -------------------------------------------------------------------------------- 1 | function drawBookList(csvPath) { 2 | $.ajax({ 3 | url: csvPath, 4 | success: function(data) { 5 | var container = $('.book-list') 6 | $($.csv.toArrays(data)).each(function(index, row) { 7 | if(row[1] != undefined) { 8 | container.append("
  • " + row[1] + "
  • ") 9 | } 10 | }) 11 | } 12 | }); 13 | } 14 | 15 | var w = 960, 16 | h = 600; 17 | 18 | function drawTagCloud(dataSource) { 19 | d3.json(dataSource, function(json) { 20 | var topReaders = readers(json).children.map(function(reader) { 21 | return {text: reader.nickName, size: reader.readCount * 5}; 22 | }); 23 | d3.layout.cloud().size([w, h]) 24 | .words(topReaders) 25 | .rotate(function() { return ~~(Math.random() * 2) * 90; }) 26 | .fontSize(function(d) { return d.size; }) 27 | .on("end", draw) 28 | .start(); 29 | }); 30 | } 31 | 32 | function draw(data, bounds) { 33 | scale = bounds ? Math.min( 34 | w / Math.abs(bounds[1].x - w / 2), 35 | w / Math.abs(bounds[0].x - w / 2), 36 | h / Math.abs(bounds[1].y - h / 2), 37 | h / Math.abs(bounds[0].y - h / 2)) / 2 : 1; 38 | words = data; 39 | var svg = d3.select("body").append("svg") 40 | .attr("width", w) 41 | .attr("height", h); 42 | 43 | var vis = svg.append("g").attr("transform", "translate(" + [w >> 1, h >> 1] + ")"); 44 | 45 | var text = vis.selectAll("text").data(words, function(d) { return d.text.toLowerCase(); }); 46 | 47 | text.transition() 48 | .duration(1000) 49 | .attr("transform", function(d) { return "translate(" + [d.x, d.y] + ")rotate(" + d.rotate + ")"; }) 50 | .style("font-size", function(d) { return d.size + "px"; }) 51 | text.enter() 52 | .append("text") 53 | .attr("text-anchor", "middle") 54 | .attr("cursor", "pointer") 55 | .attr("transform", function(d) { return "translate(" + [d.x, d.y] + ")rotate(" + d.rotate + ")"; }) 56 | .style("font-size", function(d) { return d.size + "px"; }) 57 | .on("click", function(d) { 58 | window.open('http://www.douban.com/people/' + d.text) 59 | }) 60 | .style("opacity", 1e-6) 61 | .transition() 62 | .duration(1000) 63 | .style("opacity", 1); 64 | text.style("font-family", function(d) { return d.font; }) 65 | .style("fill", function(d) { 66 | document.inspect = d; 67 | var grayScale = 20 - d.size / 5; 68 | var grayValue = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'][grayScale] 69 | return '#bb' + grayValue + grayValue + grayValue + grayValue; 70 | }) 71 | .text(function(d) { return d.text; }); 72 | vis.transition() 73 | .delay(1000) 74 | .duration(750) 75 | .attr("transform", "translate(" + [w >> 1, h >> 1] + ")scale(" + scale + ")"); 76 | } 77 | 78 | // Returns a flattened hierarchy containing all leaf nodes under the root. 79 | function readers(root) { 80 | var readers = []; 81 | 82 | function recurse(name, node) { 83 | if (node.children) node.children.forEach(function(child) { recurse(node.name, child); }); 84 | else readers.push({nickName: node.name, readCount: node.size}); 85 | } 86 | 87 | recurse(null, root); 88 | return {children: readers}; 89 | } -------------------------------------------------------------------------------- /public/top_sf_readers_tag.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | DouMine | Science-Fiction Fans 7 | 8 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /sample_data/book.1000067.csv: -------------------------------------------------------------------------------- 1 | ID 2 | wanam 3 | 1076366 4 | 32708761 5 | 57229032 6 | 27434769 7 | teddy-liu 8 | lincheng_xinyu 9 | bobbielf2 10 | wuziming 11 | chrisiron 12 | 26649101 13 | chudengshulun 14 | 1240191 15 | changertebieer 16 | fremontwang 17 | 2576947 18 | PSK 19 | 54334259 20 | grothen 21 | 42886044 22 | smalldie 23 | laipizhu 24 | porcorosso 25 | 16377097 26 | 13200313 27 | DDXSJ 28 | linzinh 29 | 47915866 30 | 4370394 31 | sysu-shichen 32 | 1514279 33 | 27696772 34 | yt403 35 | 1010923 36 | yanyyhj 37 | 51379629 38 | 48241323 39 | colinl 40 | 39218604 41 | hugh1989 42 | 41964849 43 | 49111309 44 | 45644888 45 | onesuper 46 | 36162026 47 | moon.f 48 | krisbella 49 | 48107642 50 | 36160307 51 | 14095195 52 | 47950331 53 | kizitata 54 | weishuitang 55 | c2blog 56 | boycatt 57 | jollyff2 58 | mathack 59 | 32717094 60 | 3910769 61 | christine1125 62 | zjping 63 | 2900565 64 | 1558390 65 | Xavier2011 66 | 40921206 67 | G.Frankenstein 68 | 44644197 69 | 36602712 70 | 3142062 71 | jiehuazi 72 | kangyouhuo 73 | ronaldyam 74 | 4890893 75 | peggyzhang911 76 | kyoxma 77 | 2352122 78 | 2690229 79 | chenghaibo 80 | renjian 81 | wan123 82 | yuanyuan2319 83 | rato 84 | zizouwang 85 | rnrn 86 | moonaria 87 | xuyangtong 88 | 9379965 89 | 4045069 90 | 1022470 91 | travishahn 92 | satellitecity 93 | gaoyexiang 94 | chenanel 95 | 12641600 96 | guolidan 97 | 36569028 98 | 34700207 99 | 34180875 100 | liangqi0312 101 | stillyou 102 | 4915734 103 | john.xuan 104 | 3642559 105 | cjtracey 106 | totalitarianism 107 | 2471388 108 | woshilitang 109 | 2563654 110 | 2863648 111 | oceana 112 | situchen 113 | 12913105 114 | VE-RI-TAS 115 | italiamilan 116 | 30034362 117 | 2919197 118 | ainina 119 | poiuytrfg 120 | 4274436 121 | yiheng 122 | 26560833 123 | Husile 124 | 15979142 125 | 4587842 126 | shuixuan 127 | 3242046 128 | LouisLU 129 | yinfuer 130 | shirleyly 131 | 3241668 132 | weixiaolengmo 133 | fwjmath 134 | 13369187 135 | irisbabe2000 136 | 2698209 137 | injoy 138 | 2152193 139 | lijiansion 140 | Ecxin 141 | haohailong 142 | compmanwu 143 | Raffaele.Mao 144 | selfsefu 145 | 4700418 146 | william-choi 147 | zhangxunnj 148 | xiaozhugg118 149 | iisky 150 | 2361078 151 | 3503444 152 | sevenya 153 | 4597376 154 | hmmmm 155 | elysety 156 | shijierusi 157 | 3848569 158 | woke 159 | petercat 160 | 2798165 161 | ostara 162 | sunnylavender 163 | vulcain 164 | beichengzuobide 165 | andrewliu 166 | MrCuriosity 167 | bendanxiaoxin 168 | hermite 169 | 4013987 170 | erdos 171 | 4160032 172 | 1605268 173 | 2794942 174 | 3483976 175 | quyi 176 | 3965198 177 | anthome 178 | SylviaWang 179 | december1986 180 | mafeite 181 | pinkorange 182 | rufengzizai 183 | freedxy 184 | 2246020 185 | 2569501 186 | chendabai 187 | 2632657 188 | 3626916 189 | mysomeday 190 | kangkaigeyanshi 191 | xishutangzhu 192 | jessieron 193 | canonical.cqh 194 | lolita-gray 195 | shuyeshuye 196 | prola 197 | yeka52 198 | 2618624 199 | happyornot 200 | -------------------------------------------------------------------------------- /sample_data/book.1000280.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 54372624 3 | 11770195 4 | suchasplus 5 | relivo 6 | 56935511 7 | sleepyanthony 8 | 51856240 9 | 56725890 10 | 3790414 11 | 3863269 12 | 17288809 13 | 47800395 14 | 58719088 15 | 58897801 16 | 24588480 17 | 58048467 18 | 41648539 19 | 58953984 20 | 1541115 21 | spyuan 22 | 51872583 23 | mgh 24 | 4808619 25 | ginmomo 26 | WKP 27 | 1550318 28 | 58832557 29 | 58754126 30 | 54584093 31 | 49126637 32 | 58094769 33 | 36550385 34 | ttt26 35 | 3393814 36 | 55585064 37 | 58657014 38 | 57138806 39 | xhmm 40 | 49896667 41 | 27050157 42 | 2088339 43 | 47271257 44 | 4230925 45 | 41223250 46 | lovelyant 47 | zlw6 48 | Auth.SeeU 49 | 2820961 50 | 58511737 51 | 52527968 52 | 57729463 53 | aldallee 54 | 58457182 55 | 58374249 56 | 3584043 57 | 3882238 58 | laokuangke 59 | 1161317 60 | littleta 61 | rolandcheng 62 | 58340610 63 | wanzibupa 64 | 15032209 65 | 4697370 66 | 3311476 67 | 1555415 68 | gagakrron 69 | 58029750 70 | 4426079 71 | pisingtoog 72 | 2433143 73 | luckandjoy 74 | lyshane 75 | ifyoudareloveme 76 | 47432718 77 | valuemyself 78 | 3774720 79 | 43545668 80 | 48497486 81 | kiddinguibe 82 | 1764539 83 | 3431769 84 | 49117267 85 | 1258129 86 | 58152863 87 | 51951209 88 | 19598742 89 | 27515584 90 | BPTM 91 | 54559476 92 | 1380971 93 | 58092065 94 | 44080379 95 | 4324199 96 | 46827551 97 | 2565598 98 | 2669443 99 | 4228149 100 | 47366742 101 | lanmaomaomao 102 | 33828933 103 | ringgiver 104 | 35555040 105 | beijingolddeng 106 | 2595919 107 | vinciwg 108 | 52349213 109 | 55881700 110 | 57926785 111 | 26895402 112 | 3440203 113 | 42849073 114 | 2001321 115 | 41499150 116 | 3427188 117 | liangxu 118 | 56117063 119 | 4449418 120 | 2482200 121 | 52487318 122 | VitaminLE 123 | 46975887 124 | 53411470 125 | 7306389 126 | weiyanghf 127 | 43685722 128 | fairyland111 129 | 56810813 130 | 43719256 131 | ahan 132 | JuniorKnight 133 | 2691168 134 | 52177373 135 | 41961426 136 | 2956293 137 | chenweiyang 138 | 30724707 139 | 29284838 140 | yytzr 141 | 57615473 142 | 57462149 143 | 39638511 144 | 36772895 145 | 41994611 146 | woodstocks 147 | 6462328 148 | 19421078 149 | 2738504 150 | bluepupil 151 | 39482418 152 | 51072441 153 | 46584026 154 | 47232034 155 | emily816 156 | dadalielie 157 | 46497612 158 | cyperales 159 | 43790457 160 | 41437512 161 | 3986734 162 | 2657871 163 | 46228963 164 | woshilaowan 165 | 53334934 166 | 2109051 167 | et2o 168 | feihualouzi 169 | leowski 170 | 56608883 171 | 52292570 172 | 47816609 173 | ludora 174 | 55518495 175 | master1986 176 | 52542053 177 | 36309363 178 | 9814001 179 | yxk 180 | 50620996 181 | 3414519 182 | TizzyRin 183 | 30191610 184 | 51288424 185 | 57370076 186 | 48949296 187 | 36439769 188 | 3407394 189 | 2770286 190 | 48818854 191 | 2093320 192 | 57291446 193 | 2556660 194 | koreadream 195 | 2159337 196 | 53064159 197 | 2391230 198 | williams213 199 | -------------------------------------------------------------------------------- /sample_data/book.1000317.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/book.1000445.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/book.1000482.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/book.1000506.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 4560204 3 | FreyaJJ 4 | 41005996 5 | 1029988 6 | 53608129 7 | 55354842 8 | 44872366 9 | 41590451 10 | 3331983 11 | 42422096 12 | 51487701 13 | 3326564 14 | 2833892 15 | 52235229 16 | 50828485 17 | 53818116 18 | 7868528 19 | 48083827 20 | 2160117 21 | YOU87 22 | qianchen 23 | niangaotuantuan 24 | 4354292 25 | 40138645 26 | April.L.SYK 27 | 36549939 28 | Jonhanna 29 | 4272916 30 | Sokishe 31 | 38633741 32 | yegg03503122 33 | 49658596 34 | 3493078 35 | 2808563 36 | shayingfeng 37 | simpledragon 38 | 1097897 39 | TIREI 40 | heathers 41 | 49079597 42 | Myrainy 43 | 33367044 44 | songhover 45 | nwwfewx 46 | 1843838 47 | susuwa 48 | pyran 49 | 39437378 50 | 46602436 51 | dotian 52 | 46419558 53 | 38292048 54 | daiwujun 55 | 4085925 56 | humiu520 57 | 3755547 58 | 4097442 59 | jibaidanghei 60 | 40263999 61 | 39264167 62 | Charlene.W 63 | L56 64 | Kubrick_Bj 65 | cliffx 66 | suguangen 67 | 3418458 68 | 32780186 69 | 16793135 70 | yjlu81 71 | 25650153 72 | 37293022 73 | damogu009 74 | 15675026 75 | 3501689 76 | yvonneyyf 77 | 34169639 78 | philhmy8818 79 | 33072259 80 | 31990835 81 | stormtrooper 82 | tracycherry 83 | jiangyousi 84 | chenzx 85 | 2443012 86 | 23740322 87 | 18058745 88 | zhuminh 89 | 18818408 90 | archfly 91 | snowmouse 92 | 4340057 93 | 3075252 94 | 2617601 95 | 1064756 96 | yehmen 97 | 9632065 98 | hopolee 99 | 2614989 100 | 4082083 101 | abcdxjs 102 | 6378437 103 | loyhome 104 | chen1776 105 | basten1988 106 | yaoyao84 107 | mydear1011 108 | lena1122 109 | shuiyiyuan 110 | 4520365 111 | sniffersun 112 | 4409550 113 | 4358531 114 | paradixrain 115 | 4287023 116 | l628 117 | 4232545 118 | xiaobaifire 119 | 3550775 120 | 2145215 121 | 1309048 122 | 2005552 123 | 2537429 124 | hefeng2006 125 | 3954179 126 | 1562429 127 | RingaRinga 128 | xyxie 129 | yuweigao 130 | juyeyizhong 131 | Artaud 132 | 2576332 133 | 2169218 134 | grantqian 135 | 1749137 136 | xrmr 137 | carrie7cq 138 | lihuilei 139 | talentfate 140 | gubin 141 | judijudijudy 142 | G-man 143 | lola_cailang 144 | milanz 145 | 2522803 146 | 2339737 147 | alba-go 148 | theverve 149 | Rainbowrunner 150 | vochid 151 | 2059199 152 | marblesun 153 | davidbowie 154 | echo_8542 155 | zhanhua 156 | 1332284 157 | sleepypear 158 | 1729291 159 | katha 160 | 1058410 161 | lighina 162 | 1309558 163 | czs918 164 | 1204343 165 | kakaxisir 166 | sarah 167 | amelieho 168 | economist 169 | orientred 170 | 1013766 171 | andrewchen 172 | 1041652 173 | fancydavid 174 | zgaso 175 | -------------------------------------------------------------------------------- /sample_data/book.1000687.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 43971509 3 | 58172943 4 | 59108010 5 | caesarzx 6 | 42275332 7 | 58963077 8 | 58938376 9 | 47593786 10 | gsmaxwell 11 | 49440900 12 | 3403027 13 | 58762285 14 | leuxue 15 | 3361716 16 | daydreamcast 17 | ReneeChan 18 | 58466118 19 | kokia 20 | junlingduan 21 | 58391688 22 | 2443105 23 | Lunarogier 24 | zithan 25 | 1221938 26 | 8346587 27 | 53239457 28 | steleexiao 29 | fifa1989 30 | 1968364 31 | niuleixw 32 | fairyblossom 33 | 2458626 34 | chiputaobutuopu 35 | Nancyislearning 36 | 48638740 37 | whosoever 38 | ooohmyyygoood 39 | singxunzhao 40 | Cend 41 | 32609529 42 | 41027606 43 | nanaer 44 | 57556545 45 | hosni 46 | prinslab 47 | 52277979 48 | 57801660 49 | ottochicken 50 | 57564454 51 | santamonica 52 | 56984339 53 | 2233871 54 | 57594839 55 | kabao 56 | 57541460 57 | glutton 58 | 21838501 59 | 38465519 60 | braisunmoonstar 61 | qqzhiaixian 62 | Yvonne26 63 | 57390567 64 | 39243799 65 | datiqinshi 66 | dianlumao 67 | schy 68 | 53439567 69 | kumuyingnian 70 | sultanate 71 | faeriec 72 | wayfaring 73 | cecechen 74 | emilycat 75 | 35823900 76 | 48573787 77 | 8449203 78 | DarrenWONG 79 | guomengfei 80 | little_dear 81 | 20444828 82 | 47528276 83 | 2576332 84 | ynzx0128 85 | 3267528 86 | 3545608 87 | 52225841 88 | yuzuki_ria 89 | 4379305 90 | SATLER 91 | LouisRocky 92 | lynnyeh 93 | 56250333 94 | lyb.WHU 95 | 1469168 96 | 50234092 97 | luoming925 98 | maoda1573 99 | wei.ran 100 | paka4 101 | diego14590 102 | clivery 103 | 52553484 104 | cong_cong 105 | 31678134 106 | 30383956 107 | immushroom 108 | dzhq 109 | justsocrazy 110 | 1181899 111 | jerseyboy 112 | 55462608 113 | angelranran 114 | 1682514 115 | 7602365 116 | 55741263 117 | 55680316 118 | eauz 119 | damnjose 120 | uuuon 121 | gjy19911216 122 | 50650005 123 | volacano 124 | 3155703 125 | 1034312 126 | 27206426 127 | cathylethe 128 | doubledi 129 | yurilzxf 130 | 40833597 131 | 1665987 132 | Nonattachment 133 | 37023705 134 | 2707113 135 | 54688955 136 | fjl880916 137 | 54550752 138 | mypiggycwh 139 | 3990934 140 | 54538685 141 | 27411217 142 | feichenguang 143 | qianweitian 144 | 52299023 145 | 3251240 146 | 47851057 147 | yijiuyue 148 | Amelie_Zh 149 | luoyouqun 150 | cathylinchen 151 | 2496014 152 | Pepsi_Boy 153 | masako2598 154 | honeyboaizhixin 155 | 3617279 156 | 1308123 157 | xuying 158 | David07 159 | youkonwtoomuch 160 | gabywang 161 | Xiongying315 162 | 45804878 163 | yobalcony 164 | coffeeshadow 165 | qjy0528 166 | 3716862 167 | 32518586 168 | 3606444 169 | cj1543 170 | yycs 171 | zhaoqijii 172 | monkey_zhangshu 173 | 36009772 174 | kathychou 175 | tangsijia 176 | miss-rome 177 | 49258212 178 | yinghost 179 | momoironosora 180 | gxwangdi 181 | thegiftofgod 182 | yunnyyu 183 | 47217349 184 | 45800716 185 | byq1117 186 | 3889755 187 | 38998788 188 | miaolovebio 189 | jiongcaicai 190 | 51217446 191 | icanflying 192 | mangodream 193 | Shawn_Wu 194 | wanwangemini 195 | lezizi 196 | forevershine 197 | 52634459 198 | -------------------------------------------------------------------------------- /sample_data/book.1001154.csv: -------------------------------------------------------------------------------- 1 | ID 2 | chrisiron 3 | nwwfewx 4 | 1408398 5 | yunyunhu 6 | paranoid 7 | Shenxinaz 8 | 1271870 9 | 1077407 10 | -------------------------------------------------------------------------------- /sample_data/book.1001174.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3778778 3 | 21103884 4 | judywl2250 5 | 50954027 6 | collie_BZ 7 | 47096975 8 | lovelesslee 9 | 35336306 10 | 1811650 11 | 53064243 12 | 2175701 13 | yaozhuila 14 | pearlwang 15 | 54723632 16 | heping1991 17 | Acacio 18 | 49313956 19 | 1649703 20 | mongao 21 | 1308131 22 | viviennenana7 23 | wenziyun 24 | 56683207 25 | 1727088 26 | 3897344 27 | 4828962 28 | 50710303 29 | l7na 30 | zoerose 31 | 1034800 32 | SvelterGarde 33 | 47276295 34 | 43894387 35 | 48763698 36 | raorao49 37 | 4002168 38 | ping0329 39 | nancydrew 40 | suzang 41 | wanjuanjuan 42 | endli_kazu203 43 | 47160510 44 | yy1314 45 | anqi0108 46 | 1185607 47 | xxxxxxxy_ 48 | soulmate1991 49 | 47040986 50 | KamaHope 51 | 2935547 52 | teechy 53 | 52535802 54 | 51762574 55 | 51331409 56 | ouganfenghan 57 | 2381926 58 | 53125039 59 | panchenxiao 60 | maxlab 61 | haojun0925 62 | 48484265 63 | 1821514 64 | 48024787 65 | ailiilia 66 | 2304451 67 | 48948287 68 | 51437756 69 | misslizy 70 | 48059027 71 | 47468844 72 | 19579481 73 | Cuckoojkjk 74 | 51487624 75 | 46848556 76 | a371623866 77 | xia7izaidaota 78 | 51537740 79 | cody555 80 | 51325735 81 | Aaron_Jay 82 | kevin.x 83 | 46698247 84 | berry1103 85 | damixiong 86 | 3474957 87 | 49699820 88 | chauvetwong 89 | calvinyao 90 | ssslll 91 | gjr122 92 | W.J.Ken 93 | sunsum 94 | 2985824 95 | 50430759 96 | singly 97 | 36722257 98 | bluerain96 99 | xiajingeva 100 | yueguangxiadeyu 101 | 39421471 102 | Aciclovir 103 | ericakwok 104 | ena49 105 | 2218757 106 | 47268974 107 | jammyling 108 | summer421 109 | 8640683 110 | fishzero 111 | dandan91 112 | sunlow 113 | ssef 114 | lanhanxiaoe 115 | Alisonlove 116 | 43201486 117 | miyamoto 118 | 38217888 119 | kamee 120 | Swecty 121 | 3526741 122 | 49212815 123 | laurel-nanr 124 | shining1991 125 | sbnobody 126 | 42498525 127 | jchan1029 128 | m2cky 129 | ishone 130 | 1425472 131 | qinyan0402 132 | andcat 133 | 6238680 134 | 25321310 135 | YoYo.Siu 136 | 41295214 137 | 48451436 138 | mungh 139 | 27307767 140 | 2122996 141 | stillstone 142 | 39367127 143 | MissOpiate 144 | 48075075 145 | TalentLoong 146 | lilypanda 147 | 47244377 148 | 3615276 149 | 47616397 150 | 47973743 151 | 41466521 152 | bonnieleais 153 | 47286344 154 | daisylikeu 155 | c-summer 156 | 47594606 157 | 2378131 158 | qq308700615 159 | xoxoxxg 160 | 43338300 161 | 44474205 162 | 25293482 163 | cheer7fu 164 | eyesonu2 165 | cini 166 | 46934173 167 | 46335790 168 | wizonz 169 | 2032698 170 | romeosuen0521 171 | MJ90 172 | nancynancy 173 | 2839828 174 | miyo0407 175 | luoxiao 176 | YWC 177 | 46102423 178 | maixiaoxin 179 | 39911571 180 | troyuc 181 | 46419693 182 | xujiabin 183 | nanking710 184 | 43739248 185 | mico.lozi 186 | annbabyyan 187 | 44586537 188 | sugarxiao 189 | 4086296 190 | lifhome 191 | h1amigo 192 | Che_cass 193 | 44231995 194 | 43301500 195 | 39694684 196 | 32706094 197 | -------------------------------------------------------------------------------- /sample_data/book.1001204.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/book.1001292.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 48130324 3 | xiaojiongzi 4 | thje 5 | aliceridinghood 6 | 56145950 7 | isaachiyori 8 | tacc 9 | 38844191 10 | 2061238 11 | feiiw 12 | 23296918 13 | 4261016 14 | 1698067 15 | mr.bride 16 | 31909046 17 | tangshaw 18 | 55948973 19 | chilavert 20 | 47155879 21 | 13487939 22 | 49526727 23 | dinolupus 24 | 52341301 25 | physics1314 26 | 48495423 27 | DONOTPANIC42 28 | 56265914 29 | 30495303 30 | bennyzane 31 | baiyoung2001 32 | 49529276 33 | 3514674 34 | 51680347 35 | shaur 36 | horigen 37 | 2586327 38 | 55403204 39 | 55403195 40 | 55403191 41 | 55403180 42 | 55403172 43 | 55403167 44 | 55403157 45 | 55400270 46 | 46861418 47 | 55003245 48 | 55003241 49 | 55003236 50 | 55003225 51 | 55003214 52 | 55003175 53 | 55003174 54 | 55003172 55 | 55003168 56 | 47366742 57 | wangyuntao 58 | shi_han 59 | 1149218 60 | feketerigo 61 | aviot 62 | MyInfinity 63 | enishi_dan 64 | dfc103 65 | 54038958 66 | longk85 67 | dancelu 68 | nightldj 69 | Kong_Ko 70 | 38594381 71 | 48209956 72 | 52868210 73 | 47192442 74 | 46157708 75 | agentmu 76 | 51978766 77 | 2037045 78 | 52041165 79 | 46986004 80 | 4751032 81 | 37938815 82 | myortega 83 | 18664682 84 | psyche_angel 85 | doctormax 86 | 51205867 87 | 44498312 88 | blackcoder 89 | 2727231 90 | 3615992 91 | QPZHZ 92 | loger 93 | theodra 94 | 46943117 95 | 41888243 96 | 41754330 97 | Sbest 98 | 3192323 99 | 3594610 100 | 2660069 101 | 48726805 102 | scoopguo 103 | 1953477 104 | bbq2008 105 | 49312587 106 | utensil 107 | 48715027 108 | bkfish 109 | maxwe86 110 | yuandong1222 111 | Fratellis 112 | 35306588 113 | withinbeyond 114 | 32749476 115 | wjdszy 116 | yobalcony 117 | 48169596 118 | slube 119 | 45484134 120 | 1289467 121 | 48107642 122 | PRCT 123 | 47880498 124 | 47803988 125 | Stalinova 126 | amor1986 127 | 42703795 128 | aswhao 129 | akalin 130 | 1974878 131 | vladimirliu 132 | wuyouz 133 | fscrazymouse 134 | samsa 135 | sinoyxf 136 | whigzhou 137 | redshift_wu 138 | shishangliu 139 | byroncao 140 | 44893340 141 | yallen 142 | 2385433 143 | emmthesqui 144 | knowno 145 | yxnsu 146 | bugou 147 | leaderweb 148 | murongfei 149 | dwent 150 | fateholder 151 | 13349120 152 | cacao2 153 | minounou 154 | asiantiger 155 | 3919731 156 | xuannov 157 | jasmindhiver 158 | dumplingyl 159 | 36711283 160 | beesuns 161 | humvee 162 | 37883272 163 | 2163234 164 | lukechen 165 | gubin 166 | 3183541 167 | gxc 168 | 1569041 169 | 31852143 170 | 23494376 171 | 34451284 172 | 34042466 173 | 3153878 174 | 4357377 175 | 1896677 176 | fatespinner 177 | yehmen 178 | 4058620 179 | 3640494 180 | 30185816 181 | zhuangwenxu 182 | 4262507 183 | 2158858 184 | irinis 185 | 2144157 186 | Zhuoliang 187 | 26410996 188 | lovewangmin 189 | xgeng 190 | ailan247 191 | yeahsoda 192 | blackout 193 | into_the_forest 194 | 25519766 195 | yangyousan 196 | little-bladder 197 | cjj1989 198 | 2737466 199 | 23250317 200 | -------------------------------------------------------------------------------- /sample_data/book.1001349.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 47016288 3 | Wayi 4 | depoboarder 5 | 49159017 6 | 50192638 7 | 49440900 8 | 33977515 9 | wudjin 10 | ottochicken 11 | 58145505 12 | 52013822 13 | 51217446 14 | Evar 15 | 3976541 16 | 32924698 17 | 57314433 18 | zhangrui_pan 19 | joiechen 20 | zwcx1991 21 | cloud.talent 22 | 8599016 23 | 56456363 24 | 49818743 25 | sheepp 26 | zt1379 27 | padoma 28 | catv 29 | qingningluzi 30 | juliet428 31 | 54232087 32 | 1738768 33 | 39464410 34 | 2136945 35 | niangaotuantuan 36 | zx0818 37 | 4372877 38 | daisycyz 39 | 53889572 40 | Profundis 41 | wanzhiyuan 42 | sarah_cat 43 | hisunflower 44 | 7076549 45 | xingwanjing 46 | 52996101 47 | 52557280 48 | 4500292 49 | 3484676 50 | 51673384 51 | babeelephant 52 | 48287149 53 | 51591043 54 | w13963147699 55 | 49144241 56 | childay 57 | 2628457 58 | wiesong 59 | mo.li 60 | zeeyi 61 | 3718450 62 | yueguangxiadeyu 63 | fylyunfei 64 | 49373372 65 | 14132301 66 | Alma-Lee 67 | evebeli 68 | sevenisblue 69 | palman 70 | 41087392 71 | 3716728 72 | Vanehu 73 | asn.sy 74 | sofornothing 75 | 2587736 76 | worldismyfeel 77 | SWX 78 | cacard 79 | 2448153 80 | reburning1314 81 | brosnail 82 | 47193535 83 | floodland 84 | freesea 85 | 28743100 86 | 1634482 87 | 3110021 88 | hanyizhi 89 | 4597802 90 | fateholder 91 | glasseslili 92 | 3922321 93 | 45528423 94 | fishfay 95 | baayy 96 | dahuaa 97 | redkie 98 | 3294190 99 | 44376356 100 | anattttta 101 | wiswood 102 | jack_knight 103 | 16284388 104 | 2646343 105 | witice_liu 106 | daybreak_sms 107 | 1473722 108 | 3490261 109 | nicol-lina 110 | splendorwillway 111 | 34429448 112 | 38311024 113 | 37337110 114 | 2139001 115 | eddy555 116 | 2167025 117 | caelyn_he 118 | 40448032 119 | joyboat 120 | 4559689 121 | 38015447 122 | aeirolu 123 | d881030 124 | amaze 125 | YUI_. 126 | 4314657 127 | 3300434 128 | snowno5 129 | ywy 130 | koyota 131 | 23259005 132 | 4081966 133 | gloriahan 134 | 37633513 135 | 2268386 136 | 2117182 137 | 15843701 138 | 35928583 139 | spottdowl 140 | 4529893 141 | 35445602 142 | vava 143 | 24087027 144 | slyunzai 145 | 10246686 146 | 33054462 147 | 10503867 148 | 25902261 149 | 27754757 150 | 3075963 151 | 30722438 152 | YolandaLu 153 | AaronWei 154 | ivang10 155 | lizhuzhu 156 | 3211078 157 | littlehorse 158 | 30309739 159 | zhuxiangfei 160 | 29446686 161 | smart.mk1 162 | 25962743 163 | 2433779 164 | 19228589 165 | dan_simplelife 166 | 18102251 167 | 18102162 168 | 17790184 169 | 17693335 170 | byj397 171 | doubanzw 172 | salut_apple 173 | planet10 174 | Sherdaychen 175 | irisbabe2000 176 | 3469427 177 | kana906 178 | 1844983 179 | paysonnee 180 | JulieKing 181 | Tocqueville 182 | eitheror 183 | Dimhaze 184 | v_ghost 185 | axiandj 186 | leitaotao 187 | stridep 188 | NikolaTesla 189 | oybj1989 190 | dolphin688 191 | voyageonly 192 | 3306093 193 | 1334546 194 | 2578879 195 | 3429659 196 | -------------------------------------------------------------------------------- /sample_data/book.1001389.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 47624185 3 | 42199868 4 | wxufeng 5 | yechunyuan 6 | d10kb10km 7 | sns4me 8 | laubersder 9 | kidzlike 10 | 4305920 11 | mljack 12 | 46617964 13 | panlilu 14 | yzpower 15 | 4006899 16 | 12526517 17 | gcweb 18 | softmind 19 | 3308398 20 | andychang 21 | 34978138 22 | shaofa 23 | 2903413 24 | sangwf 25 | rockeet 26 | hongyikun 27 | 4324857 28 | onlyhuman028 29 | lilu 30 | swiminger 31 | ripperzhang 32 | specialcognac 33 | noheartrain 34 | lgylym 35 | 1001037 36 | Horatii 37 | 1221938 38 | MengXiao 39 | 1803120 40 | hhw 41 | arielyang 42 | coolqiang 43 | hzyblue 44 | maggiepi 45 | kittyzzl 46 | cdmo 47 | xyxyxy17 48 | rocflytosky 49 | interma 50 | mimiqiao 51 | b_tree 52 | awcyy 53 | liusifan 54 | licy 55 | chwkai 56 | 1026217 57 | 1063260 58 | redeye 59 | -------------------------------------------------------------------------------- /sample_data/book.1001737.csv: -------------------------------------------------------------------------------- 1 | ID 2 | likalanyuki 3 | 2273033 4 | thejojo 5 | forrestshin 6 | OurSpace 7 | kyonz 8 | Iapetos 9 | AforA 10 | wugm 11 | 42758744 12 | jeanvalley 13 | 3015832 14 | ryankung 15 | king51 16 | 1586843 17 | 48949967 18 | 40787582 19 | cornzhou 20 | yamaye 21 | 48513982 22 | aoreal 23 | chrisiron 24 | liufinback 25 | 48495423 26 | 2702108 27 | 54038795 28 | dagny_02 29 | nikiller 30 | 1316783 31 | 2761646 32 | lynn..... 33 | 46125497 34 | 1854238 35 | amneisa 36 | 4078308 37 | 4089851 38 | poinousivy 39 | ankazen 40 | niangaotuantuan 41 | 38359955 42 | 4072337 43 | 3350439 44 | neverland4u 45 | 53872337 46 | 53350839 47 | 3922321 48 | huangdan1966666 49 | 4336826 50 | 2521791 51 | vieplivee 52 | 27142981 53 | 2106944 54 | 49215635 55 | 40104313 56 | nwwfewx 57 | 1514279 58 | lbnew 59 | Jue_jue 60 | alchain 61 | ymca33683728xp 62 | edwardgreen 63 | 18081032 64 | xzx2011 65 | hutianyi 66 | zuqun 67 | chuishibanke 68 | 2038248 69 | 29006045 70 | 49808674 71 | 11624609 72 | 45569027 73 | e11e 74 | 46348015 75 | wumoum 76 | supermikam 77 | emunah 78 | ziz9 79 | yvonneQP 80 | z-howard 81 | 1907990 82 | archpacman 83 | 48107642 84 | 47929578 85 | xiaohigh 86 | clinton 87 | happyface1022 88 | runwithsun 89 | miloservic 90 | 31047909 91 | mosmos 92 | haooer 93 | 2494758 94 | dolphindudu 95 | ankora 96 | 3011072 97 | feliciafay 98 | fcdeng 99 | ymca 100 | greatabel 101 | saturnl 102 | ironheart 103 | 1708512 104 | knowno 105 | cucub 106 | datouma 107 | 43241612 108 | 16226523 109 | 4890893 110 | 2660069 111 | astroyu 112 | 20594421 113 | robinforrest 114 | 35320126 115 | limingvip 116 | ronin304 117 | swq 118 | nongmincpa 119 | 33911682 120 | 38702176 121 | eidth 122 | wuxigua 123 | lukechen 124 | NgKKh 125 | 23740322 126 | yarray 127 | andrewliu 128 | klanders 129 | 4335361 130 | follhouse 131 | ComoLake 132 | ACER_Michellia 133 | 1458411 134 | 2215531 135 | cambrain 136 | ylsibyl 137 | xingyunliuliu 138 | sanguis 139 | 2192656 140 | miao126 141 | 3977056 142 | 3604632 143 | 2144828 144 | manfeyn 145 | 23831291 146 | 2447512 147 | 3389067 148 | rophition 149 | forher 150 | 2291637 151 | 1061286 152 | zoedt 153 | sweetxiao 154 | 1305377 155 | shaochuan 156 | JohnMorgan 157 | syimj 158 | Fshanshan 159 | solarhe2006 160 | 7965241 161 | sgw928 162 | 5872374 163 | 1534480 164 | daneestone 165 | 2368778 166 | justin-wan 167 | 4616437 168 | NikolaTesla 169 | 3416406 170 | 2994516 171 | 1120847 172 | c447279704 173 | debonair 174 | 2836013 175 | 1077275 176 | 2142671 177 | 4128246 178 | 2842617 179 | linghuli 180 | 2617193 181 | weim 182 | scfd 183 | 4251186 184 | 4216803 185 | lushuwei 186 | archxxx 187 | imay 188 | 1447566 189 | hongwu 190 | 3435212 191 | ruizhi 192 | 3640730 193 | mindnotes 194 | chatterbox 195 | joeii 196 | sibyll 197 | simpson161 198 | -------------------------------------------------------------------------------- /sample_data/book.1001896.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/book.1001920.csv: -------------------------------------------------------------------------------- 1 | ID 2 | shub2b 3 | lostminh 4 | kiko1227 5 | chouning 6 | 4762722 7 | 2512869 8 | 3766737 9 | 2563539 10 | risent 11 | 3249873 12 | 3157901 13 | 3080286 14 | unotfish 15 | 1057858 16 | -------------------------------------------------------------------------------- /sample_data/book.1002299.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 54160764 3 | 52427702 4 | 59176145 5 | 48166498 6 | 34699714 7 | 9229436 8 | 52204954 9 | 52676946 10 | 55637851 11 | 58756528 12 | 46537775 13 | 47742631 14 | 59058896 15 | 55333596 16 | volin_pidan 17 | xlone 18 | Livv 19 | 45116197 20 | kakale 21 | 53806079 22 | 46042584 23 | love79 24 | 50282295 25 | 48103416 26 | minlik 27 | snowfire 28 | 53831402 29 | 3003811 30 | sadrime 31 | 47244889 32 | baiyuweitang 33 | pangpangyy 34 | 55919269 35 | fallenyugo 36 | 44444492 37 | 2428192 38 | stefan_zweig 39 | 28156067 40 | 3597957 41 | 57164365 42 | 51476263 43 | 34430421 44 | 49299846 45 | 1180223 46 | 43386619 47 | 51333563 48 | 2596218 49 | momol 50 | Duncedog 51 | 56295291 52 | haoqiu 53 | minglang2012 54 | 3925266 55 | mtzeng 56 | ygyoung 57 | padmasl 58 | 57054049 59 | 49394176 60 | 53011245 61 | 43105151 62 | Vestige_N 63 | 3675813 64 | 48896741 65 | 3610842 66 | 52994022 67 | 57176833 68 | 3393237 69 | freiheit901 70 | 58981183 71 | pkuoliver 72 | 51112968 73 | aoch 74 | 2062924 75 | 59050751 76 | 47043978 77 | meganhsuan 78 | emman 79 | 58965924 80 | 58085988 81 | 55409862 82 | 47522623 83 | antandplant 84 | 2488466 85 | 41830263 86 | 46479486 87 | 53653938 88 | mycoldsummer 89 | 59001234 90 | 38341727 91 | 53783252 92 | 3131737 93 | 1278875 94 | 52175384 95 | Sheepysheepy 96 | 33880591 97 | 58394068 98 | 53391431 99 | DNA- 100 | 42337026 101 | 31720742 102 | 48293345 103 | Ranka 104 | 44645163 105 | 56261778 106 | 53928047 107 | 43460220 108 | 31478808 109 | tcstar 110 | lihuiyin 111 | 49259639 112 | 29795143 113 | firedot 114 | 43945856 115 | 2012155 116 | 4646218 117 | angiaou 118 | 36138234 119 | starfoams 120 | 58984424 121 | luft 122 | 54572187 123 | 58979301 124 | 58945144 125 | 56799385 126 | 54343226 127 | 36248203 128 | amir0320 129 | rainydayecho 130 | 41389516 131 | wqj900815 132 | 3958994 133 | 36550394 134 | bullshitforever 135 | 36306194 136 | lostcat84 137 | hexiaoxuan 138 | beautifuguniang 139 | michealss 140 | 9960036 141 | 58928622 142 | 56031829 143 | 3375115 144 | khalilbaby 145 | 48763237 146 | sybil_mermaid 147 | 52588114 148 | 58950703 149 | time_kill_me 150 | 11508318 151 | 58947779 152 | 3335174 153 | koalabc 154 | niko0214 155 | Lynniass 156 | 45404060 157 | 58932510 158 | 58641601 159 | 1661843 160 | orangepia 161 | 54318841 162 | 37440325 163 | beardpapaooo 164 | 57710317 165 | 52187943 166 | 57987649 167 | outman2011 168 | FOREVERYANGER 169 | 25489471 170 | 43530281 171 | 3567005 172 | 54343327 173 | 57059640 174 | 40305368 175 | 48996875 176 | 58921492 177 | 51389476 178 | 44178232 179 | 6500897 180 | nahcoiii 181 | AYOVI 182 | 55444704 183 | 3780778 184 | 52467656 185 | meltykisszhy 186 | 47816536 187 | 39250407 188 | 46352989 189 | lethexeres 190 | 58901943 191 | 44161887 192 | 41295562 193 | zangqiulin 194 | 50140963 195 | 43156949 196 | 58885027 197 | 58838993 198 | 55490266 199 | 58726386 200 | -------------------------------------------------------------------------------- /sample_data/book.1002349.csv: -------------------------------------------------------------------------------- 1 | ID 2 | neverland4u 3 | 54978816 4 | charles-liang 5 | yegg03503122 6 | 13132578 7 | 29987043 8 | 3418458 9 | 13614173 10 | zhuwenger 11 | lenin1031 12 | 1530027 13 | 4739372 14 | 2354346 15 | wbrr 16 | 3481431 17 | lordwong 18 | 2740359 19 | recky6084 20 | 3117998 21 | zhsword 22 | missrebecca 23 | 2314396 24 | rainybell 25 | njst 26 | 1752705 27 | sidfify 28 | Tom7 29 | yangjiaojiao 30 | 1702574 31 | 1229176 32 | 1540958 33 | requiescat 34 | taoist2004 35 | TingoZhu 36 | senslover 37 | Jennyz 38 | d 39 | fengxiaofeng 40 | SunnyJingJing 41 | 1130494 42 | nononeonenoneno 43 | 1112422 44 | 1082821 45 | chenta 46 | owenshen 47 | 1059519 48 | 1056387 49 | Astro 50 | anse 51 | christopher 52 | -------------------------------------------------------------------------------- /sample_data/book.1002474.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 57228110 3 | 37907780 4 | 4732370 5 | 54579549 6 | emmmmmmma 7 | 49128428 8 | 40783400 9 | 43180383 10 | 58748696 11 | jayscorpio 12 | emilycat 13 | 25392573 14 | 52172126 15 | lisarom 16 | 57606710 17 | 57981672 18 | mT.Huang 19 | 55640471 20 | 49951906 21 | 53900847 22 | 1099150 23 | necwizard 24 | heartsme 25 | 51606646 26 | Kwan-Chan 27 | 56933885 28 | 57773939 29 | steven280 30 | 2657084 31 | 53642383 32 | nueva 33 | bilongfei 34 | kakatuo 35 | 2019043 36 | ddd121 37 | 57125179 38 | 55855562 39 | 43521448 40 | bachelor99 41 | milllk 42 | 34963692 43 | coldplayer 44 | imelucifer 45 | 51536524 46 | keiko0524 47 | basten1988 48 | xiaofenghe1989 49 | 54164251 50 | fleer 51 | mangocity 52 | mond30081989 53 | 3800577 54 | efa7378 55 | utopiazh 56 | 53981185 57 | 10749771 58 | 47735133 59 | luoyiyu 60 | cat_fish 61 | 55338711 62 | aboutisan 63 | U2M 64 | 53553795 65 | 1062014 66 | 46492110 67 | 47733088 68 | 49429868 69 | 32840610 70 | 53376282 71 | fishermanworks 72 | 56055034 73 | 46430798 74 | 56056411 75 | suibia 76 | pinkjoy 77 | imbirdman 78 | 53135447 79 | 2334804 80 | 1571951 81 | fannyfei 82 | splendor_19 83 | lalawu 84 | liuxiaoxing 85 | unervern 86 | qq23354923 87 | 34107049 88 | 2681746 89 | 48928018 90 | 49952101 91 | 2463673 92 | 55434776 93 | 53280641 94 | 4136364 95 | seekmyjoy 96 | colawang 97 | crossblood3-2 98 | 49731915 99 | 1547206 100 | MAKUBEX 101 | 54812747 102 | 4034547 103 | vivian3489 104 | bolang 105 | Jue_jue 106 | yce8 107 | chenyan423 108 | zhaoqijii 109 | 53940311 110 | vcito 111 | 47564721 112 | daneestone 113 | 53842182 114 | 3794517 115 | sohu2000000 116 | tongjiquan 117 | 2232272 118 | jason_li 119 | 54405667 120 | apity 121 | 54212383 122 | smile665 123 | 54329785 124 | 3539074 125 | 2713922 126 | cindyylxx 127 | mr.ta 128 | archpacman 129 | tsenfine 130 | zachho 131 | sunshine280 132 | hero2100 133 | fakeB 134 | DUJIACHUN 135 | sdy123 136 | 53904240 137 | saint215 138 | 53872337 139 | 53793921 140 | iamwill 141 | liangdurden 142 | 40223137 143 | likalanyuki 144 | jopees 145 | 4673979 146 | tanjilion 147 | 53659981 148 | 2629271 149 | wuwukongruo 150 | 49613201 151 | 46804115 152 | kakanimo 153 | 42719032 154 | 50294699 155 | mariacar 156 | 2971881 157 | paicha 158 | mandeeeee 159 | 3836617 160 | ailogx 161 | 1299173 162 | 2307825 163 | 3233571 164 | anshanxuan 165 | nolanhym 166 | xxingweidong 167 | gavinkwok 168 | 51527992 169 | larrynever 170 | cowknight 171 | GoliardWan 172 | underlake 173 | 1166142 174 | 35292306 175 | vanstark 176 | fedorajiang 177 | 2830084 178 | jillbetter 179 | 49058140 180 | kathleenyin 181 | shaha 182 | xiyufeiyin 183 | 52131989 184 | sucetteliu 185 | April.L.SYK 186 | 43698881 187 | 40172543 188 | whatnever 189 | chenyanmaria 190 | 3102384 191 | magica712 192 | banditye 193 | 47191564 194 | xsherryx 195 | 3854468 196 | xiangziwade 197 | 51762864 198 | 10952364 199 | skijo 200 | -------------------------------------------------------------------------------- /sample_data/book.1002690.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 58770893 3 | 54323206 4 | YIxiangtiankai 5 | minstrel007 6 | 34040682 7 | shaoe 8 | shangmuzhou 9 | 3037466 10 | snowy0000 11 | 1441651 12 | 17693531 13 | 53494498 14 | 2296000 15 | zhuyige 16 | 58710042 17 | 51612201 18 | 54584093 19 | chenyangxu 20 | grothendieckLi 21 | 3119162 22 | 57967874 23 | lirenhao 24 | eagle200467 25 | 41223250 26 | innisfree 27 | 58098337 28 | 2595919 29 | 2169737 30 | 3091140 31 | horatius 32 | 58029750 33 | 4067779 34 | 17914613 35 | 33556440 36 | 45612179 37 | 4359732 38 | ma33 39 | 46219499 40 | 42830318 41 | 2534303 42 | 33828933 43 | 52474695 44 | 56031625 45 | 57703763 46 | 57641611 47 | 2260609 48 | marshallzh 49 | spoke 50 | 56792550 51 | 1392934 52 | chechaofeng 53 | jjgod 54 | HeLeNNeLeH 55 | 54272308 56 | Hume 57 | 26682916 58 | kakatuo 59 | zhongda925 60 | 57377032 61 | 3590052 62 | 49308165 63 | 33098009 64 | 28304556 65 | 1696483 66 | downsky 67 | 51635237 68 | 51553407 69 | 57360169 70 | 50520024 71 | 48355742 72 | 38450580 73 | 28670665 74 | 43433689 75 | 53686144 76 | 55657032 77 | 30182462 78 | 25858847 79 | 57348553 80 | ASCII 81 | darkmeteor 82 | 57303541 83 | 16853344 84 | 55690624 85 | shixiaoshi 86 | awayfromhuman 87 | 9470061 88 | 47034871 89 | 2624477 90 | 53689624 91 | 42382099 92 | 31011171 93 | 50044672 94 | 35440045 95 | 25724605 96 | 33007956 97 | yphprb 98 | easyideal 99 | 3146253 100 | 54144852 101 | tlhzte 102 | 1137351 103 | 34116334 104 | econwang 105 | xuhao1993 106 | 4693122 107 | 56558265 108 | sylin 109 | 54606258 110 | 4341372 111 | 3519579 112 | 48047142 113 | 3550294 114 | 46073615 115 | PongoStudio 116 | imba001 117 | 23253327 118 | indifferenz 119 | sun10q 120 | 56371329 121 | sfruit 122 | foreverfree 123 | 27578834 124 | chiao1984 125 | high_way1988 126 | 36388319 127 | 55948973 128 | 30495303 129 | 55964977 130 | 36529918 131 | 3000788 132 | simingai 133 | anran8833 134 | 3427188 135 | 52553484 136 | 1881656 137 | 1500993 138 | 1988920 139 | 3440599 140 | kyle928 141 | 53837792 142 | 55552359 143 | TiffanyBrisset 144 | houx 145 | 1229710 146 | 1776957 147 | 55018976 148 | jianblog 149 | sep88 150 | 47906157 151 | unusualgirl 152 | 42926939 153 | hawhynot 154 | 41197458 155 | 55003161 156 | 54958894 157 | 2557575 158 | 46902430 159 | 54922106 160 | 1229324 161 | 40677494 162 | Yolanda.yuqing 163 | 2076509 164 | liugenchuqiang 165 | davidyao 166 | 54633242 167 | camus1997 168 | wanchangln 169 | 3014893 170 | woqizhema 171 | 40273242 172 | 28233146 173 | 3859105 174 | sssssstutter 175 | 54732169 176 | 43992435 177 | 43666828 178 | 54698172 179 | 33482657 180 | stuka 181 | 42733327 182 | anglemilo 183 | cometoseesnow 184 | 36343186 185 | rex_rebecca 186 | 46756160 187 | 37146560 188 | zouyang812 189 | 48984486 190 | 3213998 191 | 50138443 192 | 54239245 193 | 41221797 194 | 2578482 195 | 54074189 196 | 26771427 197 | 49117267 198 | 1528173 199 | 49079497 200 | -------------------------------------------------------------------------------- /sample_data/book.1003000.csv: -------------------------------------------------------------------------------- 1 | ID 2 | cloris32 3 | qxiang 4 | 48527702 5 | glsymphony 6 | zaoyuan 7 | 49126830 8 | 59234668 9 | elyseperhapslov 10 | lyqy 11 | 52311210 12 | drspace14 13 | muyuxu 14 | 59231028 15 | 48480492 16 | davdave 17 | 56839486 18 | 58526834 19 | christyvano 20 | 57250640 21 | 50688058 22 | 59050954 23 | 48561293 24 | 45675437 25 | 49252301 26 | Ramblin 27 | lisaisa 28 | 28389605 29 | sanmudi 30 | 4089962 31 | 59126280 32 | 3191640 33 | niuanlei 34 | 44427661 35 | southapril 36 | 59188680 37 | kingna 38 | 49212424 39 | 3772330 40 | 52594001 41 | Zephyruz 42 | fatalisme 43 | puppy_ouyh 44 | 54957735 45 | 50923413 46 | 42033127 47 | 4548149 48 | mykingy 49 | jinxiaoli 50 | 50930268 51 | 58282223 52 | 59190393 53 | 34149056 54 | 4540795 55 | susubestop 56 | yanwoa 57 | magic7 58 | henchoujin 59 | 52357784 60 | 46209785 61 | rayark 62 | shifuchang 63 | 44510823 64 | 59135180 65 | isle 66 | 37106035 67 | 59176145 68 | Lucia00M 69 | sunny_xu 70 | 13476214 71 | lazygalaxy 72 | 44824639 73 | 55017918 74 | 58543065 75 | 23260415 76 | icebully521 77 | 46526917 78 | 58525071 79 | 58821709 80 | 59169370 81 | 59167627 82 | 59165391 83 | SuzieV 84 | 37342687 85 | sylvian.m 86 | HELLOAmo 87 | chuankon 88 | yuhotsauce 89 | iScopes 90 | 48350324 91 | nishixie 92 | 29827084 93 | 50046062 94 | 44177740 95 | camphorwood 96 | 52649316 97 | 58598342 98 | kakale 99 | 57972531 100 | crazydragonfly 101 | 57318445 102 | 59142868 103 | 47819252 104 | 8808727 105 | 50282295 106 | 44178232 107 | 53991804 108 | myhilily 109 | 52620659 110 | hk27 111 | 49095476 112 | houseofjessy 113 | jotodo 114 | 52203973 115 | 49910928 116 | 51654714 117 | yuting2627 118 | 58071745 119 | 42281605 120 | ryleehome 121 | haomo 122 | 59112375 123 | 16737178 124 | thecather 125 | nien 126 | 55487002 127 | aquar25 128 | 59111001 129 | 42725072 130 | 55504645 131 | LeoGrubby 132 | smilingly1989 133 | 2196704 134 | peihangli 135 | viyashyna 136 | 59102602 137 | 39458725 138 | 47158809 139 | 2789587 140 | tmqs 141 | 41867060 142 | 38996881 143 | 50866283 144 | expee 145 | 53663506 146 | 51402336 147 | 43386619 148 | 26474790 149 | 51333563 150 | yangyingmu 151 | wubangxian 152 | cicishuang 153 | 33552635 154 | 59088569 155 | 50756552 156 | 59072204 157 | 53951667 158 | arieswen 159 | 32397336 160 | brzmeng 161 | 59085043 162 | zj2610 163 | 29248168 164 | 58836461 165 | ZEON009 166 | 2804713 167 | LangSu 168 | 59076808 169 | 57931752 170 | 3610842 171 | 28315646 172 | 35045480 173 | 34345715 174 | doreen1215 175 | ameliorate 176 | bitemelt 177 | doll_07 178 | tyue06 179 | 4210092 180 | 57149967 181 | 50917410 182 | 50275537 183 | 3471265 184 | 48730292 185 | 48455734 186 | deareve 187 | 58085988 188 | 47522623 189 | 39564433 190 | 41830263 191 | 45286644 192 | antandplant 193 | ding940731 194 | 51738327 195 | finland218 196 | -------------------------------------------------------------------------------- /sample_data/book.1003136.csv: -------------------------------------------------------------------------------- 1 | ID 2 | gudushengren 3 | 43629808 4 | barbarossa1753 5 | launcelotdulac 6 | yanshiji 7 | 49992086 8 | zhuazike 9 | 2731319 10 | tytcnw 11 | 52057394 12 | slyarc 13 | 39054042 14 | cd147 15 | air2dust 16 | 56344062 17 | sepend 18 | kangruibin 19 | 53940311 20 | 31678134 21 | Hamlet 22 | 4230939 23 | 49638178 24 | book1968 25 | 2453669 26 | tsubasa_zero 27 | 51250830 28 | wdm 29 | franklin_cheng 30 | 2294856 31 | 17387648 32 | oceanlee28 33 | lantaigongzi 34 | palms 35 | 51104957 36 | 3547341 37 | BlackVegetable 38 | wangxiaojun 39 | 2117165 40 | dzbjszshhj 41 | 1948723 42 | 49215920 43 | 47106535 44 | sgsenv 45 | 48838184 46 | hermesia 47 | 47726166 48 | spiritmania 49 | 4719748 50 | 47179933 51 | 47278879 52 | 47175783 53 | 47172178 54 | 47279935 55 | 47278350 56 | 47179901 57 | 47276693 58 | 47281605 59 | 47173349 60 | 47277974 61 | 47180121 62 | 47175941 63 | 8794179 64 | 47175893 65 | 47276681 66 | 47176720 67 | 47280199 68 | 47176886 69 | 47174688 70 | 47277171 71 | 47274391 72 | 47273714 73 | 47180946 74 | 3743642 75 | ellenduyuan 76 | 47174813 77 | 47174896 78 | 47173478 79 | 47171996 80 | 46877822 81 | 47279948 82 | 47174887 83 | 47175815 84 | rightgame 85 | 47174099 86 | 47173649 87 | 47171971 88 | 47174562 89 | 47171910 90 | 47173883 91 | 47274192 92 | 47273564 93 | 47272947 94 | iysm 95 | xiaoxibob 96 | 47281743 97 | philiplicheng 98 | 4362373 99 | 47179359 100 | 47179245 101 | 4483446 102 | godot0 103 | 45078148 104 | chen1776 105 | 46131293 106 | 3715352 107 | dyingsun1991 108 | wolfox165 109 | 1927705 110 | albertliu 111 | 34608306 112 | dmchang 113 | 2338358 114 | Ryugagotoku 115 | 35499623 116 | 2099293 117 | 35867333 118 | Debail 119 | dandan204 120 | MrLivre 121 | shub2b 122 | 39203673 123 | deathandecay 124 | 37918295 125 | 37823104 126 | 3753221 127 | 32036179 128 | 16403029 129 | 25884374 130 | 36530622 131 | chouning 132 | 29338911 133 | 36309363 134 | 36121034 135 | 13891846 136 | barrywater 137 | lunaismoon 138 | lsm03624 139 | comb 140 | 2809344 141 | 3646733 142 | 30995063 143 | houjianyu84 144 | 31137946 145 | 2785212 146 | 2302788 147 | g9alan 148 | 1637840 149 | 32521887 150 | 29122796 151 | 1904996 152 | 30002090 153 | 16988656 154 | 27321150 155 | lqlr007 156 | Minkaluo 157 | sissia 158 | 4203251 159 | ahmatuyghur 160 | 2903071 161 | jgf114k 162 | 1214749 163 | 3235316 164 | 4414716 165 | oberstan99 166 | 2127037 167 | cc-design 168 | hellovln 169 | 4904420 170 | xunzhaosuolun 171 | flyine-seasky 172 | 1359940 173 | 2294524 174 | decklee 175 | suiyc 176 | 2061238 177 | Usami 178 | 1830966 179 | Lan_xiaowei 180 | 4084603 181 | 4083928 182 | rabbitcharlie 183 | redswallow 184 | r.c 185 | un07 186 | henrydark 187 | aiqusanluo 188 | 1513253 189 | biggreenbug 190 | sanzomaldini 191 | Jaryn 192 | david880614 193 | bookknight 194 | MrShibaken 195 | airdreams 196 | fang-zhang 197 | 2861202 198 | shaozhai 199 | verybad 200 | Allenxie 201 | stiles 202 | -------------------------------------------------------------------------------- /sample_data/book.1003479.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 2636428 3 | 58821709 4 | twang0475 5 | 59138059 6 | 52327807 7 | scsuper 8 | libin65316 9 | 59012737 10 | 59149874 11 | qiaokelijia 12 | 58694609 13 | 41070020 14 | 2076222 15 | sexting 16 | jer520 17 | 59141404 18 | 59139969 19 | 55334104 20 | 41039795 21 | islander 22 | tica 23 | 57164365 24 | 51856240 25 | 46837106 26 | mecad 27 | minglang2012 28 | 46461819 29 | 57860447 30 | scortyuer 31 | 4141558 32 | it-is-tornado 33 | sarahton 34 | 36416312 35 | 38047101 36 | nuonuo1989 37 | 36667614 38 | 57531401 39 | 43460220 40 | 59061131 41 | 58379555 42 | 1550318 43 | lovejimmycat 44 | spongbob 45 | 58540231 46 | 48644985 47 | transpace 48 | 52359575 49 | 48548955 50 | 2546802 51 | 59011100 52 | 1730862 53 | 48847376 54 | jin0937 55 | 58956763 56 | 48267344 57 | 52362673 58 | 48112400 59 | 30563037 60 | 45483721 61 | zhangweisuo 62 | 1618738 63 | 58967732 64 | 55364784 65 | 58964211 66 | nicolas-lou 67 | 4572808 68 | 58953984 69 | same5542 70 | Shichengni 71 | granero 72 | 58947779 73 | yels 74 | marsul 75 | AbracadabraFree 76 | 58614162 77 | 49797271 78 | Uatchet 79 | 4791170 80 | omh305 81 | nana1226 82 | 44937328 83 | 39767546 84 | 58438863 85 | 47125969 86 | ashenlaiye 87 | 3808805 88 | footstepmsn 89 | 54002238 90 | xichuang 91 | 37813838 92 | Iris0714 93 | pacso 94 | 58866178 95 | 58613377 96 | 43667679 97 | 51806587 98 | 30281911 99 | 3567005 100 | 45711247 101 | 53166845 102 | 46341474 103 | 44809610 104 | xueyuanchen 105 | merleau 106 | xundan0708 107 | 52166390 108 | ju1992 109 | 47800172 110 | solanda 111 | 58799518 112 | 54058902 113 | 3758998 114 | 2367819 115 | 4785073 116 | 58788222 117 | 58782584 118 | 49509362 119 | fengstudio 120 | seven7-Up 121 | 51491246 122 | 3925786 123 | 28304813 124 | 55477920 125 | 51094826 126 | 32574652 127 | k7kk7kk7k 128 | 55005924 129 | bbq2008 130 | 54506942 131 | 53796563 132 | tanyumofan1989 133 | 58695587 134 | YesIDO. 135 | naturelight 136 | 53573288 137 | 27624872 138 | 34916762 139 | 48218320 140 | 58590897 141 | baum 142 | guoxiaopku 143 | 2909306 144 | dairw 145 | 1140588 146 | 50061058 147 | burning80 148 | 28224365 149 | amber1993 150 | wangqinsheng 151 | 3575901 152 | 58328436 153 | liz0326 154 | 58657014 155 | 44120649 156 | gentleming 157 | 12172447 158 | 49867816 159 | 32748023 160 | 43963776 161 | 1153279 162 | 2187539 163 | XOXOXOXOXOXO 164 | Ericwenzhe 165 | qinyi9966 166 | 57967874 167 | ciqingkedai 168 | 58411889 169 | 33536216 170 | silence0517 171 | sophiahe238 172 | xugaofei 173 | 32856252 174 | zidaofang 175 | 2335720 176 | 2530192 177 | cheshamim 178 | Captain_T 179 | 50510909 180 | 47271257 181 | 58582958 182 | yuyouting 183 | minruidi 184 | 55504645 185 | wp_suimu 186 | 53868001 187 | 49317055 188 | 58267997 189 | 4498552 190 | 58547068 191 | yofeng 192 | kanmenlaohan 193 | Ray2008 194 | flycolorice 195 | liwei551x 196 | calledjade 197 | 36708459 198 | 47118130 199 | 49966308 200 | 4129938 201 | -------------------------------------------------------------------------------- /sample_data/book.1003646.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 59176145 3 | 29143374 4 | yangxiuhong 5 | minesafy 6 | 58749646 7 | 52094237 8 | 2600596 9 | bambe 10 | 47247066 11 | 49436960 12 | chenge5000 13 | 57732263 14 | padfoot 15 | JaneFreeman 16 | evencom 17 | 58721066 18 | nauy 19 | 50120725 20 | 56390401 21 | 5043016 22 | 58583841 23 | hahaha111 24 | teddy9076 25 | 47487657 26 | C1W 27 | 2124818 28 | 49496009 29 | 53864258 30 | 29841233 31 | 36635863 32 | 1508531 33 | foxra 34 | sunnan515 35 | jinhongliu 36 | 2870355 37 | xisahala 38 | 48436006 39 | tz2011 40 | siegfriedliang 41 | 37009398 42 | 11955949 43 | 5580958 44 | 54549926 45 | kingofshou 46 | 38721754 47 | 30056454 48 | 51246629 49 | 3976541 50 | 53549999 51 | 4227340 52 | 53930547 53 | 3542803 54 | 57496548 55 | wuzf 56 | 11166766 57 | 53320539 58 | 43685879 59 | 55274514 60 | ssssyy 61 | 54843419 62 | mixinzuiyu 63 | zxcsdf 64 | 48505486 65 | SummerTan 66 | deresa 67 | 32381535 68 | 4051316 69 | kui_jin 70 | 48695571 71 | 37946731 72 | 45346783 73 | 1487079 74 | 45536640 75 | 4533936 76 | 2653510 77 | btwhy 78 | tinyheng 79 | 54978816 80 | nierq2918 81 | 37066388 82 | 45783742 83 | 54754225 84 | 33961921 85 | 48396482 86 | xiaopin7949 87 | 50633122 88 | caijunxing 89 | xie723star 90 | 3320267 91 | wanshangyi 92 | merlin.zhang 93 | hettich12 94 | kolzybe 95 | niceguy90 96 | 52474695 97 | 3535425 98 | 56157979 99 | blunder 100 | 56149924 101 | echolu 102 | 53534159 103 | 56082714 104 | 48513852 105 | 2198737 106 | wlgyyk 107 | szeze 108 | 43648407 109 | 49669592 110 | 1393017 111 | 2416695 112 | funwin 113 | SaberMelancholy 114 | feiniao0601 115 | yifei1987 116 | laolei19900613 117 | 44887525 118 | 34004703 119 | 54996015 120 | 32277544 121 | 4479044 122 | yuenlong 123 | k-pc 124 | AndreaBocelli 125 | 39008216 126 | 8654299 127 | 41059092 128 | 49160051 129 | 36575558 130 | kalee12 131 | wssfsong 132 | mabelily 133 | 45507861 134 | relaxdad 135 | vvl 136 | 54682033 137 | droomsmith 138 | 42003350 139 | xi_ang 140 | vegetablesh 141 | ce1 142 | amaz 143 | 35377341 144 | 40135086 145 | 53707544 146 | 2458389 147 | shi_chen 148 | Drjudy 149 | 2782511 150 | 25468044 151 | cnaqi 152 | 42090750 153 | 31666949 154 | yingjian 155 | 52616475 156 | 1274910 157 | yizilee0715 158 | jayuanlin 159 | 49860469 160 | 50874986 161 | chopinfisher 162 | 46842406 163 | chenzhibei 164 | 50432136 165 | nefer_miwu 166 | 2464026 167 | 15010556 168 | 49460703 169 | 47408307 170 | vivaseaside 171 | violette9 172 | 53675987 173 | niupaifan 174 | 36684315 175 | 26219594 176 | 4204840 177 | camoBap 178 | fangshi 179 | 1239751 180 | 53187267 181 | felicitymomo 182 | Xsiwei 183 | 35342547 184 | 2999746 185 | 48219041 186 | beautifulsmile 187 | pikachu3271 188 | 42490916 189 | zhangxunnj 190 | 23430325 191 | tianbiafeng 192 | heroius 193 | zhegelm 194 | 50763701 195 | donnychn 196 | ttlovett 197 | 53058832 198 | 3324980 199 | -------------------------------------------------------------------------------- /sample_data/book.1004118.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 49421150 3 | booksfox 4 | 40529195 5 | Paranoidc 6 | 55597489 7 | hnhzsw 8 | 43445235 9 | 52770503 10 | 58701925 11 | 31997832 12 | 46253376 13 | 37181750 14 | 57377148 15 | 43884694 16 | sunshinepig 17 | 52758353 18 | chriswangbo 19 | 58007431 20 | 3340153 21 | laky 22 | 49445106 23 | 48436006 24 | arvin626 25 | dkduke 26 | jordanfung 27 | moduzhe 28 | njsquirrel 29 | 51606646 30 | alanmars 31 | 39376867 32 | 48370272 33 | 53478694 34 | 40750338 35 | littlechuer 36 | 36509094 37 | 52712746 38 | nownornos 39 | 57359378 40 | 48137751 41 | 1734829 42 | 4536368 43 | 57159015 44 | xiaolinan 45 | 2748579 46 | haydenmouse 47 | 48126569 48 | gabriel.yu 49 | 2382790 50 | 18579847 51 | 28434923 52 | 28118458 53 | 27343296 54 | 17343388 55 | 34200901 56 | 40575204 57 | goodlive 58 | 56843995 59 | 56807142 60 | tethaixi 61 | 49330686 62 | 2801784 63 | leixiaoming 64 | keneas0083 65 | 52547769 66 | 50716099 67 | foying 68 | 2369600 69 | w777 70 | 50761887 71 | 1425178 72 | 4009911 73 | 55557841 74 | FreeSee 75 | liaofeng 76 | i_foreverlove 77 | 47309406 78 | melacl9351 79 | 55941942 80 | 28857856 81 | 33452973 82 | woaixiaoyao5402 83 | 55749410 84 | tiemo 85 | 54918467 86 | 41408294 87 | jsbywsyr 88 | flotter 89 | 54881307 90 | 54405981 91 | 54575800 92 | 55287331 93 | 2917172 94 | 2533330 95 | 49615514 96 | damndreamer 97 | mssv12dec 98 | 54871837 99 | jqong1 100 | 1514279 101 | 54491491 102 | 49315195 103 | 9966532 104 | lvxiao 105 | 50438430 106 | chongerliang 107 | vleisure 108 | wepkshen 109 | durbay 110 | hongdoo 111 | 36298457 112 | 4316720 113 | 49189577 114 | 51573627 115 | 15178670 116 | ahxxm 117 | princesssophia 118 | 6615508 119 | ananmaomi 120 | 46575659 121 | 44378802 122 | 44952339 123 | David07 124 | 52151812 125 | laimq2011 126 | 43811387 127 | rubywoo 128 | lovelidexiang 129 | 53659981 130 | Joyinwonderland 131 | yatoupianzi 132 | jopees 133 | 4130702 134 | ila2002 135 | 42839457 136 | 53280175 137 | 53379531 138 | Jusitn 139 | 39944374 140 | 38513359 141 | zoetantan 142 | 50938721 143 | sceny 144 | xuquanzuo 145 | bucket 146 | doubancct 147 | 52658187 148 | 52903764 149 | 43917058 150 | shwutongyu 151 | wqsmile 152 | 52850453 153 | AlionL3 154 | 52362657 155 | 2538812 156 | 43254552 157 | ymt2458 158 | finehelen 159 | nbnlive 160 | PUNCTUM 161 | 4814353 162 | Vivian.x 163 | u2jenna 164 | 52459059 165 | 2301437 166 | 48902590 167 | 37765806 168 | 39687509 169 | 52241004 170 | Carol_Wen 171 | yihly 172 | lxqparadise 173 | 11696375 174 | 52342093 175 | 52354975 176 | zachho 177 | 51404384 178 | zengtian 179 | orange7 180 | 44551372 181 | 14194497 182 | yegg03503122 183 | 51967750 184 | cerebralway54 185 | 49687306 186 | 14313588 187 | frankietan 188 | magrathea 189 | maolingyun 190 | tonylu 191 | 42000757 192 | 1653302 193 | 1445134 194 | 40833540 195 | -------------------------------------------------------------------------------- /sample_data/book.1004325.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 23036522 3 | 50508828 4 | 47551603 5 | wybysslll 6 | 23481237 7 | 49811293 8 | 53649887 9 | zhangchen1228 10 | redtin 11 | shadyyang 12 | 57751431 13 | 53930547 14 | hnrain 15 | 49729808 16 | wiwibear 17 | 1472286 18 | 44228855 19 | 24547228 20 | 35735913 21 | renyikouyu 22 | yqm 23 | 55617707 24 | leiwong 25 | 40325078 26 | greatabel 27 | 48137751 28 | vxlj 29 | 2179307 30 | 50092007 31 | partric 32 | 58565000 33 | Alonesss 34 | 56782476 35 | 57243365 36 | 48623088 37 | kokia 38 | 5043016 39 | 37018308 40 | 29026934 41 | jerry0811 42 | 37897707 43 | pw2012 44 | 2118655 45 | 55556973 46 | mido 47 | 47445828 48 | 2416322 49 | mao001 50 | 20363107 51 | 51214578 52 | 58384916 53 | psywen 54 | 3595015 55 | ninenid 56 | reelee 57 | solo-l-c 58 | 50597871 59 | 58140445 60 | 38470954 61 | likuku 62 | luckandjoy 63 | 52567751 64 | 4151484 65 | 52012615 66 | shiyao0206 67 | readroy 68 | 26172164 69 | 48436006 70 | 57596941 71 | 24370465 72 | 51260615 73 | 53900847 74 | 4231203 75 | 1099150 76 | 57952995 77 | baifasanqian 78 | bimon 79 | 34035453 80 | 53732341 81 | littlechuer 82 | Bernice0304 83 | 45365832 84 | 49163157 85 | 48504374 86 | 3942746 87 | 3993595 88 | 36679713 89 | tadpoledoll 90 | 4054263 91 | 4403287 92 | emmaluoyiting 93 | jianghang 94 | 2241234 95 | 39653571 96 | rolandcheng 97 | huhuzhu 98 | 45794276 99 | tytcnw 100 | 4634101 101 | 2033068 102 | 4750288 103 | 57332838 104 | 46850967 105 | 34040814 106 | yytv5 107 | Wsiku 108 | 57119569 109 | 46274331 110 | braisunmoonstar 111 | 52174606 112 | 25149870 113 | mztkb 114 | 51751002 115 | 43749147 116 | 41428008 117 | 2462754 118 | butterdoufly 119 | 49119666 120 | 49828169 121 | 57026695 122 | 57357143 123 | 41338064 124 | sheedroy 125 | yiri 126 | mailzhangxin 127 | 44356991 128 | 54573004 129 | 4404541 130 | 57220622 131 | zeyurowan 132 | xuelisha 133 | 2521077 134 | sweetie_orange 135 | scuxtt 136 | 2357265 137 | sunshinefog 138 | 54302675 139 | 54880361 140 | 56982378 141 | arestlee 142 | 8449203 143 | 40468006 144 | peachce 145 | Daniellq 146 | 8939886 147 | 33970708 148 | likalanyuki 149 | 6364521 150 | 49756686 151 | 33961921 152 | 48089905 153 | 50383560 154 | mixue-tymy 155 | 53290784 156 | 7856378 157 | 4019597 158 | zxiaoxiao 159 | wydhhhznydnx 160 | misspiano 161 | 56742170 162 | 3683938 163 | lliu7 164 | xiaomodaren 165 | babyeuph 166 | 55317406 167 | 51453317 168 | cross29 169 | 2818730 170 | kuake 171 | infinite180 172 | akabigbo 173 | shawsun 174 | 45484329 175 | 21039126 176 | 48418954 177 | 2592812 178 | 51306368 179 | 27479668 180 | gjx189 181 | yangqiaoqiao 182 | 53425774 183 | 45797085 184 | pandylong 185 | 41317103 186 | 48500958 187 | 56077237 188 | jopees 189 | smai2011 190 | 50655836 191 | 35486185 192 | 53648956 193 | 55819991 194 | 47028198 195 | craigfeng 196 | candiceXD 197 | -------------------------------------------------------------------------------- /sample_data/book.1004329.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 51421679 3 | sunyq 4 | 48319956 5 | 56378373 6 | dust1 7 | eagle200467 8 | 56149740 9 | 3069664 10 | chrisiron 11 | blackcoder 12 | 53163135 13 | 3326564 14 | 50295365 15 | 1975451 16 | 3908099 17 | 4103086 18 | 50953345 19 | 2091305 20 | 46879290 21 | 3556400 22 | 3818710 23 | 48767524 24 | jan_closer 25 | 10861840 26 | 26251026 27 | 51544567 28 | 48008370 29 | 51690619 30 | fweiming 31 | jackloveEva 32 | Z_H 33 | 30534443 34 | ZHOUYONGOK 35 | 54232704 36 | 51359230 37 | 50402399 38 | shysea101 39 | cosmopolitejun 40 | 56775278 41 | Neo1984 42 | 1066112 43 | hanzhao 44 | david-adam 45 | zhixi917 46 | 55785776 47 | suke999 48 | 53760155 49 | 54787682 50 | roverknight 51 | 34442217 52 | 48796696 53 | tingfengyee 54 | 3416474 55 | N-Arcola 56 | 46157708 57 | odile8837 58 | scorndefeat 59 | Kanyek 60 | pikai 61 | 48760865 62 | 48867533 63 | frankietan 64 | pkuss 65 | 47528112 66 | 27638025 67 | haoyuygj 68 | 3335174 69 | wuyou_s 70 | 44815083 71 | 41571358 72 | lyf 73 | 49971164 74 | dalio 75 | 48671980 76 | pengchengwang 77 | 2404701 78 | 50318704 79 | midbones 80 | Octavarium 81 | endlesssisyphus 82 | limbofive 83 | 1361312 84 | 48502266 85 | 47276342 86 | 47096277 87 | 48755171 88 | 48764780 89 | 48786946 90 | 48726805 91 | 49755152 92 | 48676700 93 | 48726655 94 | 48678593 95 | 48676891 96 | 3609391 97 | 48791308 98 | 48791155 99 | 48786581 100 | 48785438 101 | 48790498 102 | 34593051 103 | itwocold 104 | jamiet 105 | 48918240 106 | 49079597 107 | 48788757 108 | 48914642 109 | 3124762 110 | imagd 111 | sepyouyou 112 | 36634741 113 | 45394887 114 | 47749551 115 | 1763738 116 | shao085 117 | kief13muse 118 | rucmaxwell 119 | 40795755 120 | GhostWithBlade 121 | carfield_zsj 122 | 46991855 123 | 40373636 124 | 46302299 125 | Tesary 126 | 2059709 127 | shao.xiao.hai 128 | issac86 129 | liuxuehao 130 | 1018851 131 | foreverpenny 132 | 38815921 133 | JoshD 134 | frederickw 135 | mairui07 136 | Tocqueville 137 | 1608772 138 | tintin7 139 | whigzhou 140 | waynejiang 141 | 28928128 142 | 45312464 143 | stooo 144 | yuanyuan2319 145 | 1511508 146 | 1559636 147 | 38525815 148 | 33693149 149 | wunengzi 150 | kenyang 151 | nana1217 152 | 4740990 153 | 33017732 154 | 4445797 155 | 40378289 156 | idiotwaltz 157 | 33940204 158 | 2099293 159 | nicysweet 160 | 1432896 161 | haida 162 | langolier 163 | halfbed 164 | 27604524 165 | 28498205 166 | 38261119 167 | 3631474 168 | 1404316 169 | myqzy 170 | 2859012 171 | maoqijian1221 172 | 33620259 173 | 1050205 174 | cynicist2009 175 | 35701234 176 | 35934039 177 | nini1987 178 | xell 179 | Regina2007 180 | 33829224 181 | 2569200 182 | 2201448 183 | coldrush 184 | ouzi 185 | fenglinxian 186 | 2104174 187 | 1557375 188 | 3456269 189 | jiangchenyue 190 | 33776024 191 | lq21218 192 | 3659991 193 | stormtrooper 194 | 30452794 195 | sinphic 196 | 29966144 197 | juliacaesar 198 | arsyank 199 | -------------------------------------------------------------------------------- /sample_data/book.1004554.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 59160005 3 | 51875381 4 | 29143374 5 | yangxiuhong 6 | 58932208 7 | 58749646 8 | 52094237 9 | 47247066 10 | ding940731 11 | sb111222 12 | 44314318 13 | 3332814 14 | gsmaxwell 15 | 57502240 16 | padfoot 17 | 43274381 18 | gotohafo 19 | 58721066 20 | 47711767 21 | 56390401 22 | 5043016 23 | daydreamercici 24 | 49495355 25 | 48376188 26 | 34638402 27 | hahaha111 28 | zhaoziyuebz 29 | 57479223 30 | immisset 31 | 39735824 32 | 47487657 33 | heitao-1991 34 | madhatterlalice 35 | 2936031 36 | 50716099 37 | pergola 38 | guomeichen 39 | ssstttooo 40 | C1W 41 | 2124818 42 | 49496009 43 | 3555055 44 | efa7378 45 | 45105691 46 | 48815647 47 | 34179769 48 | 36635863 49 | 1508531 50 | annttt 51 | jinhongliu 52 | 2870355 53 | xisahala 54 | 56157979 55 | 48436006 56 | 48139597 57 | xietong 58 | cielover 59 | 11955949 60 | 5580958 61 | franklinton 62 | 3976541 63 | kittyjsj 64 | 53549999 65 | 3254234 66 | 4227340 67 | ayuready 68 | minjingdan 69 | 3542803 70 | oceanm 71 | 2227263 72 | 3214038 73 | 4715910 74 | 11166766 75 | 49615426 76 | 55274514 77 | 39368526 78 | 48505486 79 | 56360024 80 | 2554395 81 | 4051316 82 | florans 83 | kui_jin 84 | 37946731 85 | lunaberg 86 | 51006539 87 | 45346783 88 | 1487079 89 | 4533936 90 | QingTianChen 91 | 45536640 92 | tinyheng 93 | 54978816 94 | cinderlala 95 | evita-q 96 | 45783742 97 | 54754225 98 | 50721101 99 | 53243594 100 | jeffersontang 101 | 56831683 102 | 36943871 103 | 48396482 104 | silent. 105 | fanfan01fei 106 | caijunxing 107 | 2591343 108 | merlin.zhang 109 | 1826387 110 | 54578381 111 | Balacama 112 | 56576399 113 | hettich12 114 | justchenfei 115 | 56452328 116 | 52474695 117 | 3535425 118 | zhiaidafenqi 119 | blunder 120 | 55474164 121 | echolu 122 | kubreick 123 | 56082714 124 | 33907274 125 | 50517502 126 | 55769149 127 | 49669592 128 | glycoprotein 129 | mirror11 130 | 53098891 131 | 51422217 132 | ilovepjharvey 133 | 54740034 134 | 41231331 135 | 48340177 136 | 38259697 137 | 46321642 138 | 54996015 139 | 55293504 140 | johnnykwok 141 | 49513725 142 | 5876955 143 | 4479044 144 | 48807629 145 | moony213 146 | 2772099 147 | 3786341 148 | 8654299 149 | 41059092 150 | 54557053 151 | 1364737 152 | 49761291 153 | mabelily 154 | 45507861 155 | 50592625 156 | mylovevilla 157 | LuteLotus 158 | 54682033 159 | cloudless 160 | qingzi227 161 | 36073549 162 | mylittlefish 163 | 3052521 164 | xi_ang 165 | vegetablesh 166 | cfqjw 167 | fengling110119 168 | amaz 169 | 33074658 170 | 40133491 171 | halahala 172 | freizeit 173 | 2911545 174 | 40135086 175 | Dawn1 176 | 2458389 177 | Drjudy 178 | 47714380 179 | 27988166 180 | 32103788 181 | 25468044 182 | 42090750 183 | 49824502 184 | yingjian 185 | wanshangyi 186 | 4088183 187 | yizilee0715 188 | jayuanlin 189 | darlingtudai 190 | 36025465 191 | 53320539 192 | Happyeggy 193 | 46532133 194 | 30607969 195 | 53782340 196 | chopinfisher 197 | 47064379 198 | 52645625 199 | chenzhibei 200 | -------------------------------------------------------------------------------- /sample_data/book.1004574.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 51203372 3 | 26499376 4 | tuiju 5 | holym 6 | -------------------------------------------------------------------------------- /sample_data/book.1004821.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 59140870 3 | 2186544 4 | 57671589 5 | 36480922 6 | 25421977 7 | monsterzpc 8 | 2283116 9 | minelin 10 | 59154293 11 | annchen 12 | iScopes 13 | kakale 14 | vampire8 15 | 55607424 16 | 43806715 17 | polarisfang 18 | 49226013 19 | 59127185 20 | oliviahou 21 | 25726755 22 | yousay 23 | 47188215 24 | wujianwen1222 25 | 52639680 26 | 53009579 27 | 40302979 28 | liumhc 29 | 54261155 30 | 3610842 31 | 57629642 32 | wayfaring 33 | 4616188 34 | gjx189 35 | bloomfield 36 | 1850909 37 | 45611342 38 | jianyun 39 | 58394068 40 | 4254091 41 | 49468094 42 | 46374392 43 | 52406489 44 | nino117 45 | shinegarden 46 | 54925863 47 | 40737803 48 | 1105000 49 | xiongliu 50 | 58956763 51 | 58953984 52 | 58087052 53 | blorion 54 | tanxueye 55 | fancy_decode 56 | 39941129 57 | koalabc 58 | QUEIIE 59 | 57960611 60 | 54318841 61 | 58320545 62 | lukekuhn 63 | princesswan 64 | lex-c 65 | 48966975 66 | 49102028 67 | Apple_Coca 68 | qingxuefeihuai 69 | yamlion 70 | 1117904 71 | 54306385 72 | 56564139 73 | 2969683 74 | ginmomo 75 | killingdream 76 | 58836227 77 | 3642148 78 | 42240680 79 | 20154682 80 | lichtschall 81 | roseelf 82 | 58093988 83 | 15126439 84 | 54584093 85 | 52827701 86 | alset 87 | 1865657 88 | 57258434 89 | chang_tao 90 | 57094706 91 | 49288990 92 | 2361906 93 | 56334389 94 | yxypig3507 95 | 57306121 96 | 58739884 97 | windyhouse 98 | 54058902 99 | liangweiwei 100 | 1773450 101 | 54944775 102 | shinesui 103 | 3380383 104 | molizerd 105 | 55925167 106 | yungstedt 107 | 58689544 108 | lxlxxl 109 | Edith.ann 110 | 58679407 111 | joeyoooooo 112 | 41853972 113 | 45665756 114 | 57958911 115 | 3347972 116 | 58572946 117 | 46851319 118 | 54385479 119 | 5511890 120 | wyhech 121 | shuangliang320 122 | ohyesty 123 | taghill 124 | 58315747 125 | vivianxiong 126 | 57959369 127 | zifeiniu 128 | fengu 129 | solarwing 130 | zhijielee 131 | 36124524 132 | 57505337 133 | 58572828 134 | 49958472 135 | 49317055 136 | 2360477 137 | 47860574 138 | 49421391 139 | 49052822 140 | 56280910 141 | 57512378 142 | 58511618 143 | 1033279 144 | 51913544 145 | 4010011 146 | 2243954 147 | 42878113 148 | 2903830 149 | shirang 150 | 40479960 151 | 51331802 152 | rainbowZengHN 153 | tooque 154 | 58435921 155 | qinxiaoyi 156 | 25575938 157 | wangc5609 158 | 51607741 159 | 53856837 160 | uksas1988 161 | 51751002 162 | 2174513 163 | paradox906 164 | ludwiglau 165 | 54119515 166 | linkmeldy 167 | 1860007 168 | 34235141 169 | 44445157 170 | 2286075 171 | 54808994 172 | A-something 173 | SlimDevil 174 | 4395894 175 | wanzibupa 176 | 52627510 177 | 58165187 178 | feiiw 179 | 54856710 180 | 57962406 181 | 56458962 182 | 33664978 183 | 2541302 184 | 49813902 185 | terry0319 186 | 17718955 187 | 50888513 188 | 50077029 189 | 58256475 190 | 47604463 191 | 44446872 192 | zhouye33 193 | 48195541 194 | 54442710 195 | -------------------------------------------------------------------------------- /sample_data/book.1005193.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 38773418 3 | 2050311 4 | 3355347 5 | 47502919 6 | 28480387 7 | 50280855 8 | Swing105 9 | blue1992 10 | 57513066 11 | 50847396 12 | risndmes 13 | ivanty 14 | 53863767 15 | 59028619 16 | starslv 17 | CaptainClown 18 | 59028328 19 | oldboatman 20 | miao.xu 21 | 3783694 22 | 58774193 23 | wuqinhao 24 | sunshinywendyzh 25 | vincent_G 26 | 56558137 27 | 58876911 28 | pearl_luo 29 | Sweet_Salt 30 | 3301418 31 | ahhh 32 | jonnypig 33 | crossjae 34 | kamuisaoil 35 | 35906096 36 | zhaoxingstar 37 | mope333 38 | everyhappy 39 | firstfox 40 | denim 41 | phyllis823 42 | cynthia_nn_bbd 43 | keke_blue 44 | me59420 45 | vincentlau 46 | 3047429 47 | tutianning 48 | labuche 49 | ipis1987 50 | 41942617 51 | maxineY 52 | beka 53 | tongstone 54 | Sunshinelover 55 | huapigua 56 | kyle928 57 | Olorin 58 | insomiya 59 | 1434748 60 | sophielee87 61 | 2220828 62 | 31997832 63 | 49333429 64 | reikami 65 | 47071814 66 | 58760687 67 | 44217128 68 | 35523851 69 | 43328037 70 | 4431553 71 | zoe89 72 | unusualflower 73 | gmipad 74 | 36827633 75 | hanihoney 76 | 56743856 77 | 2327193 78 | conwood 79 | 51184510 80 | 45109467 81 | 58585727 82 | phillomia 83 | 58547090 84 | 52651577 85 | pigdatou 86 | HouseFive 87 | zuanshimao 88 | nicaiwoshishui 89 | 41207867 90 | Munkipaul 91 | 58507539 92 | kantet 93 | beebeer 94 | luocreeks 95 | cherryziyi 96 | 57490836 97 | feiyiyinewyork 98 | 34775524 99 | 58110434 100 | 13580771 101 | 45215866 102 | AndersonWalker 103 | 4550794 104 | 46828994 105 | 46737380 106 | 47074706 107 | myfengzi 108 | 36338773 109 | yao1201 110 | VickiElysium 111 | 49330399 112 | 53487317 113 | 47281940 114 | zoe-ouyang 115 | 2122320 116 | 3556738 117 | necko 118 | 50900042 119 | lvmang 120 | emilyandemily 121 | 52591514 122 | Eileen_Shao 123 | 30426853 124 | 49119666 125 | Antti 126 | 41080882 127 | Yeatsilence 128 | 51637241 129 | doubandashabi 130 | jianfeng123 131 | 58029750 132 | kostik 133 | eggshapedfred 134 | 1688067 135 | 34017649 136 | chenhongan 137 | kafuk 138 | steliano 139 | daredevil13 140 | riprip 141 | dreamlove 142 | 44494724 143 | xw0588 144 | Lelouche 145 | yeahzisue 146 | 41868023 147 | 42502695 148 | 46084750 149 | greatabel 150 | 34235141 151 | 49828244 152 | 58295567 153 | wanzhiyuan 154 | 4128723 155 | 54253664 156 | 43790304 157 | 30289861 158 | 57526326 159 | kaho117 160 | edinciple 161 | zhangyuexuan 162 | 57965998 163 | 58185010 164 | 48975477 165 | 34289095 166 | HDer 167 | newcentury 168 | 42050661 169 | limfreedom 170 | chuxiadenver 171 | lohill 172 | 45134374 173 | 3088721 174 | 15191045 175 | 54146796 176 | 56161116 177 | nolanhym 178 | xiaobus 179 | 29439127 180 | 43397170 181 | yysword 182 | kkw 183 | 57933044 184 | 4481850 185 | whf903 186 | doudoumama2 187 | 3514875 188 | oneselves 189 | 43424016 190 | cqymomo 191 | 48901186 192 | 2636875 193 | 35802456 194 | yxtsui 195 | 52839269 196 | 56783050 197 | pkmonk 198 | -------------------------------------------------------------------------------- /sample_data/book.1005521.csv: -------------------------------------------------------------------------------- 1 | ID 2 | yiranhyy 3 | 3925266 4 | 45281306 5 | 52451798 6 | 54410179 7 | 51159035 8 | tansydreamslink 9 | beenyo 10 | shop34087976 11 | huolinicking 12 | 59148729 13 | 47445828 14 | xiaoyuesaya 15 | 52620659 16 | OKDU 17 | 59043835 18 | jkbtan 19 | 58749646 20 | 56725552 21 | hanahcg 22 | 48972688 23 | 59103645 24 | tingeee 25 | dejeugd 26 | 59091763 27 | 43386619 28 | 51333563 29 | 26474790 30 | 57907092 31 | 21103884 32 | 43284981 33 | 56295291 34 | hiddenface 35 | 55504645 36 | 58027280 37 | 59078204 38 | 56558907 39 | tomorrowland 40 | 2480424 41 | 3675813 42 | 49234369 43 | 56106819 44 | wranran 45 | 51610439 46 | 53826532 47 | 58318637 48 | minglang2012 49 | 56270845 50 | 59007863 51 | 58591811 52 | 56145950 53 | 2826347 54 | 4699892 55 | 59000465 56 | yestrovsky 57 | S-oo 58 | 40929369 59 | greensylviaq 60 | 49852678 61 | fay51 62 | 29795143 63 | 32983945 64 | 58900325 65 | 54459924 66 | maimaibupang 67 | 47887522 68 | 42877231 69 | 58979301 70 | sun17shine 71 | 41389516 72 | 58965206 73 | dolly27 74 | beautifuguniang 75 | 52967264 76 | 45611342 77 | 50402388 78 | 54767229 79 | irisbaby1987 80 | dawn49 81 | 47414237 82 | yanyei 83 | xuczhe 84 | 45404060 85 | 52900219 86 | 52744740 87 | 57268674 88 | 52128286 89 | 52034003 90 | 54318841 91 | 41772923 92 | zhangxiyunmg 93 | qingxuefeihuai 94 | 58576150 95 | valentinewwt 96 | 49194613 97 | lethexeres 98 | 53450267 99 | 13011396 100 | 55617707 101 | 55490266 102 | shuyingheng 103 | 54603403 104 | 40511197 105 | 56791422 106 | 48723887 107 | 38546114 108 | heyuan 109 | 32745955 110 | guiqiwuyu 111 | 47895980 112 | 56252592 113 | 52090447 114 | 58847141 115 | 35834282 116 | 58650060 117 | 52780126 118 | 41968715 119 | 49146270 120 | 52721985 121 | 57973158 122 | 35769554 123 | 44604496 124 | hupp 125 | 47610928 126 | baozidaren 127 | 41513310 128 | 43859468 129 | cheungchiminh 130 | 35164820 131 | 3719508 132 | SALUOER 133 | fatiaoyun 134 | kindadai 135 | 49842791 136 | 39167140 137 | 58710042 138 | 58661119 139 | 57393397 140 | 2072609 141 | maxblackmore 142 | 57661551 143 | 48722993 144 | 52673779 145 | 58692375 146 | 50528008 147 | eyin 148 | lovehour 149 | 50531723 150 | 54729273 151 | 32596177 152 | 58735647 153 | williamkl 154 | veralaurant 155 | maixiaohuang-la 156 | christine1234 157 | 50102099 158 | 4640174 159 | 48031405 160 | CrazyAmazing 161 | 49994296 162 | 49220102 163 | 53291205 164 | 3229604 165 | Alonesss 166 | 46234592 167 | 47850808 168 | theonlytheone 169 | 55893505 170 | 48365323 171 | YeeMee 172 | 53933964 173 | 44186553 174 | 47452646 175 | 7669217 176 | 57502756 177 | 58193310 178 | sellthetime 179 | 25387256 180 | shenhuiwen 181 | 53600838 182 | taghill 183 | 50330578 184 | 52480060 185 | 11558231 186 | ke-u 187 | 58592422 188 | 55957894 189 | Ayrin 190 | 57475589 191 | 49812359 192 | 48701824 193 | YeppieC 194 | 58285385 195 | 52336258 196 | 50510909 197 | 58587755 198 | 36185662 199 | chanxm 200 | 15579919 201 | -------------------------------------------------------------------------------- /sample_data/book.1005680.csv: -------------------------------------------------------------------------------- 1 | ID 2 | niangaotuantuan 3 | 4809470 4 | never_knows 5 | andyhui19850214 6 | 2040452 7 | 1107412 8 | -------------------------------------------------------------------------------- /sample_data/book.1005813.csv: -------------------------------------------------------------------------------- 1 | ID 2 | Z_H 3 | 1879128 4 | 54979738 5 | 54584093 6 | 56385131 7 | 44571329 8 | ciqingkedai 9 | 36634741 10 | 48319956 11 | xiuluochang 12 | 58217302 13 | 56378373 14 | eagle200467 15 | 2061238 16 | sqd080 17 | 47914408 18 | wanjun829 19 | chrisiron 20 | blackcoder 21 | 16265180 22 | youngsinger 23 | 1839261 24 | 2619235 25 | 51487701 26 | 53731365 27 | 2134224 28 | 8709520 29 | 1871163 30 | 37938927 31 | 50651363 32 | 48564244 33 | 30107469 34 | 2578183 35 | 49517610 36 | 43162509 37 | 52793869 38 | 12062260 39 | 2485261 40 | 29958855 41 | 3522296 42 | 49540364 43 | 38762548 44 | 40015896 45 | 51142854 46 | 46144077 47 | 49601418 48 | 17411355 49 | 47090076 50 | 49622460 51 | 49204022 52 | 53997695 53 | 37217226 54 | 15326897 55 | 42113238 56 | 47504660 57 | 52610434 58 | 15110102 59 | 46861531 60 | 1883265 61 | 2531956 62 | 1434437 63 | 3795552 64 | 54776786 65 | 13180541 66 | marinebookstore 67 | momuboxie 68 | sultanate 69 | yzzs 70 | huangpahu 71 | teais 72 | 52788741 73 | 51181532 74 | 1512688 75 | glymh 76 | 51403008 77 | 3268681 78 | 55819691 79 | cosmopolitejun 80 | 36359622 81 | 50809545 82 | minervasowl 83 | mylovedones 84 | 2457548 85 | 39856341 86 | 55900505 87 | 1541845 88 | 1529891 89 | david-adam 90 | 55592869 91 | jackloveEva 92 | geogre 93 | MyPega 94 | 47613577 95 | 2079412 96 | 50827625 97 | 44265668 98 | 55403172 99 | lengerxia 100 | 3721037 101 | 40273242 102 | 26265253 103 | jiangxulin 104 | 54418099 105 | 49222037 106 | 3916127 107 | suke999 108 | deguojojo 109 | 2714306 110 | 31880304 111 | lyfycensia 112 | minstrel007 113 | 45326485 114 | 51392706 115 | cheye 116 | millet.dust 117 | 43104720 118 | cghdtc 119 | 38437113 120 | jianbyan 121 | 27191674 122 | 3345902 123 | 3799028 124 | wangsheng37 125 | 52372575 126 | 48504127 127 | 49213484 128 | 48756360 129 | lisalegolas 130 | 48861756 131 | 52236605 132 | tintin7 133 | withoutbe 134 | 4226263 135 | CHjoker 136 | 36438099 137 | lupipi 138 | shirleymanna 139 | shoukou 140 | someday1988 141 | 26417877 142 | 48026302 143 | lyf 144 | 1126621 145 | 51198685 146 | Milton 147 | roegao 148 | 48645495 149 | 49998983 150 | qiangchai 151 | linsinuo 152 | everyfish 153 | ninion 154 | 50768991 155 | 41024009 156 | 50573314 157 | 33330929 158 | sangedaibiao 159 | InsaneDrifter 160 | malai 161 | guoqianshan 162 | vangoghsmood 163 | 43607311 164 | 43885181 165 | 4401077 166 | 39315577 167 | 48809293 168 | itwocold 169 | oldpanfox 170 | ankeren 171 | limbofive 172 | polyimide 173 | wangting0318 174 | 1361312 175 | 47174099 176 | 47276373 177 | 47283072 178 | 1988262 179 | 48766539 180 | 48726742 181 | 48820881 182 | 48757289 183 | realvander 184 | 49755152 185 | 48662346 186 | 48660463 187 | 44121693 188 | 49680161 189 | 48656532 190 | 48683094 191 | 47175965 192 | 47175202 193 | 48801893 194 | yangyaying 195 | 1130898 196 | 48802760 197 | 43571307 198 | 3609391 199 | 48790746 200 | 48784950 201 | -------------------------------------------------------------------------------- /sample_data/book.1005918.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 45159768 3 | 52550172 4 | susubestop 5 | 41628587 6 | 27528469 7 | imanust 8 | 59186402 9 | 46195114 10 | 44824639 11 | 54610765 12 | 54321486 13 | shenxuanye 14 | 59058896 15 | kakale 16 | 47927441 17 | 53831402 18 | caozili 19 | 59043835 20 | jkbtan 21 | 46816592 22 | 33536361 23 | 58756476 24 | 51333563 25 | 51248034 26 | 40138591 27 | 59049996 28 | wranran 29 | 51112968 30 | 58650060 31 | 58540448 32 | 56145950 33 | 56716954 34 | 58079292 35 | 41830263 36 | 3269392 37 | 59030492 38 | 58394068 39 | 49271318 40 | fay51 41 | 32983945 42 | careheart 43 | 57297197 44 | 58900325 45 | hiyilin 46 | 50783025 47 | 56035497 48 | 56572306 49 | 58979301 50 | 3280988 51 | 54343226 52 | 41389516 53 | 58965206 54 | 56031829 55 | jancee 56 | 50511017 57 | dawn49 58 | 51832631 59 | solodeer 60 | Sun__Babe 61 | 57799868 62 | 37705566 63 | 58902646 64 | 54318841 65 | shaine 66 | 2212623 67 | 58705266 68 | 42132956 69 | lethexeres 70 | 58658622 71 | yuhou1022 72 | 45631572 73 | zyjrara 74 | 54928991 75 | 53134817 76 | rubiawu 77 | charles11 78 | 42877711 79 | 58857448 80 | jeepnow 81 | 50744906 82 | 48071944 83 | 58850367 84 | 35834282 85 | 57455981 86 | 50074455 87 | 50975539 88 | 48589464 89 | allenyip 90 | 18080741 91 | 41964843 92 | 58317992 93 | 58795560 94 | 4264400 95 | 56117740 96 | 57661551 97 | 58692375 98 | 54259963 99 | 2812177 100 | 9637107 101 | easywei 102 | 44385401 103 | aggredior 104 | 5382744 105 | 47504901 106 | 58462007 107 | 42398810 108 | KissLoveHug 109 | 57852215 110 | gracesunyueyi 111 | 58454226 112 | Alonesss 113 | 47711767 114 | 52541103 115 | 58649346 116 | eagleeyed2288 117 | UJustYou 118 | lyxaijaychou 119 | 51918600 120 | 58627503 121 | 54967554 122 | 58626195 123 | 57959369 124 | 53845420 125 | 53216873 126 | 58547068 127 | 58558581 128 | 4000090 129 | 3433511 130 | 58449731 131 | 36190299 132 | 45493298 133 | silenceJ 134 | 51317977 135 | sensebb 136 | jinnjinnee 137 | zounijiangnan 138 | 50490604 139 | 3886687 140 | 5606294 141 | 58516752 142 | teddy9076 143 | 50818530 144 | 58025436 145 | kloudyes 146 | l0ck 147 | 48728897 148 | 39300286 149 | 40300406 150 | 49683103 151 | 32633465 152 | caiyanwang 153 | 50522190 154 | 38627140 155 | 52011031 156 | tarjanemo 157 | 58029750 158 | 40479960 159 | 58061173 160 | Carol.0.Line 161 | 4525478 162 | 1377987 163 | 51010918 164 | 15944794 165 | 49970330 166 | 53799482 167 | 52441204 168 | 58079272 169 | 53012624 170 | 3363546 171 | 7259477 172 | 58354750 173 | rukiblessreila 174 | 56695627 175 | 58352744 176 | 45382313 177 | 54355939 178 | 52840568 179 | 47838229 180 | 44698267 181 | 53058382 182 | Roshanmonster 183 | 50004260 184 | Lycoris-7 185 | 58307716 186 | 44384215 187 | lrodin 188 | 7329190 189 | 3306686 190 | 31126770 191 | mucy95 192 | 38160359 193 | sophiedou 194 | 47636857 195 | 49235839 196 | 57998468 197 | 49885893 198 | -------------------------------------------------------------------------------- /sample_data/book.1006197.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 51179915 3 | 56342081 4 | 59186402 5 | 50407394 6 | mumumiss 7 | mojingqi 8 | 55017918 9 | 44824639 10 | 47983463 11 | 52183493 12 | graceqiu 13 | ATPud 14 | shenxuanye 15 | 46939227 16 | 9229436 17 | 59147947 18 | kakale 19 | 59143450 20 | 47927441 21 | 52649316 22 | 46420826 23 | 55504645 24 | 59032627 25 | 55534467 26 | 2052291 27 | 48469414 28 | 44533310 29 | 59043835 30 | jkbtan 31 | 56759712 32 | 46816592 33 | cloudy1031 34 | 52925957 35 | 52758065 36 | 52994022 37 | 47337794 38 | 48214373 39 | 59068897 40 | insummer 41 | 51248034 42 | 59016037 43 | 49958379 44 | 4144591 45 | 56106819 46 | 47279734 47 | 58981183 48 | 56022694 49 | 38865004 50 | 58318637 51 | 58650060 52 | ilovediane 53 | 56145950 54 | 48503745 55 | 58085988 56 | penicillin925 57 | 56716954 58 | 53653938 59 | 42980897 60 | 57369201 61 | 4630164 62 | 58394068 63 | 1153279 64 | 49271318 65 | bailufei 66 | xxmatlab 67 | 28809511 68 | 55793575 69 | 32983945 70 | careheart 71 | Lady-Edge 72 | 58776721 73 | 58986909 74 | 58990839 75 | 50783025 76 | 49840632 77 | freedomania 78 | 58986267 79 | yongyongxiong 80 | 58979301 81 | 3280988 82 | 55704737 83 | 41389516 84 | 53154784 85 | 58965206 86 | 52126877 87 | 56663831 88 | dolly27 89 | 58526992 90 | 3519313 91 | 55984676 92 | 53791497 93 | 58928167 94 | 49396294 95 | arnk 96 | 37867291 97 | Lynniass 98 | 51833652 99 | 58902675 100 | Pw_L 101 | rob92 102 | 47762967 103 | 2416648 104 | 58320545 105 | 54876674 106 | 47717470 107 | 58925320 108 | 3567005 109 | 44178232 110 | 50246890 111 | 58424632 112 | yizhiforever 113 | 2455569 114 | 42132956 115 | youxia1003 116 | 38690068 117 | 27135255 118 | yuhou1022 119 | 55008297 120 | 58658622 121 | 26601974 122 | 41829568 123 | 48961781 124 | 50049945 125 | kinphone 126 | charles11 127 | jjl527 128 | 57309778 129 | 4518572 130 | 58835479 131 | 42877711 132 | 49214323 133 | loxz 134 | jeepnow 135 | 2291769 136 | zenithsl 137 | funnnn 138 | 51039706 139 | panwangxiatian 140 | 57455981 141 | avalyn 142 | 58818351 143 | 3642148 144 | 1437775 145 | 52515675 146 | 53742913 147 | 35834282 148 | 52378278 149 | stella900623 150 | roseelf 151 | 49079786 152 | 39209086 153 | Question_kid 154 | 42410887 155 | 37709876 156 | dosu135 157 | 44121693 158 | 53960370 159 | 58782238 160 | padfoot 161 | 4046573 162 | 54692348 163 | 4835293 164 | KevinDChen 165 | 58455849 166 | 43084421 167 | 54956469 168 | 44385401 169 | 5382744 170 | 50701582 171 | Cesart 172 | 47504901 173 | 57649829 174 | green2 175 | xiaowuzhe1987 176 | lusa 177 | 57852215 178 | 52832837 179 | loriensphinx 180 | gracesunyueyi 181 | ear333 182 | 56386797 183 | jyzqwendy 184 | 42113907 185 | 58454226 186 | Arry 187 | 56018817 188 | 2254641 189 | 46425299 190 | 47711767 191 | 45977851 192 | 3959187 193 | 43301518 194 | ltmoonprincess 195 | 22900768 196 | 1579891 197 | 47971152 198 | 36021040 199 | -------------------------------------------------------------------------------- /sample_data/book.1006214.csv: -------------------------------------------------------------------------------- 1 | ID 2 | crowningchan 3 | 58047761 4 | sherryplus 5 | 4007829 6 | 52342345 7 | 2846684 8 | 25724605 9 | 50026083 10 | 49813902 11 | 54688499 12 | 42849993 13 | 4327467 14 | 54545916 15 | 23537537 16 | oyoushu 17 | youyong01 18 | zweam 19 | jinzhengu 20 | 2194622 21 | 8878488 22 | 54400949 23 | shallyce 24 | zss360 25 | splendor_19 26 | 53941469 27 | suiyun-roy 28 | changwong 29 | 35208504 30 | 1299173 31 | 39880758 32 | 49375802 33 | xilengyinyue 34 | guaici 35 | tomatof 36 | franklin.poe 37 | 51166873 38 | cccolor 39 | sophiecc 40 | Cynicalmonk 41 | 1070044 42 | 46094956 43 | yixiaoli 44 | lyanfly 45 | an_zhi 46 | privatebronze 47 | 9280494 48 | chenyoki 49 | 47919036 50 | 2194719 51 | badboydou 52 | 34153916 53 | 3533024 54 | 4218827 55 | viperchaos 56 | Luna-cat 57 | 3683523 58 | 2262346 59 | 4288733 60 | cosmopolite7 61 | 32285001 62 | 46576383 63 | zhuyan-1 64 | 23601070 65 | 38328082 66 | 1743172 67 | 46338196 68 | 5238506 69 | 40686079 70 | frankgj 71 | yumuwan 72 | 3259874 73 | artfoto 74 | 34060075 75 | Salom 76 | 41825000 77 | artwe 78 | byterain 79 | nauyf 80 | 41138718 81 | xbde2008 82 | 44284378 83 | 41053374 84 | 1323773 85 | 16121581 86 | mofei2012 87 | chixiachixia 88 | xiaolichen 89 | 1165510 90 | 39959927 91 | tabu 92 | aicross 93 | 33895850 94 | amyzong 95 | duesouth 96 | cndychen 97 | 31561604 98 | 1812796 99 | peachfay 100 | jiangF 101 | xuyueting 102 | 3902064 103 | 2790436 104 | szeze 105 | 4203342 106 | jiugedian 107 | 17887952 108 | ling-zi 109 | 1365408 110 | 34647622 111 | 3388153 112 | 1867377 113 | seleneneverland 114 | 26026284 115 | 35980148 116 | 1503470 117 | 27451996 118 | 33748857 119 | 1197951 120 | mindseven 121 | 26272292 122 | 34568857 123 | 22625470 124 | 1925970 125 | 1291866 126 | 2658554 127 | 28175259 128 | 10164899 129 | 19444325 130 | variouse 131 | 3131412 132 | miss.bad 133 | 4257445 134 | 2429292 135 | 33802573 136 | 2806973 137 | winsure 138 | 3855343 139 | 3280767 140 | cwbdy 141 | 33328370 142 | 3551351 143 | 4435657 144 | 2024162 145 | young007 146 | 1703284 147 | 11261339 148 | 2242319 149 | hfkl2003 150 | weiliang86 151 | 2469135 152 | 1385484 153 | yixia510 154 | 4365040 155 | 27367682 156 | nono88 157 | dingling 158 | bluescky 159 | momosuyan 160 | 1999003 161 | huludou 162 | 4325746 163 | 2669265 164 | 24528347 165 | 23627251 166 | longzhizi 167 | hjanet 168 | 4705000 169 | gx1283 170 | chelsea_lie 171 | wangjiancafa 172 | 2864691 173 | luolanbate 174 | 3913723 175 | yuyanfor 176 | 1602435 177 | GuoLiuxi 178 | 1447566 179 | 3326228 180 | xiamei628 181 | luspring 182 | dpfeng123 183 | 3869116 184 | guolichee 185 | 1104613 186 | verysmart 187 | 3795912 188 | 6586099 189 | 3532202 190 | renjiananhuo 191 | 3662548 192 | poemaroma 193 | sunpuyuandu 194 | 4902693 195 | deducemath 196 | 1374986 197 | libero14 198 | 4777510 199 | 3700809 200 | -------------------------------------------------------------------------------- /sample_data/book.1006560.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 49314588 3 | 59149874 4 | 57972531 5 | oOOozb 6 | 44178232 7 | fan19889017 8 | 50117865 9 | minstrel007 10 | 54876559 11 | fusiyuan2010 12 | 37907780 13 | 46138868 14 | TJM911 15 | xuejibanban 16 | 58822037 17 | pengfz 18 | shangmuzhou 19 | 33880591 20 | 50666917 21 | 3110088 22 | 58954878 23 | 40888635 24 | 47681516 25 | yuanyuecaidao 26 | 32402968 27 | 49951906 28 | muyi9 29 | 3959187 30 | 39398602 31 | 49754432 32 | easycyan 33 | 47827124 34 | wangzhaojun 35 | zhaoda 36 | loushi 37 | yazhuo 38 | hctjtb 39 | 4434002 40 | 51606646 41 | 49833145 42 | 48279825 43 | 3913353 44 | cStar 45 | 2263386 46 | 4835293 47 | 40107836 48 | songjuntao 49 | bbq2008 50 | zp1984 51 | 58462007 52 | 55861523 53 | zhouhao19900322 54 | 42113907 55 | 58594129 56 | 58675969 57 | 3575901 58 | 51453110 59 | mr12 60 | wyhech 61 | 58411889 62 | 57959369 63 | 27050157 64 | yankuai 65 | 41703788 66 | byanyother 67 | 29764137 68 | liwei551x 69 | 40679144 70 | 2358660 71 | 33828933 72 | 45421682 73 | 50818530 74 | 58511737 75 | 51374280 76 | phenix_cxn 77 | 21046743 78 | 58391901 79 | flanker 80 | 52426586 81 | China-SH 82 | 36589805 83 | 1199441 84 | 1747991 85 | 4610512 86 | 47609703 87 | 32036377 88 | 1300757 89 | 2451431 90 | llh7340 91 | 21764314 92 | 4324354 93 | 41770806 94 | 56682885 95 | lrodin 96 | 58029750 97 | child_lion 98 | 44446872 99 | 1436873 100 | 51550862 101 | 2289264 102 | 36418812 103 | zen-yggdrasil 104 | 46862465 105 | 45633608 106 | 45384306 107 | 4652178 108 | 58008476 109 | 52013822 110 | qswsbcx 111 | gracchus 112 | dong8888 113 | 3431769 114 | spoontzc 115 | sworlds 116 | 2829267 117 | 57413346 118 | yczealot 119 | xuelibo 120 | 58103381 121 | 33282437 122 | 37891946 123 | 9814001 124 | cynthialeng 125 | flyemirate 126 | 28345473 127 | 2239653 128 | isabelle-liu 129 | 55869556 130 | brunstadt 131 | yukai0227 132 | sosologo 133 | stayhere1106 134 | 57985262 135 | 45522645 136 | 57696979 137 | odajiri 138 | baicangxiang 139 | 37621515 140 | pikai 141 | coincore 142 | herbielovetree 143 | 4301186 144 | 3914630 145 | 49668030 146 | 34090202 147 | 2598672 148 | 2001321 149 | yizhiforever 150 | daoyaojie 151 | 1956817 152 | 53668139 153 | chaohong 154 | 2936031 155 | 57826374 156 | I_Love_Rabbit 157 | 2975365 158 | 57526326 159 | 48794951 160 | 2164554 161 | 57441549 162 | 53549999 163 | 43685722 164 | 52303521 165 | franzguo 166 | 39653571 167 | 3513344 168 | zhanghuiquan 169 | 41475807 170 | 51689078 171 | kataskeuh 172 | tytcnw 173 | spoke 174 | 57666883 175 | 34728407 176 | etimei 177 | wayfaring 178 | m8023 179 | 4919945 180 | 4634101 181 | 47661887 182 | 1214488 183 | 3916235 184 | kuangrenriji 185 | mmrabbit608 186 | ashoftime 187 | hakkien 188 | 52097935 189 | banjun 190 | 36966189 191 | 52697786 192 | azure528 193 | 3056006 194 | 1581074 195 | 4631250 196 | AlexHu 197 | 46322632 198 | -------------------------------------------------------------------------------- /sample_data/book.1006720.csv: -------------------------------------------------------------------------------- 1 | ID 2 | duweigan 3 | 3659231 4 | minglang2012 5 | soliloquistLI 6 | ashloop 7 | lixxiaoyi 8 | huaian 9 | 45585115 10 | dingyuhai 11 | mumu13321 12 | 4376441 13 | 55657490 14 | mrdashu 15 | 44842281 16 | vinesteel 17 | 57965849 18 | 46425299 19 | mayawyx 20 | illusia 21 | elegantsabrina 22 | 13624031 23 | maoduoli 24 | hate.tomorrow 25 | zhaoziyuebz 26 | hjscez 27 | SevenL7. 28 | Ariel_N 29 | 4278334 30 | kid007spy 31 | 3051378 32 | outsider. 33 | Brushmaple 34 | 42291757 35 | ajvicky 36 | justin0907 37 | newcentury 38 | 55648731 39 | 56170955 40 | 3535981 41 | WC123 42 | 54131548 43 | 40273133 44 | 45777077 45 | Xsiwei 46 | parachutex39 47 | 5676458 48 | 47525468 49 | 47891353 50 | ma33 51 | 3390205 52 | 3041774 53 | 43042993 54 | whateverky 55 | skeletone 56 | 52704099 57 | Pandora_L 58 | balara 59 | Nebulium 60 | 49166679 61 | PandaRechal 62 | 11232485 63 | 53878204 64 | 49384239 65 | janeyeah92 66 | singxunzhao 67 | 57405239 68 | francesca1011 69 | 57821756 70 | yiaqing 71 | smilesnowy 72 | laurel-nanr 73 | jiwaixiaotong 74 | kuuu 75 | wayfaring 76 | yu_cx 77 | cheriachi 78 | pubby 79 | fi_fi 80 | 47029300 81 | littlebee0604 82 | 35780159 83 | 4475319 84 | baozier9826 85 | 4469354 86 | tuncat 87 | wtc 88 | naomih 89 | violette9 90 | rachelworking 91 | 53702867 92 | ixuan 93 | simonechen 94 | 38442913 95 | mixinzuiyu 96 | 29354820 97 | 43443228 98 | atmcc 99 | love-n 100 | 54701137 101 | zhengqin8023 102 | 52152126 103 | Risababy 104 | carmen0426 105 | orangeboy 106 | keepasecret 107 | guanmulin 108 | 2208063 109 | xuelisha 110 | leoalwayswithyo 111 | 55906913 112 | cherryhoney 113 | 51835590 114 | 52474695 115 | Lyle 116 | 2821495 117 | haxiaojin 118 | voline0216 119 | JazzJohnny 120 | strawberry26 121 | lauyans 122 | thierryshow 123 | MChan 124 | rainiajee 125 | aboutisan 126 | xiaottalking 127 | shqs 128 | babyzhangcandy 129 | Englarm 130 | 43425035 131 | elysie 132 | 43702569 133 | willydeutsh 134 | yyyyyyyyang 135 | welle213 136 | 47175279 137 | 45711526 138 | BearShu 139 | MissJourney 140 | liuyuekuye 141 | 56040709 142 | queen_e 143 | Holmes-Wang 144 | nyssa712 145 | tudoubanbaicai 146 | 50254086 147 | sunwenze 148 | 43255769 149 | 44301420 150 | 48794030 151 | 50229768 152 | daizheng 153 | 55898517 154 | 46286743 155 | bastianhong 156 | nicate 157 | gulunmu 158 | 12665600 159 | record.show. 160 | 42797360 161 | aliceyiran 162 | 49232201 163 | wolf_zhchk 164 | mangolee530 165 | 44820863 166 | davidmingsun 167 | kittyhomes 168 | VALLA 169 | demoming 170 | qimisa 171 | 53291423 172 | 23675714 173 | rayrene 174 | 55373850 175 | 48856854 176 | chinalittlegirl 177 | haaaaaaaa 178 | 53610789 179 | 4228484 180 | wangzheng 181 | fly-fei 182 | cecilricky 183 | 35830449 184 | hexiaoqin 185 | 51292096 186 | 4439438 187 | 47262013 188 | Imt11 189 | 3519065 190 | godling 191 | 37102408 192 | SergeantYork 193 | 35868835 194 | yingjingqiong 195 | SPONGENICO 196 | aiolos404 197 | viavia1991 198 | -------------------------------------------------------------------------------- /sample_data/reader.chrisiron.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3006581 3 | 6388661 4 | 4742918 5 | 6889836 6 | 2595163 7 | 5359838 8 | 10508059 9 | 4714009 10 | 2980795 11 | 6969827 12 | 3688489 13 | 1433492 14 | 6902317 15 | 3200754 16 | 3198693 17 | 1396491 18 | 10344037 19 | 3006483 20 | 3091368 21 | 1455812 22 | 3601568 23 | 2036022 24 | 6871026 25 | 1090794 26 | 1467776 27 | 3155180 28 | 5321791 29 | 3765620 30 | 4714008 31 | 1192090 32 | 2158189 33 | 1963912 34 | 3719533 35 | 2013150 36 | 2026281 37 | 1132623 38 | 6749832 39 | 4224774 40 | 4224775 41 | 4224777 42 | 4224783 43 | 4224784 44 | 4224786 45 | 4224778 46 | 4224781 47 | 4224782 48 | 1056144 49 | 1958685 50 | 1001154 51 | 6965746 52 | 6526887 53 | 1159542 54 | 6424904 55 | 6901990 56 | 1427784 57 | 3326892 58 | 2980471 59 | 1322506 60 | 2052580 61 | 1433336 62 | 1426851 63 | 4282049 64 | 3197690 65 | 4199421 66 | 1433440 67 | 2297697 68 | 1784613 69 | 4714018 70 | 1071477 71 | 3359739 72 | 1005813 73 | 1004329 74 | 4011440 75 | 3044377 76 | 4105446 77 | 4741216 78 | 1262986 79 | 4214750 80 | 4214753 81 | 4214748 82 | 1337297 83 | 2042631 84 | 3583522 85 | 2035179 86 | 1255625 87 | 3040229 88 | 4274472 89 | 5276620 90 | 1464916 91 | 1237849 92 | 1148282 93 | 4853379 94 | 3069690 95 | 4167197 96 | 1014879 97 | 1082406 98 | 6127036 99 | 1834728 100 | 2350407 101 | 1684863 102 | 3374613 103 | 1145593 104 | 1322880 105 | 4929897 106 | 1312415 107 | 1067049 108 | 3339417 109 | 6903227 110 | 1040771 111 | 1034108 112 | 1883992 113 | 1082407 114 | 1777932 115 | 1449626 116 | 1007334 117 | 4618225 118 | 6890671 119 | 2345548 120 | 3276034 121 | 1465419 122 | 1485495 123 | 4034009 124 | 3187737 125 | 3347997 126 | 4313207 127 | 1400705 128 | 1012637 129 | 1047138 130 | 1082518 131 | 1162784 132 | 1062193 133 | 1827702 134 | 1051363 135 | 1045119 136 | 1000067 137 | 1030451 138 | 1071936 139 | 1001737 140 | 1067603 141 | 5375620 142 | 1071794 143 | 1058759 144 | 1868282 145 | 1040104 146 | 1024846 147 | 3930318 148 | 1034279 149 | 1225983 150 | 1320282 151 | 1102715 152 | 1467022 153 | 1034282 154 | 1269900 155 | 4010196 156 | 1807516 157 | 1818347 158 | 3646172 159 | 1827374 160 | 4118599 161 | 6148690 162 | 2033081 163 | 3598047 164 | 4187225 165 | 1020644 166 | 1021346 167 | 1036395 168 | 1045201 169 | 1769449 170 | 1059490 171 | 1786387 172 | 1457028 173 | 1022936 174 | 1048007 175 | 1045862 176 | 1313124 177 | 1322025 178 | 1974883 179 | 3738701 180 | 3622904 181 | 4887617 182 | 3000997 183 | 2380307 184 | 1970428 185 | 1867642 186 | 1318427 187 | 1919072 188 | 1157631 189 | 6776319 190 | 5904053 191 | 6709783 192 | 3211779 193 | 1921558 194 | 3543627 195 | 3014701 196 | 2239764 197 | 2052380 198 | 1859615 199 | 1771843 200 | 1829226 201 | 1771840 202 | 1203426 203 | 3111270 204 | 6798611 205 | 3863634 206 | 3259440 207 | 3066477 208 | 1812223 209 | 1883353 210 | 1437891 211 | 1203267 212 | 1203263 213 | 1786670 214 | 1048107 215 | 1212469 216 | 1064532 217 | 1851385 218 | 2568689 219 | 6006299 220 | 1059503 221 | 2567698 222 | 6723066 223 | 1008445 224 | 1479355 225 | 1030764 226 | 1084651 227 | 1320851 228 | 1283295 229 | 3136271 230 | 1046265 231 | 2257354 232 | 1207338 233 | 1094487 234 | 1207339 235 | 1077996 236 | 1017202 237 | 1443196 238 | 1499608 239 | 5299764 240 | 3554154 241 | 1340832 242 | 1013208 243 | 1401695 244 | 4120266 245 | 1041482 246 | 1874961 247 | 3102324 248 | 3717819 249 | 2128625 250 | 1473250 251 | 1958714 252 | 2081876 253 | 2257609 254 | 1827578 255 | 1214416 256 | 1007323 257 | 1025336 258 | 1415292 259 | 1016486 260 | 1017143 261 | 1084336 262 | -------------------------------------------------------------------------------- /sample_data/reader.zippo.zero.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1343170 3 | 1074196 4 | 1655852 5 | 1707156 6 | 1152912 7 | 1467022 8 | 1000445 9 | 1410002 10 | 2066969 11 | 3091122 12 | 1434255 13 | 2376336 14 | 1054685 15 | 1148282 16 | 2026939 17 | 1014578 18 | 1153701 19 | 1083133 20 | 1679623 21 | 1139336 22 | 1092200 23 | 1055128 24 | 1051163 25 | 1779243 26 | 3006581 27 | 3033668 28 | 1056806 29 | 1089243 30 | 1885170 31 | 3053868 32 | 1057211 33 | 1045818 34 | 3908032 35 | 1393233 36 | 1467333 37 | 1036095 38 | 1082162 39 | 2246783 40 | 1119796 41 | 3017857 42 | 1014278 43 | 1090043 44 | 1781120 45 | 1151873 46 | 1039487 47 | 1071241 48 | 1009257 49 | 1263399 50 | 1539027 51 | 1903164 52 | 1731370 53 | -------------------------------------------------------------------------------- /sample_data/reader.ziq.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1152111 3 | 2778632 4 | 6709809 5 | 4006425 6 | 6709783 7 | 1898098 8 | 3279390 9 | 1921890 10 | 3617254 11 | 4859464 12 | 1247542 13 | 1788421 14 | 6021440 15 | 1173548 16 | 5387402 17 | 1731825 18 | 1477390 19 | 1088054 20 | 3852290 21 | 4924297 22 | 5387401 23 | 1767741 24 | 3549421 25 | 5064311 26 | 3800093 27 | 4131726 28 | 1225935 29 | 2024655 30 | 1679623 31 | 2377310 32 | 3061060 33 | 3112503 34 | 1139336 35 | 3267945 36 | -------------------------------------------------------------------------------- /sample_data/reader.zishy.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1197236 3 | 1844850 4 | 1890996 5 | 6719724 6 | 1927377 7 | 2119437 8 | 3996668 9 | 2372484 10 | 1779972 11 | 4814392 12 | 1477999 13 | 4140460 14 | 4067694 15 | 4821212 16 | 4067626 17 | 3420144 18 | 4034009 19 | 2370447 20 | 1007178 21 | 5988310 22 | 2117552 23 | 3177223 24 | 3686304 25 | 1051193 26 | 1266422 27 | 4720669 28 | 1400341 29 | 1049070 30 | 1848895 31 | 1089512 32 | 1209899 33 | 1099376 34 | 2382245 35 | 1020670 36 | 1878819 37 | 2052049 38 | 1400048 39 | 1430909 40 | 2337600 41 | 1008145 42 | 1417905 43 | 1140457 44 | 3210683 45 | 1181213 46 | 2068607 47 | 4199431 48 | 1881118 49 | 2982082 50 | 1003000 51 | 3203159 52 | 1958227 53 | 4259377 54 | 1970153 55 | 3195235 56 | 1418707 57 | 3361738 58 | 1049586 59 | 1939182 60 | 2567698 61 | 1140727 62 | 1370144 63 | 1828788 64 | 2297706 65 | 2173155 66 | 1082387 67 | 1001761 68 | 2980470 69 | 1020459 70 | 2180619 71 | 1904058 72 | 1213546 73 | 1421975 74 | -------------------------------------------------------------------------------- /sample_data/reader.zison.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3719340 3 | 1025576 4 | 3717322 5 | 3017135 6 | 2003451 7 | 1931318 8 | 2131983 9 | 2974538 10 | 2137527 11 | 3824576 12 | 1312333 13 | 3327047 14 | 3113567 15 | 3043518 16 | 3026449 17 | 3016219 18 | 3087020 19 | 3667783 20 | 10468951 21 | 10440507 22 | 10522600 23 | 10505510 24 | 7916063 25 | 6794016 26 | 10426643 27 | 3373490 28 | 3992737 29 | 3091349 30 | 3246230 31 | 5275385 32 | 4727980 33 | 3610550 34 | 3729756 35 | 5912889 36 | 4161848 37 | 10451782 38 | 1866102 39 | 3612909 40 | 2123432 41 | 1008362 42 | 3137728 43 | 1352442 44 | 4290042 45 | 3397139 46 | 4237563 47 | 3841407 48 | 6872645 49 | 3014429 50 | 2567856 51 | 3182994 52 | 2364743 53 | 2567727 54 | 2150587 55 | 5296815 56 | 3408847 57 | 4738419 58 | 3003765 59 | 4237834 60 | 2364778 61 | 1070441 62 | 4191721 63 | 3175853 64 | 2271582 65 | 2171321 66 | 3715563 67 | 5038502 68 | 1431836 69 | 10426209 70 | 2131415 71 | 1819974 72 | 2067299 73 | 3897928 74 | 5341084 75 | 3654631 76 | 4194622 77 | 2287508 78 | 3333989 79 | 2052596 80 | 1003284 81 | 5416544 82 | 1353219 83 | 4604953 84 | 3059504 85 | 1439426 86 | 1915527 87 | 2076929 88 | 4861485 89 | 4730424 90 | 6088153 91 | 6965583 92 | 6077732 93 | 5029308 94 | 5344614 95 | 5343679 96 | 5396845 97 | 4881999 98 | 4941706 99 | 5935620 100 | 4221077 101 | 2340051 102 | 1310164 103 | 1340986 104 | 1471391 105 | 6720131 106 | 5333599 107 | 4872671 108 | 6813158 109 | 1964611 110 | 5328165 111 | 5353386 112 | 4199685 113 | 7015323 114 | 2297559 115 | 3136264 116 | 3183060 117 | 3812771 118 | 1038291 119 | 6528125 120 | 2153625 121 | 5436532 122 | 6800484 123 | 4811923 124 | 3989541 125 | 3608235 126 | 3146656 127 | 3669399 128 | 3658090 129 | 3669408 130 | 1036395 131 | 4320816 132 | 4191531 133 | 1442744 134 | 5919999 135 | 2174400 136 | 5940877 137 | 5940829 138 | 4820710 139 | 1489780 140 | 1007772 141 | 5312093 142 | 5312094 143 | 2253754 144 | 4736181 145 | 5260151 146 | 1721797 147 | 3319465 148 | 2301012 149 | 4126694 150 | 3088334 151 | 2255873 152 | 4257475 153 | 2304526 154 | 4204034 155 | 5395175 156 | 1467776 157 | 5347807 158 | 1863930 159 | 3662421 160 | 5347700 161 | 3825659 162 | 3608208 163 | 5422864 164 | 4737325 165 | 3594151 166 | 6540229 167 | 6528130 168 | 2121450 169 | 4711466 170 | 1888031 171 | 1872158 172 | 1498061 173 | 1291076 174 | 5366382 175 | 6016230 176 | 5988558 177 | 6131589 178 | 1062508 179 | 1425086 180 | 1808767 181 | 1902601 182 | 1459494 183 | 1058943 184 | 2311695 185 | 3673651 186 | 3931849 187 | 3774646 188 | 3392046 189 | 5448179 190 | 4245064 191 | 3246904 192 | 3326892 193 | 2160231 194 | 5326869 195 | 1794620 196 | 6719656 197 | 4213981 198 | 4241588 199 | 3792548 200 | 1418783 201 | 3427172 202 | 6746290 203 | 1982187 204 | 3826899 205 | 4097161 206 | 4251957 207 | 4903446 208 | 2283762 209 | 3698543 210 | 1279648 211 | 6715031 212 | 1041550 213 | 2081758 214 | 2157753 215 | 2298304 216 | 5323938 217 | 7050982 218 | 1003420 219 | 1069071 220 | 2137700 221 | 2179956 222 | 2297693 223 | 5915726 224 | 2977174 225 | 3056892 226 | 5915713 227 | 1799942 228 | 1961690 229 | 3014715 230 | 4920036 231 | 1006881 232 | 1027832 233 | 2062200 234 | 1016300 235 | 4920037 236 | 4818929 237 | 3921405 238 | 4197740 239 | 6874075 240 | 10437170 241 | 6998803 242 | 1291201 243 | 1291200 244 | 1291202 245 | 2009191 246 | 1343525 247 | 1394787 248 | 1291197 249 | 1700474 250 | 1986590 251 | 3063990 252 | 6126817 253 | 4097181 254 | 5976619 255 | 7056688 256 | 6802809 257 | 6857344 258 | 6560641 259 | 1438711 260 | 6863526 261 | 2303199 262 | 7163003 263 | 6800488 264 | 6524269 265 | 6855851 266 | 6727877 267 | 7564402 268 | 10463104 269 | 7175251 270 | 1958227 271 | 3212678 272 | 7062473 273 | 4749115 274 | 6749472 275 | 6860888 276 | 4934784 277 | 3344676 278 | 1852506 279 | 6967984 280 | 6440324 281 | 6965581 282 | 6391166 283 | 6737747 284 | 6737748 285 | 2305738 286 | 4140491 287 | 3181302 288 | 6126815 289 | 6313497 290 | 5283663 291 | 7154298 292 | 7154299 293 | 6003394 294 | 7046857 295 | 5395157 296 | 6060455 297 | 6752839 298 | 6885341 299 | 5988624 300 | 6966406 301 | 2003092 302 | 3101992 303 | 2295372 304 | 1343524 305 | 1346935 306 | 1351896 307 | 1351897 308 | 1351898 309 | 2009192 310 | 1071241 311 | 1009257 312 | 1432596 313 | 1039487 314 | 2295163 315 | 1013129 316 | 1316720 317 | 3808684 318 | 3918036 319 | 6973805 320 | 6964047 321 | 6964051 322 | 10443327 323 | 3928881 324 | 2174014 325 | 1848256 326 | 2174013 327 | 2174010 328 | 2158194 329 | 2158192 330 | 3168469 331 | 3168468 332 | 3168461 333 | 3932981 334 | 3931511 335 | 3928883 336 | 1858557 337 | 3212644 338 | 3284415 339 | 3284413 340 | 3284409 341 | 3284408 342 | 3321773 343 | 3284411 344 | 3003470 345 | 5347699 346 | 4580972 347 | 4903440 348 | 4264003 349 | 5380266 350 | 4191587 351 | 4152754 352 | 5939312 353 | 6853462 354 | 6386087 355 | 6890669 356 | 6800379 357 | 6890671 358 | 6800500 359 | 7059909 360 | 5411085 361 | 3810989 362 | 4638933 363 | 4864202 364 | 4198794 365 | 4638931 366 | 6828611 367 | 6428335 368 | 6890288 369 | 6960951 370 | 1918351 371 | 4708130 372 | 5417810 373 | 3920235 374 | 6781409 375 | 4880033 376 | 3816859 377 | 2973991 378 | 6880209 379 | 5986543 380 | 6560215 381 | 6727018 382 | 6798611 383 | 6527141 384 | 6057607 385 | 6431238 386 | 6863612 387 | 6843465 388 | 6429285 389 | 2381982 390 | 2214350 391 | 4304282 392 | 4954331 393 | 6811711 394 | 6793574 395 | 6731445 396 | 6394806 397 | 6744663 398 | 4074636 399 | 6799805 400 | 6784996 401 | 5355298 402 | 6777936 403 | 4847897 404 | 6777937 405 | 5327717 406 | 6101489 407 | 1917972 408 | 1465324 409 | 5502995 410 | 4885241 411 | 6001966 412 | 5697408 413 | 2143732 414 | 5341064 415 | 6534712 416 | 1424569 417 | 2567547 418 | 2995941 419 | 3191044 420 | 4878745 421 | 3597825 422 | 5350303 423 | 5423775 424 | 4893617 425 | 6722885 426 | 5367303 427 | 5367304 428 | 4882044 429 | 6041708 430 | 6724537 431 | 6753739 432 | 4908885 433 | 1056023 434 | 6265782 435 | 6310335 436 | 6710720 437 | 6425495 438 | 1475735 439 | 6539691 440 | 5366437 441 | 4841292 442 | 1316606 443 | 1175088 444 | 1174721 445 | 1175074 446 | 6265779 447 | 4246952 448 | 4501999 449 | 4138939 450 | 3594782 451 | 3684715 452 | 3810672 453 | 4766405 454 | 5300296 455 | 6436284 456 | 3364858 457 | 5959593 458 | 5959591 459 | 5959594 460 | 5959592 461 | 6041686 462 | 6010144 463 | 6082808 464 | 3099333 465 | 5302695 466 | 6429572 467 | 6429571 468 | 3625391 469 | 6308784 470 | 5958726 471 | 1371152 472 | 5402205 473 | 1005312 474 | 1460402 475 | 6510522 476 | 3662594 477 | 1056801 478 | 5939300 479 | 3999070 480 | 1926700 481 | 3662001 482 | 6311231 483 | 2062604 484 | 6385455 485 | 6511745 486 | 6041632 487 | 5986107 488 | 6430234 489 | 3658085 490 | 1079252 491 | 3658093 492 | 2036993 493 | 4323275 494 | 3985029 495 | 4313080 496 | 3669404 497 | 3669406 498 | 4933087 499 | 3885379 500 | 6405618 501 | 5366422 502 | 1018136 503 | 2567698 504 | 3259440 505 | 3014576 506 | 1829226 507 | 1085883 508 | 1449351 509 | 3211779 510 | 1080370 511 | 1082334 512 | 1057244 513 | 1786670 514 | 1040211 515 | 1041007 516 | 1083428 517 | 1068920 518 | 1082154 519 | 1007305 520 | 5340523 521 | 1048441 522 | 1056616 523 | 4818177 524 | 5302738 525 | 5301882 526 | 5312501 527 | 5301967 528 | 5301889 529 | 4882134 530 | 3790536 531 | 3094773 532 | 1040865 533 | 5502946 534 | 1469333 535 | 1865089 536 | 5317129 537 | 1316607 538 | 1458164 539 | 5283535 540 | 6394238 541 | 4273327 542 | 4177701 543 | 6088152 544 | 6048038 545 | 5366444 546 | 1769883 547 | 1352518 548 | 5246812 549 | 6067966 550 | 1025336 551 | 1030366 552 | 4618225 553 | 6047978 554 | 5283264 555 | 5920385 556 | 6047976 557 | 1821232 558 | 1358873 559 | 1031575 560 | 4238362 561 | 3316438 562 | 5312098 563 | 6047961 564 | 6026256 565 | 3897904 566 | 6424154 567 | 5383670 568 | 5336461 569 | 5336462 570 | 3894806 571 | 1939511 572 | 2253743 573 | 2253759 574 | 1078539 575 | 1455950 576 | 5254267 577 | 3287786 578 | 3277485 579 | 1455933 580 | 1039752 581 | 4742918 582 | 1365062 583 | 4015620 584 | 1394161 585 | 1851385 586 | 4105446 587 | 1424741 588 | 3836566 589 | 3993030 590 | 3622082 591 | 4012128 592 | 3770707 593 | 2150582 594 | 2046279 595 | 1932866 596 | 1441707 597 | 1003148 598 | 1761056 599 | 1026686 600 | 4117202 601 | 3003763 602 | 2970118 603 | 1021847 604 | 1963312 605 | 2150586 606 | 1358413 607 | 1358416 608 | 2970121 609 | 3699108 610 | 1056733 611 | 1026411 612 | 1066462 613 | 2148524 614 | 4862350 615 | 3822879 616 | 5243268 617 | 5400559 618 | 3665874 619 | 1346815 620 | 4714734 621 | 1200840 622 | 5347802 623 | 3037383 624 | 4208780 625 | 1056461 626 | 4159088 627 | 3410797 628 | 1292415 629 | 2372015 630 | 4127527 631 | 4732175 632 | 2372026 633 | 1960046 634 | 3678694 635 | 4173403 636 | 1079788 637 | 4901590 638 | 1006460 639 | 1002450 640 | 3096490 641 | 5043509 642 | 4282052 643 | 4311468 644 | 4621342 645 | 5355710 646 | 1857256 647 | 1875187 648 | 1031247 649 | 1442707 650 | 2216915 651 | 4145556 652 | 4169342 653 | 4170274 654 | 4169341 655 | 3759808 656 | 3698390 657 | 3604517 658 | 3735576 659 | 3607117 660 | 3723589 661 | 3604520 662 | 3713237 663 | 3698398 664 | 3673672 665 | 3673671 666 | 4230591 667 | 1880833 668 | 4733884 669 | 1353741 670 | 1316609 671 | 1339258 672 | 1353737 673 | 4841303 674 | 3311009 675 | 3621252 676 | 5260232 677 | 3375868 678 | 2969749 679 | 1368052 680 | 1762869 681 | 1907199 682 | 1962923 683 | 1014825 684 | 1056315 685 | 1027191 686 | 1001885 687 | 5366436 688 | 5366438 689 | 5366434 690 | 5366432 691 | 5366433 692 | 1283273 693 | 1020959 694 | 1035362 695 | 2158189 696 | 1020670 697 | 3369600 698 | 6041106 699 | 4908991 700 | 4156422 701 | 3604331 702 | 3621542 703 | 2988943 704 | 5269439 705 | 1011680 706 | 4920007 707 | 4129403 708 | 1023709 709 | 1052828 710 | 1063796 711 | 1037954 712 | 1016486 713 | 1064828 714 | 1394427 715 | 1876746 716 | 1013225 717 | 1057197 718 | 1858513 719 | 2149717 720 | 1011215 721 | 2973589 722 | 3290010 723 | 1963310 724 | 2339950 725 | 5275500 726 | 2278790 727 | 4894562 728 | 2342023 729 | 3133952 730 | 1915536 731 | 5403007 732 | 5915714 733 | 3777123 734 | 3598313 735 | 4874131 736 | 3733074 737 | 3733076 738 | 3571550 739 | 1732433 740 | 1361121 741 | 1980436 742 | 3993131 743 | 1951384 744 | 3673670 745 | 1082162 746 | 1963684 747 | 1090043 748 | 3616310 749 | 2700656 750 | 4038164 751 | 3191328 752 | 1948502 753 | 1440089 754 | 3103080 755 | 2382705 756 | 1227838 757 | 4746554 758 | 6017133 759 | 6017111 760 | 5403006 761 | 5915718 762 | 6017128 763 | 1436348 764 | 3224818 765 | 1030052 766 | 2256438 767 | 1529893 768 | 1400705 769 | 1017143 770 | 1083762 771 | 4173402 772 | 3315965 773 | 4208775 774 | 5348119 775 | 5938219 776 | 5391766 777 | 4191577 778 | 4882159 779 | 4011440 780 | 1258498 781 | 1006197 782 | 1159939 783 | 1119522 784 | 1008145 785 | 1770782 786 | 1060117 787 | 1316613 788 | -------------------------------------------------------------------------------- /sample_data/reader.zithan.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3845030 3 | 1069848 4 | 1000687 5 | 3375173 6 | 1174290 7 | 3344676 8 | 4714330 9 | 2345727 10 | 2327837 11 | 1005576 12 | 3246942 13 | 2130190 14 | 3153529 15 | 1311714 16 | 4264389 17 | -------------------------------------------------------------------------------- /sample_data/reader.zizhao.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3301180 3 | 3480306 4 | 1971812 5 | 1046265 6 | 4158135 7 | 4137173 8 | 2151324 9 | 5290564 10 | 1851385 11 | 1880831 12 | 6527751 13 | 3036450 14 | 1858410 15 | 4238362 16 | 1054889 17 | 2345548 18 | 5916234 19 | 1014825 20 | 4931797 21 | 4100680 22 | 1220853 23 | 1067910 24 | 2348372 25 | 2336707 26 | 1914636 27 | 6428468 28 | 4924178 29 | 4113090 30 | 1027191 31 | 3685882 32 | 3394338 33 | 5292912 34 | 3266345 35 | 4238939 36 | 2053249 37 | 4886245 38 | 3289274 39 | 3698555 40 | 4115340 41 | 1731825 42 | 1418686 43 | 1082406 44 | 2247259 45 | 1908356 46 | 3152230 47 | 2081876 48 | 3055719 49 | 2380826 50 | 1919072 51 | 1970428 52 | 2380307 53 | 1432422 54 | 1007334 55 | 3644095 56 | 2298230 57 | -------------------------------------------------------------------------------- /sample_data/reader.zizon.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5391582 3 | 1498757 4 | 6892579 5 | 3808982 6 | 1958227 7 | 6428468 8 | 4242172 9 | 1040771 10 | 1105582 11 | 1263734 12 | 1288844 13 | 1059406 14 | 1026425 15 | 1068802 16 | 2005726 17 | 1059258 18 | 1007305 19 | 1084336 20 | 1046265 21 | 1005047 22 | 1106304 23 | 1152971 24 | 1251015 25 | 2343850 26 | 4789228 27 | 6265750 28 | 1426482 29 | 3177544 30 | 3766438 31 | 2115312 32 | 2254243 33 | 3220004 34 | 5299764 35 | 5414391 36 | 3786755 37 | 5423803 38 | 1052968 39 | 3240683 40 | 1253638 41 | 1269900 42 | 3066477 43 | 5363767 44 | 2328458 45 | 2567698 46 | 1007927 47 | 3338669 48 | 1432220 49 | 4873919 50 | 5292912 51 | 3296317 52 | 3117898 53 | 2130743 54 | 1924288 55 | 1261560 56 | 1027528 57 | 1438119 58 | 1110934 59 | 1091086 60 | 1484262 61 | 1241385 62 | 1241386 63 | 1767741 64 | 1099889 65 | 1048007 66 | 1005576 67 | 3688489 68 | 3900987 69 | 3886044 70 | 1440223 71 | 2696119 72 | 2005622 73 | 1102259 74 | 1102180 75 | 1152111 76 | 3142908 77 | 1231590 78 | 1885170 79 | 1230124 80 | 1231692 81 | 1102097 82 | 3699395 83 | 1277981 84 | 3932520 85 | 3622904 86 | -------------------------------------------------------------------------------- /sample_data/reader.zj12912.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1933520 3 | -------------------------------------------------------------------------------- /sample_data/reader.zj2610.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1030153 3 | 2375977 4 | 3274851 5 | 1043815 6 | 1227838 7 | 3989541 8 | 2063076 9 | 1926700 10 | 1205370 11 | 1255625 12 | 1083428 13 | 1007433 14 | 1007772 15 | 1073744 16 | 4143274 17 | 1008357 18 | 3293231 19 | 3302645 20 | 1029553 21 | 1051193 22 | 2036569 23 | 1213546 24 | 1440089 25 | 1461903 26 | 1064275 27 | 5975571 28 | 1078250 29 | 6012787 30 | 1963310 31 | 6041708 32 | 2010284 33 | 1141406 34 | 1119522 35 | 2022979 36 | 1391191 37 | 1057244 38 | 1060117 39 | 1003000 40 | 3010130 41 | 1080370 42 | 4011670 43 | 4173403 44 | 1829226 45 | 1019568 46 | 2056749 47 | 1400705 48 | 1786670 49 | 1205054 50 | 1203426 51 | 1088581 52 | 1084336 53 | 1082584 54 | 1068920 55 | 1007305 56 | 1008145 57 | 1753798 58 | 2058602 59 | 1010128 60 | 1467333 61 | 3091122 62 | 1440589 63 | 1180108 64 | 1401840 65 | 1180102 66 | 1873281 67 | 1853785 68 | 1439216 69 | 1937357 70 | 1452610 71 | 1767388 72 | 1474842 73 | 1031740 74 | 1079440 75 | 1046265 76 | 1039752 77 | 5502995 78 | 1291809 79 | 1059419 80 | 4885241 81 | 4742918 82 | 1039487 83 | 1071241 84 | 1041007 85 | 1009257 86 | 1013129 87 | 1432596 88 | 2295163 89 | 1089509 90 | 1148843 91 | 2154960 92 | 1082161 93 | 2010279 94 | 1927705 95 | 2027002 96 | 1051163 97 | 1082162 98 | 1578609 99 | 2267883 100 | 1119796 101 | 1980436 102 | 3017857 103 | 1014278 104 | 1963684 105 | 3616310 106 | 1090043 107 | 1006073 108 | 1046385 109 | 1006341 110 | 1022060 111 | 1016523 112 | 3598313 113 | 1207819 114 | 1009160 115 | 1087145 116 | 1146304 117 | 1082349 118 | 1453210 119 | 1029159 120 | 3667783 121 | 6710720 122 | 1049219 123 | 3264642 124 | 1063190 125 | 1065970 126 | 1030052 127 | 1080309 128 | 2256438 129 | 1015584 130 | 1529893 131 | 1078566 132 | 1085799 133 | 5341136 134 | 5340279 135 | 5341141 136 | 5341137 137 | 5340278 138 | 10451782 139 | 1916726 140 | 2149655 141 | 2265312 142 | 2340300 143 | 3034184 144 | 5319117 145 | 1882933 146 | 1938591 147 | 1926103 148 | 4882136 149 | 5034035 150 | 4186842 151 | 3259440 152 | 3594782 153 | 5407504 154 | 3071235 155 | 5275385 156 | 1029739 157 | 4895095 158 | 3674537 159 | 3244665 160 | 6974102 161 | 3089661 162 | 6863268 163 | 1463767 164 | 3242168 165 | 1760546 166 | 1058234 167 | 1022492 168 | 1080812 169 | 1018153 170 | 2971734 171 | 1006004 172 | 3245113 173 | 2298149 174 | 3266344 175 | 3800166 176 | 2057285 177 | 1439894 178 | 1873231 179 | -------------------------------------------------------------------------------- /sample_data/reader.zjoenew.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3025921 3 | 1085660 4 | 1858513 5 | 3353137 6 | 3776679 7 | 2033081 8 | 2380307 9 | 2363744 10 | 1473323 11 | 3688489 12 | 2340007 13 | 4872671 14 | 4213157 15 | 2345548 16 | 5275059 17 | 4010185 18 | 4180711 19 | 4238362 20 | 4213159 21 | 3744041 22 | 3741895 23 | 1007864 24 | 1170622 25 | 1911166 26 | 1005193 27 | 3604598 28 | 1106008 29 | 1097991 30 | 3833335 31 | 2147557 32 | 3303213 33 | 1082611 34 | 3815992 35 | 3882021 36 | 1436707 37 | 3559951 38 | 3622446 39 | 1245610 40 | 3300958 41 | 2130212 42 | 3026354 43 | 3000997 44 | 2128625 45 | 1200840 46 | -------------------------------------------------------------------------------- /sample_data/reader.zju.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1198504 3 | 2064450 4 | 1072438 5 | 6047976 6 | 2022796 7 | 2244146 8 | 1101524 9 | 2116929 10 | 4742289 11 | 1958227 12 | 1052990 13 | 3014429 14 | 2567727 15 | 1018136 16 | 1153319 17 | 5363752 18 | 3923359 19 | 3808982 20 | 6431994 21 | 3419122 22 | 4075835 23 | 2251434 24 | 1420862 25 | 1059112 26 | 2380307 27 | 1794844 28 | 1970428 29 | 1040771 30 | 2154960 31 | 1066462 32 | 1059258 33 | 1057244 34 | 3554154 35 | 2076582 36 | 1119476 37 | 1644403 38 | 1064275 39 | 2070012 40 | 3000997 41 | 1471391 42 | 5317075 43 | 3274113 44 | 2253642 45 | 3626924 46 | 2052448 47 | 3009821 48 | 1873231 49 | 1949338 50 | 4741216 51 | 4929844 52 | 1801946 53 | 1014533 54 | 1068308 55 | 1044547 56 | 1271494 57 | 1002299 58 | 1212893 59 | 1255624 60 | 1440941 61 | 1738640 62 | 1033866 63 | 1088088 64 | 1209676 65 | 1264578 66 | 3782078 67 | 3782096 68 | 3782063 69 | 1089510 70 | 1089515 71 | 1704006 72 | 1738645 73 | 1089511 74 | 1089518 75 | 1089517 76 | 1480630 77 | 2245889 78 | 1705860 79 | 1041550 80 | 1291774 81 | 1006881 82 | 1049189 83 | 1037589 84 | 1059406 85 | 2062200 86 | 1016300 87 | 4818929 88 | 2133556 89 | 2032666 90 | 1033848 91 | 1046385 92 | 1440101 93 | 3009033 94 | 1063245 95 | 1871471 96 | 3279284 97 | 1822793 98 | 1026425 99 | 1049219 100 | 3666600 101 | 3394338 102 | 5275059 103 | 1401100 104 | 1000482 105 | 1054889 106 | 1001204 107 | 1075495 108 | 1020241 109 | 1050339 110 | 3673668 111 | 1783349 112 | 1390497 113 | 1033843 114 | 1082162 115 | 3017857 116 | 1289046 117 | 3237822 118 | 4896497 119 | 1003679 120 | 1186209 121 | 1748073 122 | 3246942 123 | 3279016 124 | 1082677 125 | 2300073 126 | 1207147 127 | 1207148 128 | 3279039 129 | 4207781 130 | 4618225 131 | 2258803 132 | 3891900 133 | 1017143 134 | 1020459 135 | 1057444 136 | 4953695 137 | 1089521 138 | 1089512 139 | 3674537 140 | 3866525 141 | 1073349 142 | 1125186 143 | 1090043 144 | 1203426 145 | 1058661 146 | 1255625 147 | 1786670 148 | 1008145 149 | -------------------------------------------------------------------------------- /sample_data/reader.zju_mick.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1394364 3 | 3813669 4 | 6798611 5 | 6082808 6 | 6539860 7 | 6723196 8 | 2010284 9 | 4736118 10 | 3266609 11 | 1085660 12 | 5248289 13 | 2046977 14 | 5910655 15 | 4732378 16 | 6428468 17 | 4231381 18 | 1291809 19 | 1050743 20 | 5408889 21 | 1939182 22 | 1391508 23 | 4146756 24 | 3041463 25 | 1082694 26 | 3770803 27 | 6522799 28 | 1772786 29 | 3691437 30 | 3785326 31 | 1313268 32 | 1151877 33 | 1949485 34 | 1341035 35 | 5313010 36 | 5414391 37 | 3759806 38 | 2143016 39 | 1391513 40 | 1258489 41 | 4896403 42 | 1258491 43 | 1258490 44 | 2063579 45 | 1056315 46 | 1914636 47 | 5423803 48 | 5253757 49 | 2568552 50 | 1192090 51 | 2053249 52 | 4953695 53 | 1058245 54 | 1027191 55 | 1029040 56 | 1291610 57 | 2123957 58 | 4894980 59 | 1867064 60 | 5290534 61 | 3887826 62 | 3558788 63 | 3390446 64 | 4875762 65 | 5302113 66 | 1770782 67 | 2143732 68 | 4861203 69 | 1779257 70 | 4872671 71 | 3369600 72 | 5363767 73 | 3284411 74 | 3338893 75 | 3270617 76 | 3619896 77 | 3316279 78 | 3077186 79 | 3338894 80 | 3284415 81 | 3571732 82 | 1775691 83 | 3311009 84 | 2171321 85 | 5326870 86 | 4245620 87 | 3995526 88 | 3652388 89 | 4111705 90 | 1029111 91 | 1441016 92 | 2354769 93 | 3142280 94 | 4121562 95 | 1141548 96 | 2382899 97 | 3025921 98 | 5275059 99 | 2068211 100 | 4885241 101 | 4742918 102 | 2150588 103 | 4012128 104 | 3435901 105 | 2150587 106 | 2359003 107 | 4086029 108 | 3066477 109 | 2567698 110 | 4242172 111 | 2363744 112 | 4149893 113 | 3137020 114 | 1438833 115 | 4265847 116 | 1321017 117 | 3836277 118 | 4886245 119 | 3119722 120 | 2052636 121 | 2380307 122 | 3793884 123 | 1970428 124 | 4741216 125 | 1165791 126 | 2000641 127 | 3215423 128 | 4214837 129 | 3573700 130 | 3884108 131 | 3271171 132 | 1963912 133 | 3070273 134 | 1003479 135 | 3729518 136 | 4164024 137 | 3816827 138 | 4185489 139 | 1022238 140 | 3223711 141 | 4010186 142 | 1862145 143 | 1011882 144 | 1467587 145 | 1280543 146 | 1493316 147 | 3248513 148 | 3313327 149 | 2282946 150 | 3995799 151 | 3932063 152 | 1186901 153 | 3224524 154 | 1230413 155 | 1231933 156 | 1236944 157 | 1069227 158 | 3793774 159 | 1859140 160 | 1440885 161 | 2348697 162 | 3580750 163 | 3284230 164 | 3376690 165 | 3061012 166 | 3324272 167 | 2310570 168 | 2311292 169 | 2243213 170 | 3626924 171 | 3137024 172 | 2248759 173 | 3595095 174 | 3319935 175 | 1396339 176 | 1340507 177 | 1079680 178 | 1433346 179 | 3082416 180 | 1057170 181 | 1020241 182 | 2035179 183 | 1006560 184 | 1111621 185 | 1827702 186 | 2698938 187 | 1849651 188 | 1224802 189 | 2974879 190 | 1082387 191 | 3088353 192 | 1003148 193 | 1001911 194 | 1740009 195 | 2048893 196 | 1023322 197 | 2381069 198 | 1130500 199 | 1980222 200 | 1082611 201 | 1151873 202 | 1015547 203 | 1069848 204 | 1077497 205 | 1159373 206 | 1201621 207 | 1084082 208 | 1270508 209 | 1231271 210 | 1962641 211 | 2265341 212 | 1981042 213 | 2265995 214 | 2064450 215 | 1023045 216 | 1931318 217 | 1919072 218 | 3009821 219 | 1018482 220 | 2253642 221 | 1152111 222 | 1941558 223 | 1229901 224 | 1917972 225 | 1488876 226 | 2154713 227 | 1230430 228 | 2184606 229 | 2052448 230 | 1185896 231 | 1102180 232 | 1767945 233 | 1023658 234 | 2113688 235 | 2081876 236 | 1873231 237 | 1017143 238 | 1007772 239 | 1189850 240 | 1470842 241 | 1241423 242 | 1092099 243 | 1214684 244 | 1000517 245 | 1009777 246 | 1845500 247 | 1786387 248 | 1072438 249 | 1049215 250 | 1138537 251 | 1032621 252 | 1231486 253 | 1239654 254 | 1456779 255 | 1096682 256 | 1000482 257 | 1096711 258 | 1173730 259 | 1231934 260 | 1400521 261 | 1792179 262 | 2230248 263 | 2042907 264 | 1013416 265 | 1449351 266 | 1829836 267 | 2116929 268 | 1789837 269 | 1089243 270 | 1014763 271 | 1949338 272 | 1223575 273 | 1039460 274 | 1007928 275 | 1044663 276 | 1029791 277 | 1467793 278 | 1215826 279 | 1083403 280 | 1244943 281 | 1082150 282 | 1134994 283 | 1203251 284 | 2051332 285 | 1043815 286 | 1432042 287 | 1146226 288 | 1213546 289 | 1919816 290 | 1152958 291 | 1236999 292 | 1026425 293 | 2030712 294 | 1232029 295 | 1965977 296 | 1409275 297 | 1473250 298 | 1818452 299 | 1701070 300 | 2126951 301 | 1982909 302 | 1459007 303 | 1090601 304 | 1231697 305 | 1088065 306 | 1064275 307 | 1203244 308 | 1793123 309 | 1050339 310 | 1029553 311 | 1230004 312 | 1005918 313 | 1842426 314 | 1241385 315 | 1119528 316 | 1017841 317 | 1102097 318 | 1139336 319 | 1788421 320 | 1481158 321 | 1031741 322 | 1040771 323 | 1205370 324 | 1013502 325 | 1794620 326 | 1024217 327 | 1016003 328 | 1231481 329 | 1021056 330 | 1480481 331 | 1803022 332 | 1085860 333 | 1119904 334 | 1046265 335 | 1059769 336 | 1068920 337 | 1141406 338 | 1500149 339 | 1151672 340 | 1033144 341 | 1231567 342 | 1230036 343 | 1767741 344 | 1091086 345 | 1088168 346 | 1231590 347 | 1101524 348 | 1085883 349 | 1099889 350 | 1024197 351 | 1179807 352 | 1108725 353 | 1022936 354 | 1019568 355 | 1106304 356 | 1007305 357 | 1083428 358 | 1084336 359 | 1080309 360 | 1061118 361 | 1457891 362 | 1482240 363 | 2009849 364 | 1230206 365 | 1119522 366 | 1022060 367 | 1082334 368 | 1048007 369 | 1200840 370 | 1140457 371 | 1703544 372 | 1208731 373 | 1033778 374 | 1441869 375 | 1921377 376 | 1039730 377 | 1401425 378 | 1008145 379 | 1082154 380 | 1453373 381 | 1102259 382 | 1052241 383 | 1141221 384 | 1229923 385 | 1477390 386 | 1884249 387 | -------------------------------------------------------------------------------- /sample_data/reader.zjuhpp.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1203426 3 | 1073708 4 | 5379664 5 | 4886100 6 | 5402708 7 | 6527751 8 | 1084336 9 | 4749115 10 | 6798611 11 | 2052176 12 | 4736167 13 | 1100470 14 | 5302113 15 | 1288844 16 | 5376384 17 | 1919072 18 | 5904053 19 | 1237371 20 | 3924175 21 | 3321735 22 | 5922193 23 | 4166045 24 | 3886044 25 | 5313010 26 | 6016109 27 | 4261255 28 | 1493316 29 | -------------------------------------------------------------------------------- /sample_data/reader.zjulyf.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5290566 3 | 1679080 4 | 3558629 5 | 2297549 6 | 3059484 7 | 1861298 8 | 1156866 9 | 1045862 10 | 3845101 11 | 3598047 12 | 1786387 13 | 1318427 14 | 1033488 15 | 1017180 16 | 1178658 17 | -------------------------------------------------------------------------------- /sample_data/reader.zjy2091.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 4012143 3 | 2232506 4 | 4817788 5 | 1043008 6 | 1016003 7 | 1122851 8 | 3808982 9 | 1088459 10 | 1318419 11 | 1545830 12 | 1083428 13 | 1141406 14 | 1031741 15 | 1258498 16 | 1092246 17 | 1491853 18 | 1007772 19 | 1035848 20 | 1046209 21 | 4429796 22 | 1801834 23 | 3290127 24 | 1205370 25 | 2141139 26 | 1858576 27 | 1039020 28 | 1170801 29 | 1063245 30 | 1001136 31 | 1036274 32 | 1001896 33 | 1051193 34 | 1084336 35 | 3841409 36 | 1320282 37 | 1146141 38 | 5444171 39 | 5444172 40 | 1390755 41 | 6716345 42 | 4894347 43 | 1119522 44 | 1392051 45 | 1077528 46 | 4741216 47 | 2124114 48 | 1022060 49 | 1421029 50 | 1064275 51 | 2032280 52 | 2234716 53 | 1449421 54 | 1047751 55 | 1043201 56 | 1447660 57 | 1644508 58 | 1829836 59 | 1140649 60 | 1669530 61 | 1439543 62 | 1142862 63 | 1023322 64 | -------------------------------------------------------------------------------- /sample_data/reader.zkbasten.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1046202 3 | 5375571 4 | 4725541 5 | 3223711 6 | 5254315 7 | 4117922 8 | 1056979 9 | 1318126 10 | 1005521 11 | 1885170 12 | 1996593 13 | 4278308 14 | 2063268 15 | 3580809 16 | 1210303 17 | 3206494 18 | 1689108 19 | 3266344 20 | 3245127 21 | 2298149 22 | 2057285 23 | 1948901 24 | 2257609 25 | 1853323 26 | 2309689 27 | 3267945 28 | 1477390 29 | 1231933 30 | 4886245 31 | 4246858 32 | 4929330 33 | 3210776 34 | 1028409 35 | 1770782 36 | 2284311 37 | 2024655 38 | 1179807 39 | 1103015 40 | 1459728 41 | 1974408 42 | 1174290 43 | 1024197 44 | 1029159 45 | 1023500 46 | 1440089 47 | 1227838 48 | 1016300 49 | 3056892 50 | 1026425 51 | 1087036 52 | 1068920 53 | 3181271 54 | 1152701 55 | 1205370 56 | 1279212 57 | 1893971 58 | 1401841 59 | 1141406 60 | 5275059 61 | 1562802 62 | 2357268 63 | 1458188 64 | -------------------------------------------------------------------------------- /sample_data/reader.zkkpkk.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 2257989 3 | 2024655 4 | 2130743 5 | 3037562 6 | 1099889 7 | 1454486 8 | 1792179 9 | 1088168 10 | 1088045 11 | 4719230 12 | 3227098 13 | 1767741 14 | 1240345 15 | -------------------------------------------------------------------------------- /sample_data/reader.zknyy.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1778973 3 | 1151462 4 | 1231972 5 | 1108725 6 | 1102259 7 | 1099236 8 | 1231577 9 | 1136473 10 | 1092098 11 | 1089637 12 | 1094798 13 | 1479637 14 | 1093792 15 | 1180717 16 | 1106248 17 | 1449002 18 | 1025721 19 | -------------------------------------------------------------------------------- /sample_data/reader.zliaa.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1160647 3 | 1160646 4 | 1231135 5 | 1146225 6 | 1007305 7 | 1241385 8 | 1110941 9 | 3234692 10 | 1110934 11 | 1231590 12 | 3652388 13 | 1467587 14 | 1052241 15 | 1477390 16 | 1019568 17 | 1008145 18 | 1200840 19 | -------------------------------------------------------------------------------- /sample_data/reader.zlib.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 2326571 3 | 5319797 4 | 4113090 5 | 4141191 6 | 6974102 7 | 6974232 8 | 5248387 9 | 6511603 10 | 1072438 11 | 2064450 12 | 1079029 13 | 2147373 14 | 6709783 15 | 6265750 16 | 5363767 17 | 3066477 18 | 5376384 19 | 2567698 20 | 1049348 21 | 1058881 22 | 2257609 23 | 1853323 24 | 2309689 25 | 3610094 26 | 3236977 27 | 4827061 28 | 5375571 29 | 4725541 30 | 4010196 31 | 5380976 32 | 3889005 33 | 5029372 34 | 4031959 35 | 2011804 36 | 4163938 37 | 4010159 38 | 4200645 39 | 1031524 40 | 2307272 41 | 2298149 42 | 4173968 43 | 2057285 44 | 3800166 45 | 3266344 46 | 1948901 47 | 2156079 48 | 1309263 49 | 2133254 50 | 2041282 51 | 1082361 52 | 3017080 53 | 2327558 54 | 2225737 55 | 1427308 56 | 1421547 57 | 1057444 58 | 3000997 59 | 1057206 60 | 2143308 61 | 2243680 62 | 1095889 63 | 1070851 64 | 1033866 65 | 1231934 66 | 1052380 67 | 1084080 68 | 1255625 69 | 1455373 70 | 1704006 71 | 1089519 72 | 1089511 73 | 1088089 74 | 1089510 75 | 1264579 76 | 1089515 77 | 1089518 78 | 1089523 79 | 1422833 80 | 1089512 81 | 4090968 82 | 2381069 83 | 1023825 84 | 1511965 85 | 1089521 86 | 1200840 87 | 1059644 88 | 1095838 89 | 1050640 90 | 1200846 91 | 1668021 92 | 1963121 93 | 2225147 94 | 3691314 95 | 3338270 96 | 2337600 97 | 1105865 98 | 1016595 99 | 1933479 100 | 1106248 101 | 3764948 102 | 2980596 103 | 3654590 104 | 2262931 105 | 3629790 106 | 1185374 107 | 3042930 108 | 1920619 109 | 3608327 110 | 1392588 111 | 2307661 112 | 2099309 113 | 2110888 114 | 2177973 115 | 2289100 116 | 2094609 117 | 2055616 118 | 1493173 119 | 1313195 120 | 1040771 121 | 1231231 122 | 1754542 123 | 1432219 124 | 1432220 125 | 3274113 126 | 1028234 127 | 3082293 128 | 1439589 129 | 2216376 130 | 3626924 131 | 3123950 132 | 3017066 133 | 1485225 134 | 3558788 135 | 1881118 136 | 2279868 137 | 3511129 138 | 1858594 139 | 3321602 140 | 3297466 141 | 3165135 142 | 3165385 143 | 3165386 144 | 3244065 145 | 3244068 146 | 3155622 147 | 3255919 148 | 3249938 149 | 3214462 150 | 3120720 151 | 3072649 152 | 1801930 153 | 2189703 154 | 1459013 155 | 1215826 156 | 1033144 157 | 1088022 158 | 1033778 159 | 3107284 160 | 1988741 161 | 1827578 162 | 1229959 163 | 1788421 164 | 1007738 165 | 1151462 166 | 2147557 167 | 1212890 168 | 1022460 169 | 1957339 170 | 1057170 171 | 1244943 172 | 1845500 173 | 1464442 174 | 1088054 175 | 1096216 176 | 1453373 177 | 1457891 178 | 1208731 179 | 1961773 180 | 1035119 181 | 1088045 182 | 1231481 183 | 3070059 184 | 1879670 185 | 2123092 186 | 1734385 187 | 1173548 188 | 1091086 189 | 1085409 190 | 2974596 191 | 2126397 192 | 1036116 193 | 1171912 194 | 2281436 195 | 1224803 196 | 1767741 197 | 1231590 198 | 1241385 199 | 1962641 200 | 1051674 201 | 3319935 202 | 1315047 203 | 1092099 204 | 1103015 205 | 1230036 206 | 1888404 207 | 1041482 208 | 1467587 209 | 1231697 210 | 2243676 211 | 1141587 212 | 1291798 213 | 2042907 214 | 1829836 215 | 1275608 216 | 1426838 217 | 1173730 218 | 1229923 219 | 1768583 220 | 1951015 221 | 1960308 222 | 2594819 223 | 1442620 224 | 1887264 225 | 3267945 226 | 2975465 227 | 2973566 228 | 2158688 229 | 1969918 230 | 1964451 231 | 1448768 232 | 3027984 233 | 1060204 234 | 1061977 235 | 2026211 236 | 1867642 237 | 2975973 238 | 1872345 239 | 2971969 240 | 3222623 241 | 3164293 242 | 3119722 243 | 3242651 244 | 2253642 245 | 1949338 246 | 2052448 247 | 3009821 248 | 1873231 249 | 3241893 250 | 3210664 251 | 3232127 252 | 3271914 253 | 3033668 254 | 3071235 255 | 3029411 256 | 3147450 257 | 3124547 258 | 2201813 259 | 2077135 260 | 2984098 261 | -------------------------------------------------------------------------------- /sample_data/reader.zlite.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1885170 3 | 1477390 4 | 1152111 5 | 6021440 6 | 1482162 7 | 1440658 8 | 3884108 9 | 4866934 10 | 3764948 11 | -------------------------------------------------------------------------------- /sample_data/reader.zlk.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1464203 3 | 1212080 4 | 1019428 5 | 1011662 6 | 1079440 7 | 1031740 8 | 1020959 9 | 5355999 10 | 1084336 11 | 3285489 12 | 1015452 13 | 1039752 14 | 3523041 15 | 1017143 16 | 1008145 17 | 1046265 18 | 3931606 19 | 2338578 20 | 1988741 21 | 2347640 22 | 1315050 23 | 1936917 24 | 1839273 25 | 1246450 26 | 2068103 27 | 1764900 28 | 1137329 29 | 1416743 30 | 2116186 31 | 1128180 32 | 1200902 33 | 1162372 34 | 1232101 35 | 1457248 36 | 1922986 37 | 1898098 38 | 1907050 39 | 1829262 40 | 1866701 41 | 1869705 42 | 1429555 43 | 1907044 44 | 1152116 45 | 1239654 46 | 1793123 47 | 1754542 48 | 1230451 49 | -------------------------------------------------------------------------------- /sample_data/reader.zlmind.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 6798611 3 | 1319751 4 | 4010196 5 | 1103015 6 | 3549421 7 | 3892588 8 | 4163938 9 | 1786387 10 | 1432164 11 | 3923414 12 | 3319935 13 | 1419359 14 | 3013946 15 | 2240612 16 | 3284230 17 | 1873231 18 | 1045201 19 | 1775691 20 | 2076710 21 | 2340100 22 | 1898098 23 | 1152111 24 | 2256039 25 | 3609132 26 | 3184740 27 | 1315050 28 | 1427679 29 | 2359003 30 | 1229923 31 | 1065750 32 | 1433325 33 | 2186929 34 | 1071821 35 | 3005866 36 | -------------------------------------------------------------------------------- /sample_data/reader.zloolz.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5297291 3 | 3686467 4 | 4238931 5 | 6253597 6 | 1262171 7 | 2081876 8 | 4909201 9 | 1342175 10 | 2218310 11 | 2160556 12 | 4124876 13 | 3875973 14 | 3689118 15 | 2309689 16 | 2747765 17 | 1059336 18 | 1879378 19 | 1003000 20 | 2307146 21 | 2147330 22 | 1149105 23 | 1320282 24 | 2270926 25 | 1101502 26 | 1190181 27 | 1039783 28 | 1909978 29 | 1277279 30 | 1391790 31 | 1112447 32 | 1425834 33 | 1146634 34 | 1135754 35 | 1057877 36 | 1454056 37 | 1232084 38 | 1013380 39 | 1069848 40 | 1075492 41 | 1082518 42 | 1150503 43 | -------------------------------------------------------------------------------- /sample_data/reader.zls.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3210843 3 | 1986291 4 | 1464203 5 | 1336330 6 | 2064814 7 | 2033217 8 | 1089512 9 | 1089517 10 | 1068308 11 | 1052380 12 | 1076045 13 | 1038140 14 | 1063624 15 | 1055976 16 | 1014533 17 | 1002299 18 | 1070851 19 | 1255624 20 | 1044547 21 | 1255625 22 | 1922062 23 | 1203426 24 | 1823751 25 | 2266774 26 | 1963786 27 | 1370871 28 | 1386052 29 | 1340583 30 | 1085860 31 | 1276032 32 | 1885170 33 | 1082150 34 | 1046265 35 | 1022060 36 | 1703544 37 | 1401425 38 | 1082154 39 | 1054685 40 | 1077933 41 | 1844792 42 | 1071241 43 | 1041007 44 | 1039487 45 | 1009257 46 | 2295163 47 | 1432596 48 | 1342817 49 | 1373707 50 | 1058759 51 | 1071794 52 | 1040104 53 | 2256039 54 | 1329968 55 | 1231934 56 | 1483522 57 | 1291355 58 | 1040211 59 | 2160556 60 | 1204889 61 | 1822064 62 | 1467793 63 | 4097992 64 | 1760540 65 | 1002966 66 | 1417287 67 | 1049924 68 | 2347546 69 | 1171849 70 | 1916937 71 | 1390934 72 | 1882483 73 | 1225977 74 | 1230516 75 | 1229948 76 | 1410016 77 | 1418999 78 | -------------------------------------------------------------------------------- /sample_data/reader.zmsleeping.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/reader.znetor.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5275059 3 | 4866934 4 | 3142778 5 | 6021440 6 | 3551023 7 | 3644726 8 | 3800093 9 | 4178844 10 | 1002914 11 | 1427538 12 | 3267945 13 | 2208530 14 | 3791428 15 | 1395541 16 | 1006646 17 | 3056620 18 | -------------------------------------------------------------------------------- /sample_data/reader.zoe11.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 4230121 3 | 5067922 4 | 6773859 5 | 1022060 6 | 1263565 7 | 6100947 8 | 4175452 9 | 3410787 10 | 6558047 11 | 1200840 12 | 6139702 13 | 2297697 14 | 4173403 15 | 3994658 16 | 1082518 17 | 1083003 18 | 5975571 19 | 1794620 20 | 1626532 21 | 5990251 22 | 4932913 23 | 1914572 24 | 3017064 25 | 4266797 26 | 4211026 27 | 4106371 28 | 3043520 29 | 3017063 30 | 3465071 31 | 4266808 32 | 2256039 33 | 3759806 34 | 5242197 35 | 3069229 36 | 4121562 37 | 4822610 38 | 1856025 39 | 1051363 40 | 3284110 41 | 2062604 42 | 1034615 43 | 1029068 44 | 1767554 45 | 1145305 46 | 3239544 47 | 1229236 48 | 1229235 49 | 1767945 50 | 1059336 51 | 3824491 52 | 1059989 53 | 1772173 54 | 1088711 55 | 1863548 56 | 3082876 57 | 2341440 58 | 3803838 59 | 3376905 60 | 2123957 61 | -------------------------------------------------------------------------------- /sample_data/reader.zoechan.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1418180 3 | 2257188 4 | 1482200 5 | 1082578 6 | 1015452 7 | 5317075 8 | 3771081 9 | 3279273 10 | 1014040 11 | 2119843 12 | 3795756 13 | 4630664 14 | 3371165 15 | 4924427 16 | 5275059 17 | 1044663 18 | 1799224 19 | 1257491 20 | 3759808 21 | 1808269 22 | 1313268 23 | 1089733 24 | 4238362 25 | 3406518 26 | 2339950 27 | 2364778 28 | 1059937 29 | 1441707 30 | 1466389 31 | 3822879 32 | 1975673 33 | 1104522 34 | 3432989 35 | 2237945 36 | 2272366 37 | 3647875 38 | 2317973 39 | 1049190 40 | 1451270 41 | 2247259 42 | 2226264 43 | 1020241 44 | -------------------------------------------------------------------------------- /sample_data/reader.zoej.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 2275635 3 | 1911267 4 | 3420606 5 | 1912458 6 | 1922254 7 | 3141084 8 | 1115353 9 | 1062193 10 | 1507301 11 | 1727293 12 | 1193622 13 | 3813669 14 | 3344676 15 | 1003284 16 | 3609132 17 | 2256039 18 | 3369793 19 | 2240612 20 | 1040397 21 | 1036922 22 | 3074379 23 | 1485597 24 | 3124389 25 | 1925360 26 | 2143304 27 | 1040042 28 | 1911655 29 | 1967723 30 | 1422017 31 | 1027521 32 | 1794620 33 | 1429589 34 | 1082154 35 | 1072169 36 | 1145310 37 | 1439543 38 | 1014578 39 | 1084336 40 | 1032501 41 | 1397331 42 | 1147347 43 | 1221479 44 | 1309255 45 | -------------------------------------------------------------------------------- /sample_data/reader.zoelss.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3604295 3 | 1033997 4 | -------------------------------------------------------------------------------- /sample_data/reader.zoetantan.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1933479 3 | 1033778 4 | 2227757 5 | 1024217 6 | 1542075 7 | 1788649 8 | 2060042 9 | 2137719 10 | 1947611 11 | 1818722 12 | 1441931 13 | 1642776 14 | 1008323 15 | 4912684 16 | 3417147 17 | 1203257 18 | 1655362 19 | 4618225 20 | 2244146 21 | 1100210 22 | 2215160 23 | 2257333 24 | 1769765 25 | 3065698 26 | 1032581 27 | 2022979 28 | 1791664 29 | 3905366 30 | 5325809 31 | 1962409 32 | 5283657 33 | 4246151 34 | 5395407 35 | 2255185 36 | 1032369 37 | 1334064 38 | 3823070 39 | 1705507 40 | 2137802 41 | 1482322 42 | 5921737 43 | 3919715 44 | 2216422 45 | 3264660 46 | 3228736 47 | 2698538 48 | 3335951 49 | 4251473 50 | 1985223 51 | 1731370 52 | 1051797 53 | 1461903 54 | 1212893 55 | 1044547 56 | 1255624 57 | 1002299 58 | 1255625 59 | 1040211 60 | 1041007 61 | 1007305 62 | 3054781 63 | 1072508 64 | 1083474 65 | 1620735 66 | 1201947 67 | 1013502 68 | 1075371 69 | 1029553 70 | 1015403 71 | 1132550 72 | 2136633 73 | 1033744 74 | 1050349 75 | 1013369 76 | 3698398 77 | 1066462 78 | 1043201 79 | 1382838 80 | 1084336 81 | 3067169 82 | 1831012 83 | 4884218 84 | 6709834 85 | 1092200 86 | 1082160 87 | 1090042 88 | 1075776 89 | 1119522 90 | 1068920 91 | 4173725 92 | 4749115 93 | 1026855 94 | 1441923 95 | 5363666 96 | 1004118 97 | 1017749 98 | 1793800 99 | 3003765 100 | 6511379 101 | 3218539 102 | 2068249 103 | 2230208 104 | 5317075 105 | 3036230 106 | 1261128 107 | 4149287 108 | 3010568 109 | 1361264 110 | 1781120 111 | 3554154 112 | 4075123 113 | 2050777 114 | 3115489 115 | 4245043 116 | 4304630 117 | 3677999 118 | 1937939 119 | 3065701 120 | 3123939 121 | 2300626 122 | 1925218 123 | 1485694 124 | 1799984 125 | 2070203 126 | 1808582 127 | 1139681 128 | 1382864 129 | 1056868 130 | 1264791 131 | 4894992 132 | 2118742 133 | 2351434 134 | 2343018 135 | 2139618 136 | 2138527 137 | 3829610 138 | 3250733 139 | 3170442 140 | 2216340 141 | 2048364 142 | 1468493 143 | 1915170 144 | 1418656 145 | 1082917 146 | 5323842 147 | 1507429 148 | 1464989 149 | 4582325 150 | 1027343 151 | 1047719 152 | 1316648 153 | 1008145 154 | 1045890 155 | 1418173 156 | 1054784 157 | 1873231 158 | 1040771 159 | 3015008 160 | 1958655 161 | 3813669 162 | 2209098 163 | 1844069 164 | 1940182 165 | 1084223 166 | 1036490 167 | 2139539 168 | 1075538 169 | 4831327 170 | 4831319 171 | 2044295 172 | 4831326 173 | 1313275 174 | 2989622 175 | 1051500 176 | 4901554 177 | 1905157 178 | 4831317 179 | 3901238 180 | 1086249 181 | 1082334 182 | 3426869 183 | -------------------------------------------------------------------------------- /sample_data/reader.zongs.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 6021440 3 | 1016163 4 | 1153528 5 | 4886245 6 | 3803820 7 | 1476651 8 | 1034150 9 | 1000694 10 | 1944205 11 | 1467587 12 | 1195595 13 | 1873569 14 | 3609132 15 | 4006425 16 | 1919818 17 | 1008094 18 | 2344088 19 | 3091368 20 | 1119152 21 | 2026211 22 | 1391740 23 | 2980452 24 | 1135754 25 | 1001357 26 | 1881556 27 | 1969983 28 | 1900962 29 | 2328458 30 | 1062343 31 | 1088022 32 | 1427825 33 | 3004366 34 | 1536620 35 | 2359003 36 | 2244146 37 | 1084080 38 | -------------------------------------------------------------------------------- /sample_data/reader.zoomq.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 6068947 3 | 1472946 4 | 6862062 5 | 4201707 6 | 3094230 7 | 5372651 8 | 6075127 9 | 4937547 10 | 4821762 11 | 4132590 12 | 3066477 13 | 3698779 14 | 4238199 15 | 3403007 16 | 3003097 17 | 1811932 18 | 5936061 19 | 2047781 20 | 6021440 21 | 1899158 22 | 3661214 23 | 4932289 24 | 4164024 25 | 5916234 26 | 3689113 27 | 1619598 28 | 3044864 29 | 4257066 30 | 3151772 31 | 1766351 32 | 1128172 33 | 4275054 34 | 1786387 35 | 1072767 36 | 2350407 37 | 3181927 38 | 1000121 39 | 1115353 40 | 3609132 41 | 1257370 42 | 3145641 43 | 3902959 44 | 4760725 45 | 4143009 46 | 4006425 47 | 4031959 48 | 4291404 49 | 4163938 50 | 2380018 51 | 2380037 52 | 2980311 53 | 2301159 54 | 2380008 55 | 2382060 56 | 3404566 57 | 3884108 58 | 1867455 59 | 1038305 60 | 1033190 61 | 3132277 62 | 3578215 63 | 3098708 64 | 1185932 65 | 3032889 66 | 1030200 67 | 3117898 68 | 1077129 69 | 1437582 70 | 3142280 71 | 1144706 72 | 1136703 73 | 1940567 74 | 1091412 75 | 1087565 76 | 1937913 77 | 1939182 78 | 1473371 79 | 1467532 80 | 1459623 81 | 1481371 82 | 2069694 83 | 1892678 84 | 1927757 85 | 1978296 86 | 1764915 87 | 1452610 88 | 1894749 89 | 1918707 90 | 1120977 91 | 1918734 92 | 1439894 93 | 1193821 94 | 1056733 95 | 1786670 96 | 2052176 97 | 1827702 98 | 1102259 99 | 1084919 100 | 1084918 101 | 1057211 102 | 1082172 103 | 1082173 104 | 1032945 105 | 1045247 106 | 1921479 107 | 1028780 108 | 2080764 109 | 2052448 110 | 1949338 111 | 1873231 112 | 1471532 113 | 1187842 114 | 1927782 115 | 1581547 116 | 1467535 117 | 1812618 118 | 1872343 119 | 1073749 120 | 1236944 121 | 1467587 122 | 1470133 123 | 1458188 124 | 1449361 125 | 1868734 126 | 1457226 127 | 1462444 128 | 1506882 129 | 1458194 130 | 1417102 131 | 1784458 132 | 1335968 133 | 1433760 134 | 1456906 135 | 1426816 136 | 1441488 137 | 1474418 138 | 1848193 139 | 1770656 140 | 1424570 141 | 1386229 142 | 1456831 143 | 1763364 144 | 1417225 145 | 1454803 146 | 1225977 147 | 1467333 148 | 1466494 149 | 1418630 150 | 1110772 151 | 1240831 152 | 1418172 153 | 1440658 154 | 1263905 155 | 1511580 156 | 1066336 157 | 1090672 158 | 1114687 159 | 1083228 160 | 1433934 161 | 1276667 162 | 1127428 163 | 1114677 164 | 1114671 165 | 1114685 166 | 1090048 167 | 1114689 168 | 1032197 169 | 1214393 170 | 1127427 171 | 1114678 172 | 1090047 173 | 1114688 174 | 1114666 175 | 1032319 176 | 1418910 177 | 1114672 178 | 1114662 179 | 1083227 180 | 1090046 181 | 1127424 182 | 1114684 183 | 1114683 184 | 1114676 185 | 1114668 186 | 1114669 187 | 1114700 188 | 1114682 189 | 1090039 190 | 1114658 191 | 1127425 192 | 1083224 193 | 1114667 194 | 1114673 195 | 1114664 196 | 1083230 197 | 1127423 198 | 1245335 199 | 1114663 200 | 1090038 201 | 1125380 202 | 1114670 203 | 1127422 204 | 1114674 205 | 1114681 206 | 1114686 207 | 1114680 208 | 1127426 209 | 1114665 210 | 1437664 211 | 1449957 212 | 1481362 213 | 1439891 214 | 1467239 215 | 1439216 216 | 1428691 217 | 1458186 218 | 1066462 219 | 1458341 220 | 1474688 221 | 1207803 222 | 1151878 223 | 1291361 224 | 1039487 225 | 1449602 226 | 1130892 227 | 1441959 228 | 1456203 229 | 1463599 230 | 1464424 231 | 1103265 232 | 1258286 233 | 1310155 234 | 1276032 235 | 1460686 236 | 1465602 237 | 1337374 238 | 1391510 239 | 1422124 240 | 1399992 241 | 1394964 242 | 1394303 243 | 1394306 244 | 1083321 245 | 1080036 246 | 1385559 247 | 1140729 248 | 1204487 249 | 1385561 250 | 1047200 251 | 1146267 252 | 1385564 253 | 1385563 254 | 1258490 255 | 1275608 256 | 1085470 257 | 1432082 258 | 1085883 259 | 1028270 260 | 1436862 261 | 1007928 262 | 1039460 263 | 1369777 264 | 1389972 265 | 1000445 266 | 1437653 267 | 1364770 268 | 1364769 269 | 1369965 270 | 1028361 271 | 1032374 272 | 1440468 273 | 1440992 274 | 1441241 275 | 1439199 276 | 1436653 277 | 1037691 278 | 1418032 279 | 1424324 280 | 1424330 281 | 1080586 282 | 1401840 283 | 1329941 284 | 1211937 285 | 1389535 286 | 1226062 287 | 1364772 288 | 1358873 289 | 1431880 290 | 1421921 291 | 1424694 292 | 1424555 293 | 1369776 294 | 1361249 295 | 1416957 296 | 1416964 297 | 1048692 298 | 1388169 299 | 2360269 300 | 1020407 301 | 1419736 302 | 1082150 303 | 1433958 304 | 1433021 305 | 1201098 306 | 1361593 307 | 1358466 308 | 1389945 309 | 1002895 310 | 1041403 311 | 1418949 312 | 1418944 313 | 1361873 314 | 1417361 315 | 1361317 316 | 1372973 317 | 1361900 318 | 1361440 319 | 1016056 320 | 1322342 321 | 1322066 322 | 1322328 323 | 1322158 324 | 1017713 325 | 1016059 326 | 1322248 327 | 1055186 328 | 1055183 329 | 1008452 330 | 1055182 331 | 1016057 332 | 1016060 333 | 1281622 334 | 1016055 335 | 1030164 336 | 1016053 337 | 1016062 338 | 1014456 339 | 1004956 340 | 1016061 341 | 1055184 342 | 1010362 343 | 1016058 344 | 1330009 345 | 1361258 346 | 1046172 347 | 1016063 348 | 1038267 349 | 1030153 350 | 1361268 351 | 1051797 352 | 1341537 353 | 1076219 354 | 1014438 355 | 1029040 356 | 1103266 357 | 1084336 358 | 1006231 359 | 1125417 360 | 1000689 361 | 1418437 362 | 1085467 363 | 1393430 364 | 1337295 365 | 1082294 366 | 1418999 367 | 1074298 368 | 1157681 369 | 1292322 370 | 1271212 371 | 1204488 372 | 1370245 373 | 1240134 374 | 1208996 375 | 1401943 376 | 1062235 377 | 1401858 378 | 1401925 379 | 1401926 380 | 1064282 381 | 1401862 382 | 1401938 383 | 1401935 384 | 1401934 385 | 1401929 386 | 1401863 387 | 1401928 388 | 1401930 389 | 1401932 390 | 1401864 391 | 1401861 392 | 1401856 393 | 1394340 394 | 1360908 395 | 1401860 396 | 1394329 397 | 1401857 398 | 1291542 399 | 1230451 400 | 1389960 401 | 1236778 402 | 1221515 403 | 1370274 404 | 1410555 405 | 1229901 406 | 1129879 407 | 1109610 408 | 1199026 409 | 1003000 410 | 1023048 411 | 1207254 412 | 1200840 413 | 1084082 414 | 1140727 415 | 1033744 416 | 1045818 417 | 1083884 418 | 1239501 419 | 1240608 420 | 1014331 421 | 1006560 422 | -------------------------------------------------------------------------------- /sample_data/reader.zorrow.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3151575 3 | 1022936 4 | 1059769 5 | 2054916 6 | 2042338 7 | 2070068 8 | 1786670 9 | 2080914 10 | 5336223 11 | 2135416 12 | 2142602 13 | 5363767 14 | 3066477 15 | 2567698 16 | 1198312 17 | 1967817 18 | 1917417 19 | 1863010 20 | 1812215 21 | 1020459 22 | 3401732 23 | 2376789 24 | 1812833 25 | 1030054 26 | 1028409 27 | 1060383 28 | 1041993 29 | 2343292 30 | 2343270 31 | 1010464 32 | 1791383 33 | 1330453 34 | 1020959 35 | 3168461 36 | 2174010 37 | 2158192 38 | 3168472 39 | 3168468 40 | 1219178 41 | 1449995 42 | 1769524 43 | 1159939 44 | 1052968 45 | 2033349 46 | 1789842 47 | 3168460 48 | 1255500 49 | 1789841 50 | 1080544 51 | 1482199 52 | 1789837 53 | 1085011 54 | 1559310 55 | 1291809 56 | 2174013 57 | 1433411 58 | 1007305 59 | 1008988 60 | 1325507 61 | 1082577 62 | 1082407 63 | 1006770 64 | 1070851 65 | 1255624 66 | 1200843 67 | 2256438 68 | 2158189 69 | 2158161 70 | 1080789 71 | 1068866 72 | 1200848 73 | 1204132 74 | 1088423 75 | 1063418 76 | 1039730 77 | 1045466 78 | 1011662 79 | 1079440 80 | 1019428 81 | 1015452 82 | 1212080 83 | 1085470 84 | 1082387 85 | 1013225 86 | 1059419 87 | 1200846 88 | 1024733 89 | 1370250 90 | 1040481 91 | 1053914 92 | 1020670 93 | 1521535 94 | 1031146 95 | 1076654 96 | 1080951 97 | 1361263 98 | 1082417 99 | 1036490 100 | 1002299 101 | 1597854 102 | 1194576 103 | 1064682 104 | 1082399 105 | 1082398 106 | 1382846 107 | 1382838 108 | 1025643 109 | 1013502 110 | 1029111 111 | 1470158 112 | 1281708 113 | 1141406 114 | 1024217 115 | 1016300 116 | 1361264 117 | 1077847 118 | 1060774 119 | 1016003 120 | 1009393 121 | 2022979 122 | 1061118 123 | 1470159 124 | 1085860 125 | 1225977 126 | 1613372 127 | 1547265 128 | 1082154 129 | 1016057 130 | 1322342 131 | 1255598 132 | 1055184 133 | 1371571 134 | 1897413 135 | 1361258 136 | 1031740 137 | 1039752 138 | 1089243 139 | 1029791 140 | 1063190 141 | 1090043 142 | 1058234 143 | 1082518 144 | 1029159 145 | 1065970 146 | 1046265 147 | 1000537 148 | 1016523 149 | 1777932 150 | 1863930 151 | 1776683 152 | 1485224 153 | 1045818 154 | 1051363 155 | 1223575 156 | 1054889 157 | 1396517 158 | 1004329 159 | 1088812 160 | 1084336 161 | 1277981 162 | 1005813 163 | 1443638 164 | 1055038 165 | 1007240 166 | 1055258 167 | 1006644 168 | 1394400 169 | 1394401 170 | 1394382 171 | 1261560 172 | 1070007 173 | 1077528 174 | 1028842 175 | 1418180 176 | 1482200 177 | 1030052 178 | 1033825 179 | 1017860 180 | 1255625 181 | 1361260 182 | 1052360 183 | 1066165 184 | 1089510 185 | 1119522 186 | 1017143 187 | 1017841 188 | 1089512 189 | 1060068 190 | 1205370 191 | 1080692 192 | 1086451 193 | 1438602 194 | 1068920 195 | 1031741 196 | 1119528 197 | 1087036 198 | 1382833 199 | 1382836 200 | 1382829 201 | 1082369 202 | 1471701 203 | 1203244 204 | 1068308 205 | 1010362 206 | 1143694 207 | 1436716 208 | 1049348 209 | 1069724 210 | 1047001 211 | 1427825 212 | 1015699 213 | 1041482 214 | 1281622 215 | 1053759 216 | 1044663 217 | 1011754 218 | 1048610 219 | 1054685 220 | 1020241 221 | 1078554 222 | 1029553 223 | 1085799 224 | 1082138 225 | 1082582 226 | 1085883 227 | 1067907 228 | 1361268 229 | 1086249 230 | 1212893 231 | 1082150 232 | 1096790 233 | 1330096 234 | 1023658 235 | 1023048 236 | 1082162 237 | 1125186 238 | 1014278 239 | 1317301 240 | 1043201 241 | 1059406 242 | 1330009 243 | 1046172 244 | 1004956 245 | 1016063 246 | 1038267 247 | 1030153 248 | 1006004 249 | 1051797 250 | 1017149 251 | 1014578 252 | 1436713 253 | 1132956 254 | 1082406 255 | 1400705 256 | 1436348 257 | 1312333 258 | 1023500 259 | 1529893 260 | 1424420 261 | -------------------------------------------------------------------------------- /sample_data/reader.zoufeiyy.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1015699 3 | 3004255 4 | 1034329 5 | 1919072 6 | 1789842 7 | 1789841 8 | 1442037 9 | 1049136 10 | 1192090 11 | 3066477 12 | 5363767 13 | 2567698 14 | 3219301 15 | 3112503 16 | 1962641 17 | 1220853 18 | 2081876 19 | 2062857 20 | 1006560 21 | 3623696 22 | 3833335 23 | 3227098 24 | 4214147 25 | 1230036 26 | 1229923 27 | 1231972 28 | 1135754 29 | 1137278 30 | 1132623 31 | 4895627 32 | 1467587 33 | 3288908 34 | 1152111 35 | 3652388 36 | 1052241 37 | 1102259 38 | 1477390 39 | -------------------------------------------------------------------------------- /sample_data/reader.zoujibing.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 6709783 3 | 1007914 4 | 4112632 5 | 4238931 6 | 5414385 7 | 4860462 8 | 6104554 9 | 6709834 10 | 1013208 11 | 3465502 12 | 5914791 13 | 4934828 14 | 5366275 15 | 4820694 16 | 4240969 17 | 1396502 18 | 3151575 19 | 1441901 20 | 1261544 21 | 1025723 22 | 3038143 23 | 3323633 24 | 3413828 25 | 3932520 26 | 4150276 27 | 5904053 28 | 4010196 29 | 4273386 30 | 4134842 31 | 3813669 32 | 3137159 33 | 3313363 34 | 3335643 35 | 3344676 36 | 3181927 37 | 4199761 38 | 3912303 39 | 2257188 40 | 5375605 41 | 2368076 42 | 2376486 43 | -------------------------------------------------------------------------------- /sample_data/reader.zpijiake.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/reader.zputee.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5338025 3 | 4738788 4 | 5998130 5 | 1824322 6 | 3410946 7 | 2161910 8 | 2305227 9 | 1081103 10 | 3887826 11 | 3529552 12 | 1401066 13 | 1540711 14 | 2347395 15 | 3916979 16 | 3777874 17 | 3831478 18 | 2254495 19 | 3323633 20 | 2256477 21 | 3786755 22 | 3797251 23 | 2274260 24 | 3831476 25 | 1221141 26 | 4225644 27 | 1934300 28 | 2382147 29 | 3656527 30 | 1898098 31 | 2970072 32 | 3007076 33 | 3413807 34 | 3082293 35 | 2353900 36 | 3446112 37 | 2025610 38 | 3290207 39 | 3643214 40 | 1800001 41 | 3277840 42 | 3845101 43 | 1000425 44 | 3171574 45 | 1927515 46 | 3753939 47 | 2012638 48 | 4012145 49 | 3891900 50 | 1015857 51 | 2283520 52 | 2285201 53 | 3292060 54 | 3291970 55 | 1775691 56 | 3717315 57 | 1087150 58 | 3633469 59 | 1491530 60 | 2281365 61 | 3429957 62 | 1178089 63 | 3043970 64 | 1879498 65 | 1132712 66 | 3701270 67 | 1185068 68 | 1680573 69 | 1680574 70 | 3394338 71 | 1680571 72 | 1680509 73 | 3077053 74 | 1626304 75 | 1680508 76 | 1741365 77 | 1025373 78 | 1457028 79 | 2439198 80 | 3030697 81 | 1015699 82 | 1003479 83 | 1657455 84 | 3200450 85 | 2295079 86 | 3626924 87 | 3274113 88 | 3009821 89 | 2253642 90 | 2052448 91 | 1949338 92 | 1873231 93 | 1915608 94 | 1962687 95 | 1000952 96 | 1084264 97 | 1013208 98 | 3025921 99 | 1007667 100 | 1969983 101 | 2986244 102 | 1081674 103 | 3020722 104 | 1077528 105 | 3219365 106 | 2977580 107 | 1032501 108 | 3135005 109 | 3197589 110 | 1187550 111 | 1476651 112 | 3137979 113 | 1721809 114 | 3197590 115 | 1116315 116 | 2209119 117 | 3000997 118 | 3055719 119 | 1085401 120 | 1016853 121 | 1109350 122 | 1002090 123 | 1008591 124 | 1003026 125 | 1029988 126 | 1028029 127 | 3132018 128 | 1867642 129 | 1041283 130 | 2287680 131 | 1223685 132 | 1083161 133 | 2048893 134 | 1464442 135 | 1958741 136 | 2348372 137 | 2971969 138 | 2969155 139 | 2969159 140 | 1013378 141 | 2280169 142 | 1484542 143 | 1916270 144 | 1958714 145 | 1493208 146 | 1813846 147 | 1013223 148 | 1944368 149 | 1102528 150 | 1021346 151 | 1425600 152 | 1792332 153 | 1085935 154 | 1908206 155 | 1007459 156 | 1949390 157 | 1862145 158 | 1440885 159 | 1919072 160 | 1473250 161 | 1220853 162 | 1812833 163 | 1106846 164 | 1210085 165 | 1240964 166 | 1429555 167 | 1231722 168 | 1230206 169 | 1229905 170 | 1239654 171 | 1230038 172 | 1246978 173 | 1093792 174 | 1439706 175 | 1231231 176 | 1416743 177 | 1119873 178 | 1320878 179 | 1214074 180 | 1106301 181 | 1229924 182 | 1109063 183 | 1052241 184 | 1229901 185 | -------------------------------------------------------------------------------- /sample_data/reader.zrbcool.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/reader.zrking.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 6052860 3 | 5313010 4 | 6723066 5 | 6077688 6 | 4238931 7 | 3056154 8 | 4741216 9 | 1068884 10 | 3056155 11 | 4953695 12 | 4832106 13 | 1438741 14 | 1061599 15 | 4839748 16 | 3685882 17 | 4938831 18 | 1869144 19 | 1060068 20 | 1922216 21 | 2250587 22 | 1082725 23 | 1269900 24 | 3609132 25 | 1361264 26 | 1050339 27 | 3813669 28 | 2053249 29 | 1313124 30 | 1048007 31 | 3284230 32 | 3815992 33 | 1400705 34 | 1026425 35 | 1049219 36 | 1059406 37 | 2062200 38 | 3394338 39 | 1061118 40 | 1016300 41 | 4264003 42 | 4113090 43 | 1017180 44 | 1057244 45 | 1041616 46 | 1021615 47 | 1082154 48 | 1014578 49 | 1202373 50 | 1021056 51 | 1039826 52 | 4124727 53 | 3622904 54 | 1442040 55 | 4086725 56 | 1078554 57 | 1071023 58 | 3644095 59 | 1013208 60 | 1036274 61 | 1511165 62 | 1084471 63 | 1083125 64 | 1474641 65 | 4010969 66 | 4010196 67 | 3055719 68 | -------------------------------------------------------------------------------- /sample_data/reader.zrs7_24.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3234345 3 | 5410582 4 | 3390446 5 | 5951504 6 | 1062193 7 | 1966496 8 | 4187225 9 | 2259198 10 | 5375620 11 | 6732077 12 | 6727724 13 | 3699395 14 | 3235517 15 | 4848424 16 | 4913068 17 | 1292405 18 | 4006425 19 | 2074051 20 | 3142280 21 | 1085570 22 | 5958726 23 | 1834728 24 | 4953695 25 | 2052176 26 | 6709783 27 | 3266968 28 | 1776683 29 | 1767945 30 | 4773224 31 | 1424741 32 | 1013502 33 | 1102259 34 | 3228993 35 | 1011960 36 | 3732346 37 | 2250289 38 | 3989541 39 | 3101896 40 | 1400059 41 | 1039752 42 | 1427288 43 | 1007433 44 | 3369608 45 | 4112874 46 | 4179341 47 | 1084336 48 | 1046265 49 | 2056749 50 | 1400705 51 | 5275059 52 | 1050339 53 | 4165852 54 | 1214891 55 | 1089543 56 | 4820029 57 | 2000719 58 | 1487995 59 | 1876746 60 | 1048007 61 | 3609132 62 | 1775691 63 | 4010196 64 | 1873231 65 | 1473323 66 | 5320866 67 | 2081876 68 | 1159949 69 | 3162179 70 | 6021440 71 | 3223711 72 | 1291075 73 | 1316512 74 | 3134517 75 | 1005576 76 | 1193621 77 | 4255391 78 | 4264059 79 | 3735295 80 | 3215423 81 | 3685204 82 | 3932520 83 | -------------------------------------------------------------------------------- /sample_data/reader.zshn-222.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1057244 3 | 1082518 4 | 1082154 5 | 1200840 6 | 4932095 7 | 1065931 8 | 5325859 9 | 5290239 10 | 1021056 11 | 3123393 12 | 4249313 13 | 1427679 14 | 1083403 15 | 4010196 16 | 1048007 17 | 4953695 18 | 1775691 19 | 4817396 20 | 5264779 21 | 5366278 22 | 5397044 23 | 3905366 24 | 6121542 25 | 4618225 26 | 2250289 27 | 6872019 28 | 10344037 29 | 5276791 30 | -------------------------------------------------------------------------------- /sample_data/reader.zshtang.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 4736118 3 | 1246162 4 | 1730823 5 | 1231590 6 | 1091086 7 | 1110934 8 | 5406042 9 | 6021440 10 | 4861766 11 | 1689549 12 | 1238072 13 | 2046630 14 | 6052180 15 | 5275059 16 | 1059336 17 | 5299764 18 | 2064450 19 | 4006941 20 | 2044818 21 | 1052241 22 | 1767741 23 | 4178907 24 | 3266122 25 | 5975576 26 | 1180667 27 | 1003284 28 | 1141406 29 | 1200840 30 | 1914078 31 | 2158194 32 | 1017143 33 | 6709783 34 | 1046265 35 | 2343878 36 | 4860552 37 | 1323573 38 | 1213945 39 | 2567730 40 | 2150587 41 | 2322743 42 | 1542075 43 | 1752349 44 | 1228110 45 | 1057206 46 | 1040771 47 | 5318518 48 | 5328052 49 | 5318519 50 | 3426590 51 | 2348801 52 | 1430445 53 | 3076223 54 | 1926123 55 | 3287915 56 | 1980436 57 | 1231789 58 | 3057671 59 | 3093430 60 | 2128514 61 | 1441780 62 | 2076053 63 | 1442620 64 | 2348802 65 | 3263946 66 | 1737624 67 | 1474667 68 | 1493316 69 | 4803982 70 | 3926696 71 | 1839160 72 | 2146824 73 | 4820710 74 | 3254015 75 | 1505323 76 | 4918103 77 | 4279839 78 | 1092335 79 | 4876728 80 | 1503810 81 | 4831351 82 | 1049071 83 | 1958147 84 | 1887310 85 | 1450992 86 | 4818685 87 | 1434831 88 | 1243758 89 | 5379353 90 | 1096216 91 | 4242172 92 | 2105720 93 | 5276434 94 | 3076942 95 | 1457891 96 | 1453373 97 | 1110941 98 | 3004255 99 | 6548683 100 | 2124031 101 | 1238685 102 | 2991429 103 | -------------------------------------------------------------------------------- /sample_data/reader.zshu.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1229923 3 | 3886044 4 | 3360807 5 | 3119954 6 | -------------------------------------------------------------------------------- /sample_data/reader.zsk526.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3670867 3 | 1827702 4 | 2345964 5 | 6266233 6 | 3266968 7 | 4886879 8 | 1770782 9 | 5288327 10 | 1200846 11 | 4243135 12 | 4886245 13 | 5974483 14 | 6025285 15 | 5399528 16 | 1793749 17 | 2303999 18 | 1472607 19 | 1764900 20 | 3061060 21 | 3870645 22 | 2061604 23 | 2382147 24 | 2082179 25 | 3590768 26 | 2228378 27 | 3245901 28 | 4027725 29 | 3121016 30 | 3158926 31 | 2193687 32 | 1775180 33 | 2159023 34 | 1737592 35 | 1937913 36 | 3924175 37 | 3821157 38 | 4749115 39 | 1786670 40 | 1021056 41 | 3042031 42 | 2208550 43 | 2308234 44 | 1898098 45 | 2052176 46 | 3006856 47 | 2208575 48 | 3007076 49 | 1921890 50 | 2004750 51 | 1036067 52 | 1008145 53 | 1035862 54 | 1082154 55 | 3803820 56 | 4237548 57 | 5275059 58 | 3012828 59 | 1460112 60 | 4719162 61 | 1936755 62 | 1583135 63 | 1232061 64 | 3022779 65 | -------------------------------------------------------------------------------- /sample_data/reader.zsmickycat.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/reader.ztzt.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3691437 3 | 1075791 4 | 1883353 5 | 1203240 6 | 1013380 7 | 1212893 8 | 1082147 9 | 1039752 10 | 1125186 11 | 1972412 12 | 2567247 13 | 1052828 14 | 1064828 15 | 3518332 16 | 3183812 17 | 1006961 18 | 4117999 19 | 3392046 20 | 1022210 21 | 1083434 22 | 1072438 23 | 1401425 24 | 1418180 25 | 1014278 26 | 3017857 27 | 1001136 28 | 1291809 29 | 1794844 30 | 1776683 31 | 1004992 32 | 1044663 33 | 1433640 34 | 1426971 35 | 1853785 36 | 1119839 37 | 1040771 38 | 3071717 39 | 4742918 40 | 1045818 41 | 2070844 42 | 1029791 43 | 1767945 44 | 1986590 45 | 1474688 46 | 1090043 47 | 1002898 48 | 1401841 49 | 1029111 50 | 1017143 51 | 1054685 52 | 6082808 53 | 1060068 54 | 1958073 55 | 1082154 56 | 5348638 57 | 3427515 58 | 1874488 59 | 3689478 60 | 2299194 61 | 3260200 62 | 2324366 63 | 1012723 64 | -------------------------------------------------------------------------------- /sample_data/reader.zukhz.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 2154713 3 | 4251875 4 | 1052241 5 | 1340507 6 | 3169342 7 | 3329540 8 | 3817202 9 | 1788421 10 | 6709783 11 | 6021440 12 | 3323633 13 | 1232186 14 | 2175995 15 | 4820694 16 | 1418180 17 | 3537590 18 | 1770782 19 | 3549421 20 | -------------------------------------------------------------------------------- /sample_data/reader.zuma.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5363767 3 | 5372651 4 | 4031959 5 | 3066477 6 | 2284311 7 | 2567698 8 | 1192090 9 | 3558788 10 | 3699395 11 | 1954438 12 | 1230206 13 | 4163938 14 | 4909629 15 | 2148132 16 | 4058336 17 | 1051703 18 | 1473371 19 | 1939182 20 | 1162443 21 | 3607228 22 | 1313124 23 | 1049136 24 | 1229901 25 | 3210843 26 | 1416743 27 | 1152111 28 | 1426848 29 | 1986291 30 | 2032343 31 | 1434038 32 | 1096713 33 | 1157926 34 | 1057206 35 | 1416957 36 | 1388169 37 | 1440589 38 | 1581547 39 | 1481362 40 | 1271510 41 | 1798557 42 | 1416964 43 | 1467535 44 | 1392604 45 | 1389960 46 | 1221515 47 | 1474688 48 | 1421921 49 | 1040771 50 | 1231972 51 | 1108725 52 | 1052241 53 | 1102259 54 | 1854431 55 | 1436131 56 | 1229923 57 | 1839273 58 | 1474667 59 | 1464203 60 | 1336330 61 | -------------------------------------------------------------------------------- /sample_data/reader.zuohaocheng.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 4208780 3 | 4145560 4 | 3432304 5 | 3000997 6 | 1473250 7 | 3774646 8 | 1080225 9 | 1464588 10 | 1226755 11 | 2379314 12 | 2263077 13 | 3808982 14 | 3002863 15 | 4066787 16 | 4101013 17 | 2342161 18 | 4071842 19 | 4066786 20 | 6719724 21 | 1230004 22 | 4926595 23 | 1703544 24 | 1401425 25 | 5350303 26 | 5988185 27 | 3042495 28 | 1082387 29 | 1438461 30 | 1813841 31 | 2158189 32 | 3225979 33 | 3239549 34 | 5366248 35 | 1868162 36 | 1455137 37 | 1455138 38 | 5985153 39 | 1071794 40 | 1058759 41 | 1040104 42 | 1072334 43 | 1373608 44 | 1063401 45 | 2022979 46 | 3152052 47 | 1056868 48 | 4904724 49 | 1070711 50 | 4767027 51 | 4263247 52 | 4725272 53 | 6709783 54 | 5914514 55 | 4606471 56 | 3890174 57 | 1148282 58 | 4089837 59 | 5380976 60 | 1011092 61 | 5988271 62 | 3821157 63 | 3117464 64 | 6021440 65 | 6404782 66 | 3684290 67 | 4282979 68 | 4742918 69 | 6068947 70 | 3682204 71 | 1833822 72 | 5323430 73 | 5362856 74 | 5303032 75 | 5325456 76 | 5321843 77 | 1072767 78 | 3666600 79 | 3134515 80 | 2328458 81 | 3351348 82 | 3661214 83 | 2308234 84 | 4223586 85 | 3590768 86 | 2111801 87 | 2382413 88 | 1467587 89 | 3731623 90 | 3793761 91 | 1957429 92 | 2346304 93 | 1193621 94 | 1767741 95 | 1236999 96 | 2012451 97 | 4213190 98 | 2142664 99 | 3288908 100 | 1236944 101 | 4115916 102 | 2271340 103 | 3329887 104 | 3029411 105 | -------------------------------------------------------------------------------- /sample_data/reader.zuohy.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/reader.zuojg.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/reader.zuowj.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5254242 3 | 6312980 4 | 6438010 5 | 4118212 6 | 4051739 7 | 5914587 8 | 1229986 9 | 5320866 10 | 3889178 11 | 2348372 12 | 1210406 13 | 2133254 14 | 1076685 15 | 3274113 16 | 2052448 17 | 1424420 18 | 2375610 19 | 1858410 20 | 1421029 21 | 1481148 22 | 2299164 23 | 1059769 24 | 2042907 25 | 2253642 26 | 1119904 27 | 1020644 28 | 1786387 29 | 3009821 30 | 1069724 31 | 1049348 32 | 1025723 33 | 2380307 34 | 1236778 35 | 2136614 36 | 1000280 37 | 1096216 38 | 2281055 39 | 1106304 40 | 1424955 41 | 1099376 42 | 1007738 43 | 1152111 44 | 1477390 45 | 1230559 46 | 1140457 47 | 1110941 48 | 1241385 49 | 1102180 50 | 1099889 51 | 1108725 52 | 1102259 53 | 1052241 54 | 1091086 55 | 1008145 56 | 1035862 57 | 1200840 58 | 1291355 59 | 1006560 60 | 1041482 61 | 1045862 62 | 1048007 63 | 2143747 64 | 1313124 65 | 1919072 66 | 1322025 67 | 1100470 68 | 1963140 69 | 2076314 70 | 1396778 71 | -------------------------------------------------------------------------------- /sample_data/reader.zwchen.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 6085181 3 | 6759059 4 | 4089752 5 | 1982184 6 | 5326985 7 | 5291323 8 | 5325849 9 | 5921664 10 | 6729761 11 | 4902492 12 | 4932288 13 | 1430349 14 | 4039936 15 | 3739523 16 | 4901726 17 | 6725588 18 | 6798611 19 | 2249558 20 | 5033915 21 | 2976201 22 | 3816827 23 | 5421787 24 | 3837306 25 | 5352814 26 | 5356341 27 | 1223845 28 | 3891572 29 | 4953695 30 | 2256351 31 | 3030115 32 | 3688489 33 | 4178326 34 | 1220597 35 | 2039176 36 | 3879806 37 | 3717178 38 | 5348144 39 | 5431185 40 | 5379664 41 | 1865089 42 | 1193621 43 | 1442231 44 | 4905326 45 | 4905329 46 | 4875706 47 | 5302113 48 | 3223586 49 | 2180700 50 | 5401989 51 | 4199761 52 | 2328458 53 | 1556409 54 | 2143904 55 | 3694923 56 | 3148591 57 | 1440885 58 | 1000900 59 | 2271222 60 | 4726323 61 | 4934629 62 | 4189515 63 | 6558345 64 | 5362909 65 | 5311617 66 | 4882120 67 | 4178327 68 | 3344676 69 | 2005474 70 | 1083600 71 | 4929844 72 | 5253757 73 | 6851648 74 | 6811698 75 | 5408880 76 | 4606471 77 | 6042758 78 | 6969827 79 | 7007666 80 | 5394309 81 | 5348641 82 | 3683054 83 | 5914475 84 | 6025258 85 | 4846035 86 | 5394127 87 | 3669408 88 | 1315187 89 | 3658090 90 | 1870268 91 | 3665205 92 | 2003405 93 | 1975238 94 | 3714967 95 | 1503858 96 | 1251881 97 | 4076216 98 | 3776720 99 | 3670867 100 | 3313897 101 | 3279105 102 | 2108297 103 | 1440557 104 | 4174882 105 | 2976760 106 | 3869711 107 | 1144804 108 | 3039668 109 | 3107126 110 | 2230040 111 | 1076490 112 | 4736118 113 | 4886883 114 | 4827256 115 | 4742647 116 | 3466105 117 | 3813178 118 | 4932766 119 | 4899338 120 | 4202039 121 | 4911331 122 | 4196798 123 | 4705968 124 | 1017180 125 | 4312810 126 | 4081908 127 | 1837431 128 | 4264864 129 | 1200718 130 | 4912713 131 | 4860535 132 | 4169625 133 | 1052642 134 | 1775691 135 | 4850064 136 | 3656946 137 | 5356192 138 | 3810835 139 | 3724665 140 | 4051739 141 | 3598650 142 | 4191830 143 | 1085629 144 | 1059490 145 | 3180906 146 | 4886245 147 | 4168140 148 | 3994705 149 | 2057059 150 | 1792387 151 | 1483618 152 | 1441161 153 | 1277867 154 | 3284288 155 | 1277868 156 | 1410489 157 | 1931769 158 | 1783724 159 | 1038292 160 | 3275075 161 | 1039634 162 | 2078347 163 | 1764721 164 | 1145213 165 | 3408112 166 | 1137278 167 | 1171881 168 | 2140945 169 | 1786387 170 | 1925109 171 | 1941558 172 | 1313472 173 | 2250084 174 | 1314262 175 | 2265341 176 | 1221224 177 | 2128631 178 | 2702449 179 | 1322025 180 | 2297549 181 | 3031797 182 | 1979199 183 | 1897680 184 | 1490696 185 | 1430503 186 | 2310726 187 | 2152606 188 | 3064242 189 | 2172265 190 | 1314816 191 | 2970295 192 | 2075113 193 | 3042008 194 | 2075114 195 | 1827702 196 | 4178328 197 | 4741216 198 | 3574119 199 | 3776679 200 | 3315483 201 | 3142118 202 | 4242094 203 | 4035874 204 | 3216007 205 | 4200267 206 | 1911149 207 | 1264754 208 | 1391564 209 | 1135743 210 | 3691378 211 | 3554432 212 | 3741308 213 | 2098894 214 | 3000997 215 | 3319935 216 | 1786651 217 | 1424955 218 | 1146355 219 | 2148395 220 | 2368360 221 | 1843548 222 | 2058435 223 | 3055719 224 | 2380307 225 | 1907517 226 | 1013208 227 | 1159306 228 | 1146368 229 | 1012016 230 | 2113347 231 | 1077701 232 | 2327540 233 | 1791916 234 | 2249301 235 | 2256757 236 | 2348372 237 | 2282310 238 | 2116259 239 | 3038186 240 | 1919072 241 | 2154571 242 | 2109513 243 | 3000660 244 | 3024124 245 | 1280905 246 | 2125973 247 | 1874488 248 | 1476651 249 | 1032501 250 | 1048007 251 | 1243809 252 | 1119852 253 | 1140457 254 | 1229923 255 | 2189906 256 | 1790456 257 | 1077497 258 | 1318427 259 | 1021056 260 | 1033778 261 | 1088054 262 | 1140259 263 | 1219912 264 | 1214074 265 | 1830509 266 | 1114971 267 | 1231740 268 | 1315050 269 | 1754542 270 | 1101158 271 | 1231231 272 | 1315047 273 | 1052241 274 | 1138768 275 | 1289151 276 | 1436131 277 | 1426848 278 | 1103015 279 | 1754490 280 | 1127939 281 | 1232017 282 | 1230559 283 | 1178142 284 | 1108725 285 | 1102259 286 | 1135754 287 | 1141154 288 | -------------------------------------------------------------------------------- /sample_data/reader.zwp199126.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5999111 3 | 4860526 4 | 2064450 5 | 5990497 6 | 1827578 7 | 6878212 8 | 4935377 9 | 3044962 10 | 1062991 11 | 3869711 12 | 1004488 13 | 1410555 14 | -------------------------------------------------------------------------------- /sample_data/reader.zxiaoxiao.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1082387 3 | 7063932 4 | 1020741 5 | 6844341 6 | 1867642 7 | 1004325 8 | 2174017 9 | 1053759 10 | 1777823 11 | 1075743 12 | 1016204 13 | 1064275 14 | 5921822 15 | 3527819 16 | 2377002 17 | 4282979 18 | 4742918 19 | 1008323 20 | 4199685 21 | 2256438 22 | 3058259 23 | 1151876 24 | 6065757 25 | 1143694 26 | 3642673 27 | 3344676 28 | 5957787 29 | 3614177 30 | 4065648 31 | 2222866 32 | 1436586 33 | 3089661 34 | 5905348 35 | 1411182 36 | 3138140 37 | 4886245 38 | 3266968 39 | 3598258 40 | 1021273 41 | 4811034 42 | 1316610 43 | 1119839 44 | 2155060 45 | 1291211 46 | 1794844 47 | 1451653 48 | 1072126 49 | 1026035 50 | 1486619 51 | 1030200 52 | 1059503 53 | 1033190 54 | 1965977 55 | 2120339 56 | 2117872 57 | 1310164 58 | 1349683 59 | 1914127 60 | 3673616 61 | 3597938 62 | 1051797 63 | 1433640 64 | 1448645 65 | 1433568 66 | 1345430 67 | 1778422 68 | 2342074 69 | 3179843 70 | 1766526 71 | 2979054 72 | 3608170 73 | 1851385 74 | 1016193 75 | 3010130 76 | 1223845 77 | 1823298 78 | 2154693 79 | 1798140 80 | 1157014 81 | 1464989 82 | 1007433 83 | 1203244 84 | 1205054 85 | 1024197 86 | 1024217 87 | 1082518 88 | 1031459 89 | 1400703 90 | 1028446 91 | 1006073 92 | 1062326 93 | 1012203 94 | 1436348 95 | 1023500 96 | 1016300 97 | 1223575 98 | 1069848 99 | 1013502 100 | 1047138 101 | 1003079 102 | 1048610 103 | 1017143 104 | 1040771 105 | 1085860 106 | 1758872 107 | 1427256 108 | 1082334 109 | 1049361 110 | 1401425 111 | 1529893 112 | 1703544 113 | -------------------------------------------------------------------------------- /sample_data/reader.zxkt2739.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5029372 3 | 3813669 4 | 1417775 5 | 3888123 6 | 1433381 7 | 1986590 8 | 3622904 9 | 3833428 10 | 5350303 11 | 5921213 12 | 3891900 13 | 1313268 14 | 3808982 15 | 1858410 16 | 1867642 17 | 3691437 18 | 2128625 19 | 3223711 20 | 3558629 21 | 2345548 22 | 5344908 23 | 2033803 24 | 1025723 25 | 1729074 26 | 1101267 27 | 3837299 28 | 1101268 29 | 2380307 30 | 3910220 31 | 5264779 32 | 2033081 33 | 1970428 34 | 1874488 35 | 3104580 36 | 1028372 37 | 1803504 38 | 1054685 39 | 3315714 40 | 2136484 41 | 1007625 42 | 1181690 43 | 2363651 44 | 1460449 45 | 3071717 46 | 3392046 47 | 4933087 48 | 1770782 49 | 5502995 50 | 2053249 51 | 3168460 52 | 4872671 53 | 1013208 54 | 3354703 55 | 1786387 56 | 1039752 57 | 4846035 58 | 4734217 59 | 1017143 60 | 1775691 61 | 3609132 62 | 4885241 63 | 4742918 64 | 3193106 65 | 1022936 66 | -------------------------------------------------------------------------------- /sample_data/reader.zxloong.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3003166 3 | 3003161 4 | 3003176 5 | 1045818 6 | 1084336 7 | -------------------------------------------------------------------------------- /sample_data/reader.zxpan.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5387402 3 | 6068947 4 | 6522893 5 | 2334288 6 | 4010196 7 | 4848587 8 | 3246499 9 | 2130190 10 | 6021440 11 | 6516576 12 | 1011509 13 | 1438128 14 | 3354490 15 | -------------------------------------------------------------------------------- /sample_data/reader.zxustc.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 2130190 3 | 6709783 4 | 1023045 5 | 1089885 6 | 4267149 7 | 1503819 8 | 4924297 9 | 1767741 10 | 2253513 11 | 6545083 12 | 3883025 13 | 1152912 14 | 1319819 15 | 2038599 16 | 1775691 17 | 5246800 18 | 3674537 19 | -------------------------------------------------------------------------------- /sample_data/reader.zxwind.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3132277 3 | 3889178 4 | 1006884 5 | 3018322 6 | 3071402 7 | 6512188 8 | 4872671 9 | 6082808 10 | 5921793 11 | 1291204 12 | 2035171 13 | 5414391 14 | 5404584 15 | 3266345 16 | 6021440 17 | 2080914 18 | 5958726 19 | 4180711 20 | 3191797 21 | 2070068 22 | 2054916 23 | 2042338 24 | 1967817 25 | 1917417 26 | 1863010 27 | 1812215 28 | 5363767 29 | 3066477 30 | 3173112 31 | 2567698 32 | 4282084 33 | 1775691 34 | 2336183 35 | 1858513 36 | 2295163 37 | 1432596 38 | 1013129 39 | 1009257 40 | 1071241 41 | 1039487 42 | 5286569 43 | 1041007 44 | 4901554 45 | 1083321 46 | 3211779 47 | 3259440 48 | 1104694 49 | 3662230 50 | 1408254 51 | 1394364 52 | 5275059 53 | 2035162 54 | 3871911 55 | 1440658 56 | 1007334 57 | 1105420 58 | 3699395 59 | 4618225 60 | 3813669 61 | 1026425 62 | 1754836 63 | 2066292 64 | 3420384 65 | 1461903 66 | 2217788 67 | 1082387 68 | 1777932 69 | 1125186 70 | 1417905 71 | 2567919 72 | 3618598 73 | 2193877 74 | 2194123 75 | 1017180 76 | 3287786 77 | 2253751 78 | 2253754 79 | 1069848 80 | 1981042 81 | -------------------------------------------------------------------------------- /sample_data/reader.zxygentoo.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5967861 3 | 5363767 4 | 3380388 5 | 3340424 6 | 3560553 7 | 1440658 8 | 2154713 9 | 2334288 10 | 2111801 11 | 1488876 12 | 2792157 13 | 1044203 14 | 3306209 15 | 3426808 16 | 1056801 17 | 1786387 18 | 1393388 19 | 3288908 20 | 2135723 21 | 2376230 22 | 3248523 23 | 1074525 24 | 3070628 25 | 1938591 26 | 1882933 27 | 1916726 28 | 1227901 29 | 3018347 30 | 1061684 31 | 3057556 32 | 1137278 33 | 2791877 34 | 3094759 35 | 1008189 36 | 1089398 37 | 2081876 38 | 3066477 39 | 2567698 40 | 2259198 41 | 1271212 42 | 3056620 43 | 1074142 44 | 1084435 45 | 3025921 46 | 2375990 47 | 2301436 48 | 1216637 49 | 1220675 50 | 1258490 51 | 1024449 52 | 1827702 53 | 2298856 54 | 1858513 55 | 1135754 56 | 2295324 57 | 1328546 58 | 2133254 59 | 1041482 60 | 1138919 61 | 1231584 62 | 1082578 63 | 1418180 64 | 1132956 65 | 1082577 66 | 1867064 67 | 2057291 68 | 1310155 69 | 1082406 70 | 2133967 71 | 1440300 72 | 1481311 73 | 1140727 74 | 1230004 75 | 1018136 76 | 1162443 77 | 1045466 78 | 1082387 79 | 1230437 80 | 1082407 81 | 2035179 82 | 1776683 83 | 1140726 84 | 1096790 85 | 1418686 86 | 1084336 87 | 1044663 88 | 1858576 89 | 1863930 90 | 1473250 91 | 1408254 92 | 1061118 93 | 1024217 94 | 1054685 95 | 1085883 96 | 1082150 97 | 2060238 98 | 1033778 99 | 1014578 100 | 1089243 101 | 1029791 102 | 1132623 103 | 1082154 104 | 1059419 105 | 1040771 106 | 1046265 107 | 1220853 108 | 1059769 109 | 1919072 110 | 1011509 111 | 1439982 112 | 1023658 113 | 1313124 114 | 1448761 115 | -------------------------------------------------------------------------------- /sample_data/reader.zy_best.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1219329 3 | 1807316 4 | 6249670 5 | 1608298 6 | 1230413 7 | 1788421 8 | 3920130 9 | 4889838 10 | 3211779 11 | 3259440 12 | 5984835 13 | 5416915 14 | 2567698 15 | -------------------------------------------------------------------------------- /sample_data/reader.zydudu.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1140457 3 | 2052176 4 | 1958938 5 | 4924166 6 | 5373915 7 | 1501873 8 | 1242858 9 | 5415955 10 | 4090200 11 | 6781677 12 | 3333726 13 | 3246499 14 | 6729036 15 | 4725272 16 | 3835959 17 | 1448445 18 | 2236634 19 | 3549963 20 | 3137115 21 | 2146675 22 | 1188379 23 | 3812586 24 | 3215828 25 | 4828875 26 | 1884153 27 | 3723474 28 | 2137490 29 | 3948354 30 | 1418172 31 | 2152386 32 | 4212921 33 | 3740086 34 | 2160556 35 | 1231189 36 | 1116520 37 | 1231393 38 | 1679623 39 | 3987331 40 | 2208530 41 | 2024655 42 | -------------------------------------------------------------------------------- /sample_data/reader.zyeming.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 6862062 3 | 5372651 4 | 6709783 5 | 1230413 6 | 3688489 7 | 5914587 8 | 6021440 9 | 1071227 10 | 3567853 11 | 3004255 12 | 2042063 13 | 3735295 14 | 4742918 15 | 3813669 16 | 5363767 17 | 3738020 18 | 3066477 19 | 2567698 20 | 2188111 21 | 1014825 22 | 1056315 23 | 1027191 24 | 3924175 25 | 3039216 26 | 1772258 27 | 1417047 28 | 3729677 29 | 1786387 30 | 3007076 31 | 3346905 32 | 1230206 33 | 3259440 34 | 3376690 35 | 2696119 36 | 1449347 37 | 1957428 38 | 1962239 39 | 1229923 40 | 3347997 41 | 1827578 42 | 3274113 43 | 1506689 44 | 1229959 45 | 3009821 46 | 2052448 47 | 2253642 48 | 1949338 49 | 1316569 50 | 2375610 51 | 2133254 52 | 1882933 53 | 2791877 54 | 1005576 55 | 1874488 56 | 1045850 57 | 1842426 58 | 1467022 59 | 1151462 60 | 1426838 61 | 1440658 62 | 1419735 63 | 2240748 64 | 1788421 65 | 1467587 66 | 2256039 67 | 1082725 68 | 2380307 69 | 1021056 70 | 1427825 71 | 1433492 72 | 1970428 73 | 2000232 74 | 1052241 75 | 1851385 76 | 1477390 77 | 1824542 78 | 1102259 79 | 1049136 80 | 1037602 81 | 1025723 82 | 1051363 83 | 2081876 84 | 1225983 85 | 1440149 86 | 2064450 87 | 1220853 88 | 1921329 89 | 1438445 90 | 1106301 91 | 1941558 92 | 1140457 93 | 1858458 94 | 1048007 95 | 1873231 96 | 1056461 97 | 1867642 98 | 1007433 99 | 1068920 100 | 1141406 101 | 1040771 102 | 1786670 103 | 1028372 104 | 1767188 105 | 1400705 106 | 1017143 107 | 1013469 108 | 1997609 109 | 1046265 110 | 1918123 111 | 1084435 112 | 1754748 113 | 1084336 114 | 1418345 115 | 1205367 116 | -------------------------------------------------------------------------------- /sample_data/reader.zyh26258.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1882483 3 | 3354490 4 | 4149253 5 | 1472137 6 | 3086810 7 | 3948354 8 | 1874839 9 | 1440658 10 | 1467587 11 | -------------------------------------------------------------------------------- /sample_data/reader.zyhmat.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 4882550 3 | 4911933 4 | 3012360 5 | 1269900 6 | 1132623 7 | 1188524 8 | 2226799 9 | 1774940 10 | 2023181 11 | 1257113 12 | 2345548 13 | 3138847 14 | 3766438 15 | 1867455 16 | 3717178 17 | 3776720 18 | 4002701 19 | 3222194 20 | 1110429 21 | 1318883 22 | 1110447 23 | 3518179 24 | 1505733 25 | 2183783 26 | -------------------------------------------------------------------------------- /sample_data/reader.zyn321.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 2081876 3 | 3035191 4 | 3397104 5 | 4320723 6 | 3851892 7 | 3253845 8 | 2243615 9 | 4033320 10 | 1951158 11 | 4086029 12 | 4848587 13 | 1160102 14 | 3267945 15 | -------------------------------------------------------------------------------- /sample_data/reader.zypub.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3360807 3 | 6731723 4 | 1827702 5 | 1770782 6 | 6082808 7 | 5275059 8 | 1141406 9 | 2148524 10 | 1056733 11 | 1358873 12 | 1031575 13 | 1066462 14 | 1031371 15 | -------------------------------------------------------------------------------- /sample_data/reader.zyqwendy.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 6833961 3 | 3727329 4 | 1049070 5 | 4149893 6 | 3786755 7 | 1944529 8 | 6430022 9 | 3446452 10 | 3257857 11 | 1485495 12 | 4238754 13 | 3218229 14 | 5366275 15 | 1958227 16 | 5294029 17 | 1102071 18 | 1783349 19 | 1460405 20 | 3665874 21 | 4861882 22 | 4729583 23 | 3537590 24 | 3858220 25 | 3266968 26 | 6510070 27 | 3723866 28 | 3315827 29 | 3124525 30 | 2973589 31 | 2339950 32 | 1963310 33 | 1083883 34 | 1227838 35 | 5350303 36 | 3995526 37 | 5414391 38 | 5293030 39 | 4242172 40 | 3894895 41 | 1981355 42 | 2016749 43 | 4010196 44 | 1000523 45 | 3759808 46 | 4883568 47 | 1770954 48 | 1792668 49 | 1775691 50 | 1017143 51 | 5414385 52 | 1049688 53 | 1170801 54 | 1915536 55 | 3108829 56 | 1770782 57 | 1039544 58 | 5292912 59 | 1461903 60 | 1023045 61 | 1856285 62 | 3403514 63 | 1782032 64 | 4231696 65 | 2243213 66 | 3340092 67 | -------------------------------------------------------------------------------- /sample_data/reader.zyyang.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 2826279 3 | 2028128 4 | 1007305 5 | 3710726 6 | 4589142 7 | 1875765 8 | 1452125 9 | 3279105 10 | 1043201 11 | 1230559 12 | 3093012 13 | 1083464 14 | 1455616 15 | 1886349 16 | 1881747 17 | 1476651 18 | 1868081 19 | 1261560 20 | 2020442 21 | 1440921 22 | 1998410 23 | 1495763 24 | 1486020 25 | 1229959 26 | 1229901 27 | 2567698 28 | 3066477 29 | 1192090 30 | 1119852 31 | 1289151 32 | 1237885 33 | 1106301 34 | 1161027 35 | 1467022 36 | 1436131 37 | 2030664 38 | 2172286 39 | 1468916 40 | 1083465 41 | 1426848 42 | 2146224 43 | 1262200 44 | 1106304 45 | 1454393 46 | 1102259 47 | 1771458 48 | 1108725 49 | 2297549 50 | 1424955 51 | 1457028 52 | 1313124 53 | 1318427 54 | 1005455 55 | 1012611 56 | 1229923 57 | 1052241 58 | 1237583 59 | 1433346 60 | 1159949 61 | 1322025 62 | 1230451 63 | 1059769 64 | 1087502 65 | 2298856 66 | 1313472 67 | 2365393 68 | 1473323 69 | 1919072 70 | 1427825 71 | 1288844 72 | 1237890 73 | 1493316 74 | 1101926 75 | 1859537 76 | 1878625 77 | 1845594 78 | 1244410 79 | 1737592 80 | 1861298 81 | 2157554 82 | 1162546 83 | 1138771 84 | 1392475 85 | 1229999 86 | 1229926 87 | 1268619 88 | 1314262 89 | 2152772 90 | 1827702 91 | 1506751 92 | 1185932 93 | -------------------------------------------------------------------------------- /sample_data/reader.zyybiz.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/reader.zz14.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 6388661 3 | 5288388 4 | 6753739 5 | 1056079 6 | 3861058 7 | 1620611 8 | 5916342 9 | 4214974 10 | 2091772 11 | 6845414 12 | 6531340 13 | 5293823 14 | 6434488 15 | 1420423 16 | 1001896 17 | 1014385 18 | 1410157 19 | 1006720 20 | 1417469 21 | 1039389 22 | 2150989 23 | 3290010 24 | 1013980 25 | 3413784 26 | 1914078 27 | 1028409 28 | 1578081 29 | 6710720 30 | 2174014 31 | 1028404 32 | 1002513 33 | 2244156 34 | 4094125 35 | 4834386 36 | 2280021 37 | 1926841 38 | 5986107 39 | 2377014 40 | 3010128 41 | 3008983 42 | 2021132 43 | 4870713 44 | 3607117 45 | 3668168 46 | 4733884 47 | 4160472 48 | 4703921 49 | 1316648 50 | 1082349 51 | 1016003 52 | 1078750 53 | 1098161 54 | 1082215 55 | 1089885 56 | 1030469 57 | 3822070 58 | 3826996 59 | 2178279 60 | 2044620 61 | 1029951 62 | 1086317 63 | 1059406 64 | 1052622 65 | 1079591 66 | 1099298 67 | 1007305 68 | 5317129 69 | 5502995 70 | 4139056 71 | 2274868 72 | 2157003 73 | 4098263 74 | 1157787 75 | 2156303 76 | 3216014 77 | 4887519 78 | 4313207 79 | 1536538 80 | 1139980 81 | 1468602 82 | 3689094 83 | 1048441 84 | 1465324 85 | 3369600 86 | 1017143 87 | 3993381 88 | 3995526 89 | 3243762 90 | 1016336 91 | 2150588 92 | 4191721 93 | 1050114 94 | 4886245 95 | 5275059 96 | 3897928 97 | 4885241 98 | 3224818 99 | 4742918 100 | 4173403 101 | 3678694 102 | 2159042 103 | 4230591 104 | 1444217 105 | 3016219 106 | 3253854 107 | 3698390 108 | 2250587 109 | 3689573 110 | 3087020 111 | 4199685 112 | 3698398 113 | 3713237 114 | 3673672 115 | 3604520 116 | 3604517 117 | 3759808 118 | 3735576 119 | 3026449 120 | 1019642 121 | 1484695 122 | 2317973 123 | 1312333 124 | 1105797 125 | 3662820 126 | 3616310 127 | 3369793 128 | 2136140 129 | 3030892 130 | 1080959 131 | 2068249 132 | 1320222 133 | 2150587 134 | 2977174 135 | 1414742 136 | 1173717 137 | 1214898 138 | 1471697 139 | 1471704 140 | 1471691 141 | 1445825 142 | 1941826 143 | 1055401 144 | 2081286 145 | 2008972 146 | 1469051 147 | 1026674 148 | 1056973 149 | 1060939 150 | 1021597 151 | 1030052 152 | 3017135 153 | 1931318 154 | 3087896 155 | 1024131 156 | 2998717 157 | 1038639 158 | 1082820 159 | 1082821 160 | 1083257 161 | 1190868 162 | 1596305 163 | 1855343 164 | 2062430 165 | 1291760 166 | 1069628 167 | 1036067 168 | 1006004 169 | 1914572 170 | 1974297 171 | 1838716 172 | 1870185 173 | 1037589 174 | 1449981 175 | 1049189 176 | 2062200 177 | 1027832 178 | 1529893 179 | 2256438 180 | 1886273 181 | 1915536 182 | 2382705 183 | 2973589 184 | 2295163 185 | 1432596 186 | 1013129 187 | 1009257 188 | 1071241 189 | 1039487 190 | 1041007 191 | 1486656 192 | 2137678 193 | 1470742 194 | 1471706 195 | 1084336 196 | 2068211 197 | 2136133 198 | 2070844 199 | 1985223 200 | 3014576 201 | 2339950 202 | 1948502 203 | 3191328 204 | -------------------------------------------------------------------------------- /sample_data/reader.zz18.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1222142 3 | 3087182 4 | 2238712 5 | 5320866 6 | 4929844 7 | 3889178 8 | 1963022 9 | 1934676 10 | 4019512 11 | 4723970 12 | 2212128 13 | 1144164 14 | 1454295 15 | 3786755 16 | 3582811 17 | 1064275 18 | 1436707 19 | 1460235 20 | 1876042 21 | 2056320 22 | 3248865 23 | 3262397 24 | 2141624 25 | 2970295 26 | 1049105 27 | 1759797 28 | 2312734 29 | 2072159 30 | 1980903 31 | 2376306 32 | 1059769 33 | 3105455 34 | 1427679 35 | 1722020 36 | 1322025 37 | 1426212 38 | 1084680 39 | 1106735 40 | 1061145 41 | 1446247 42 | 2151266 43 | 1741727 44 | 1485613 45 | 1047400 46 | 1867642 47 | 1919072 48 | 1022936 49 | -------------------------------------------------------------------------------- /sample_data/reader.zz78.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5998988 3 | 1084336 4 | 1401841 5 | 1043815 6 | 1855364 7 | 1127841 8 | 1091086 9 | -------------------------------------------------------------------------------- /sample_data/reader.zz8ss5ww6.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1422056 3 | 1467587 4 | 1503812 5 | 1315047 6 | 1754542 7 | -------------------------------------------------------------------------------- /sample_data/reader.zzhangjiej.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3224456 3 | 2212128 4 | 1788421 5 | 3412670 6 | 2345548 7 | 1799984 8 | 3291111 9 | 5320300 10 | 1314449 11 | 4905858 12 | 5317075 13 | 1433377 14 | 1077778 15 | 1255288 16 | 1657791 17 | 4742918 18 | 1229972 19 | 2345727 20 | 1418648 21 | 1742836 22 | 1422121 23 | 1324985 24 | 1016631 25 | 3582610 26 | 1467776 27 | 2143304 28 | 2069604 29 | 3043491 30 | 2034893 31 | 1212893 32 | 1642878 33 | 1010095 34 | 1470622 35 | 1775691 36 | 1255249 37 | 1478505 38 | 1022938 39 | 1759860 40 | 1005576 41 | 1012536 42 | 3323987 43 | 2256039 44 | 1874488 45 | 1462652 46 | 1391772 47 | 1061977 48 | 2147625 49 | 1008145 50 | 3031572 51 | 3233519 52 | 1137325 53 | 3609132 54 | 3133217 55 | 1135754 56 | 3414375 57 | 2055436 58 | 1012561 59 | 1018920 60 | 1513144 61 | 1022060 62 | 1257109 63 | 2359003 64 | 1056295 65 | 1065931 66 | 1427679 67 | 1144906 68 | 1038929 69 | 1795956 70 | 1538212 71 | 1240002 72 | 1029791 73 | 3266968 74 | 1032537 75 | 1393371 76 | 1980222 77 | 1727293 78 | 3580750 79 | 1021056 80 | 1050339 81 | 1032621 82 | 2323320 83 | 1059406 84 | 3394338 85 | 1006560 86 | 1760548 87 | 1084336 88 | 1026425 89 | 1087758 90 | 1016300 91 | 2139305 92 | 1786670 93 | 1181213 94 | 3062632 95 | 1007305 96 | 1884510 97 | 1441901 98 | 1767310 99 | 2133254 100 | 1082327 101 | 1102259 102 | 1962687 103 | 1488426 104 | 1210057 105 | 1095413 106 | 2062316 107 | 1022936 108 | 1777898 109 | 3226037 110 | 1922042 111 | 1922030 112 | 2022075 113 | 1088743 114 | 1123663 115 | 1205367 116 | 1205372 117 | 1203258 118 | 1204179 119 | 2137279 120 | 1873231 121 | 1262986 122 | -------------------------------------------------------------------------------- /sample_data/reader.zzinit.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3225427 3 | 1045862 4 | 2380307 5 | 1970428 6 | 4886245 7 | 4724794 8 | 4249960 9 | 4800768 10 | 4732250 11 | 4734193 12 | 1486156 13 | 4311088 14 | 1417905 15 | 4192140 16 | 3601671 17 | 1102259 18 | 1440658 19 | 1052241 20 | 1141221 21 | 1012221 22 | 1047001 23 | 1012743 24 | 1792611 25 | 1754479 26 | 1453373 27 | 2193777 28 | 1101524 29 | 1477390 30 | 1467587 31 | 1230206 32 | 1052973 33 | -------------------------------------------------------------------------------- /sample_data/reader.zzky.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1767741 3 | -------------------------------------------------------------------------------- /sample_data/reader.zzsherry.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 3369793 3 | 4872671 4 | 3071717 5 | 1385153 6 | 1028296 7 | 2109502 8 | 2220623 9 | 5317075 10 | 1812439 11 | 1006513 12 | 3316179 13 | 2158684 14 | 1025723 15 | 3000215 16 | 5344908 17 | 3813669 18 | 4886245 19 | 4238362 20 | 3315879 21 | 4953695 22 | 5029372 23 | 1030530 24 | 1061242 25 | 2119843 26 | 2243213 27 | 1083762 28 | 1082404 29 | 4011440 30 | 1917972 31 | 1020241 32 | 1972266 33 | 4112874 34 | 1433377 35 | 2380307 36 | 1005521 37 | 1911687 38 | 1886879 39 | 3597938 40 | 1727293 41 | 3033668 42 | 1483624 43 | 1981042 44 | 1962409 45 | 3002863 46 | 1970428 47 | 2256039 48 | 1453101 49 | 1290398 50 | 1022238 51 | 1069313 52 | 1510165 53 | 1441460 54 | 1053752 55 | 1080309 56 | 1007772 57 | 1203426 58 | 1329941 59 | 1088472 60 | 1457148 61 | 1002299 62 | 1034067 63 | 1091953 64 | 1483894 65 | 1213945 66 | 1119522 67 | 1205370 68 | 1013380 69 | 1007433 70 | 1141406 71 | 1050339 72 | 1255288 73 | 1034279 74 | 1023500 75 | 1029159 76 | 1401840 77 | 2285572 78 | 1467905 79 | 2065008 80 | 1481362 81 | 1421921 82 | 1947668 83 | 2133074 84 | 1851385 85 | 1777932 86 | 1763809 87 | 1029791 88 | 1880831 89 | 1049778 90 | 1449430 91 | 1039427 92 | 1085883 93 | 1883992 94 | 1082150 95 | 1011662 96 | 1027464 97 | 1008074 98 | 1212080 99 | 1020670 100 | 1039752 101 | 1046265 102 | 1291809 103 | 1000696 104 | 1005411 105 | 1119332 106 | 1025753 107 | 1043485 108 | 1024217 109 | 1361263 110 | 1361264 111 | 1382829 112 | 1382840 113 | 1382834 114 | 1382838 115 | 1382836 116 | 1060068 117 | 1082399 118 | 1382833 119 | 1382846 120 | 1036490 121 | 1065239 122 | 1082398 123 | 1072189 124 | 1000771 125 | 1011279 126 | 1007282 127 | 1036303 128 | 1058872 129 | 1055251 130 | 1029378 131 | 1050901 132 | 1002940 133 | 1002507 134 | 1069016 135 | 2720656 136 | -------------------------------------------------------------------------------- /sample_data/reader.zzu7.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1961913 3 | 4006425 4 | 6709783 5 | 1803504 6 | 1676953 7 | 1102259 8 | 1034282 9 | 4820710 10 | 5245529 11 | 1529893 12 | 5275059 13 | 4885241 14 | 4742918 15 | 4886245 16 | -------------------------------------------------------------------------------- /sample_data/reader.zzy.ll.csv: -------------------------------------------------------------------------------- 1 | ID 2 | -------------------------------------------------------------------------------- /sample_data/reader.zzyong.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 4200316 3 | 3025921 4 | 4932091 5 | 1116367 6 | 6720539 7 | 3009778 8 | 1409704 9 | 6021440 10 | 5408882 11 | 4156422 12 | 1959837 13 | 1225977 14 | 1225978 15 | 2004341 16 | 1088054 17 | 1028842 18 | 3369600 19 | 4238362 20 | 3813669 21 | 4745287 22 | 1046265 23 | 1824613 24 | 4199363 25 | 3576855 26 | 3236579 27 | 2981763 28 | 2991567 29 | 3591151 30 | 3043970 31 | 2378124 32 | 2377310 33 | 2970056 34 | 1459013 35 | 1500149 36 | 1788421 37 | 1767120 38 | 3108801 39 | 1131736 40 | 4164054 41 | 1036279 42 | 1012751 43 | 1923472 44 | 4246971 45 | 1261560 46 | 1230413 47 | 4859464 48 | 1102259 49 | 3227098 50 | 3142280 51 | 4163938 52 | 1052241 53 | 1152111 54 | 1467587 55 | 1244943 56 | 1453373 57 | 1767741 58 | 1477390 59 | -------------------------------------------------------------------------------- /sample_data/reader.zzywq.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 1103015 3 | -------------------------------------------------------------------------------- /sample_data/reader.zzz_.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 5399343 3 | 1770782 4 | 4067609 5 | 3523041 6 | 6021440 7 | 1028008 8 | 1441589 9 | 1704001 10 | 5372543 11 | 1464203 12 | 1336330 13 | 3210843 14 | 1986291 15 | 1370144 16 | 1084257 17 | 2701313 18 | 4104794 19 | 3266609 20 | 3571732 21 | 3066477 22 | 2567698 23 | 1013129 24 | 1071241 25 | 1041007 26 | 1009257 27 | 1432596 28 | 1039487 29 | 2295163 30 | 1258485 31 | 1258486 32 | 1258489 33 | 1258491 34 | 1258490 35 | 1858410 36 | 1826198 37 | 4827423 38 | 1313042 39 | 1157259 40 | 1138768 41 | 4104793 42 | 3703389 43 | 4086927 44 | 1033778 45 | 1004118 46 | 1026425 47 | 1070209 48 | 1205073 49 | 1009094 50 | 1004760 51 | 1016323 52 | 1072128 53 | 1041482 54 | 1058245 55 | 1434247 56 | 1068202 57 | 1002299 58 | 1212893 59 | 1044547 60 | 1228109 61 | 1028693 62 | 2043828 63 | 1793807 64 | 1401161 65 | 1419882 66 | 1419841 67 | 1084336 68 | 1089886 69 | 1221273 70 | 1072774 71 | 1506956 72 | 1069405 73 | 1085856 74 | 1089893 75 | 2284574 76 | 1022238 77 | 2381202 78 | 1018820 79 | 2066292 80 | 3009821 81 | 3626924 82 | 3274113 83 | 2253642 84 | 2052448 85 | 1213812 86 | 1949338 87 | 1873231 88 | 2023303 89 | -------------------------------------------------------------------------------- /sample_data/reader.zzzzszz.csv: -------------------------------------------------------------------------------- 1 | ID 2 | 7059662 3 | 5171244 4 | 10429548 5 | 3212332 6 | 4836682 7 | 1089518 8 | 4580972 9 | 1089515 10 | 3682204 11 | 4926659 12 | 4953695 13 | 2004407 14 | 4915869 15 | 3646172 16 | 4105410 17 | 3815131 18 | 4179014 19 | 3243100 20 | 4832082 21 | 4903189 22 | 4191587 23 | 4089861 24 | 4723740 25 | 4214114 26 | 1033790 27 | 1026674 28 | 1081482 29 | 4124727 30 | 2049128 31 | 3352914 32 | 3580750 33 | 2299164 34 | 2382359 35 | 4746273 36 | 3619140 37 | 1714014 38 | 1103644 39 | 3006581 40 | 1193621 41 | 4806056 42 | 3390351 43 | 3864320 44 | 4115816 45 | 1032762 46 | 4074636 47 | 1315258 48 | 1146228 49 | 4259314 50 | 3926665 51 | 3602462 52 | 4031698 53 | 2256039 54 | 1015403 55 | 2161983 56 | 1972273 57 | 3043491 58 | 4113090 59 | 3717180 60 | 1017180 61 | 2244869 62 | 3393559 63 | 1963076 64 | 1041007 65 | 1071241 66 | 1074440 67 | 2119843 68 | 1889450 69 | 1858458 70 | 1013208 71 | 1786387 72 | 1442681 73 | 2372026 74 | 3642673 75 | 4173725 76 | 1015123 77 | 3813669 78 | 3890174 79 | 3864342 80 | 3786755 81 | 1977815 82 | 1064828 83 | 2146336 84 | 1344716 85 | 1048411 86 | 3337041 87 | 3315749 88 | 2372015 89 | 3765140 90 | 3344676 91 | 3865832 92 | 3257857 93 | 1440468 94 | 1442680 95 | 1042792 96 | 1039208 97 | 3043786 98 | 3866002 99 | 3644095 100 | 3394338 101 | 1946661 102 | 3672237 103 | 2287508 104 | 3825726 105 | 3886010 106 | 3622904 107 | 3522785 108 | 3266968 109 | 1777898 110 | 2307720 111 | 1727293 112 | 3729173 113 | 1049219 114 | 1046385 115 | 2981384 116 | 1215310 117 | 1436707 118 | 3776157 119 | 1016300 120 | 1024217 121 | 1008145 122 | 2225735 123 | 1062326 124 | 1034108 125 | 1009160 126 | 1083290 127 | 1386897 128 | 3410718 129 | 3012503 130 | 1049217 131 | 1056868 132 | 1433634 133 | 1419841 134 | 2295954 135 | 2036343 136 | 2057796 137 | 1013129 138 | 1092149 139 | 1141406 140 | 3274113 141 | 1170801 142 | 1090043 143 | 3009821 144 | 1859140 145 | 1401841 146 | 1432596 147 | 1985223 148 | 1003479 149 | 1057244 150 | 1180102 151 | 2125321 152 | 1002299 153 | 2295163 154 | 1731370 155 | 1039487 156 | 1009257 157 | 1040211 158 | 1068920 159 | 2294740 160 | 2336093 161 | 2974903 162 | 3223711 163 | 1004554 164 | 1048007 165 | 3153347 166 | 3717833 167 | 2036345 168 | 2250587 169 | 2192012 170 | 3053207 171 | 1152701 172 | 1941558 173 | 1873231 174 | 1949338 175 | 2052448 176 | 1028916 177 | 2300596 178 | 2340194 179 | 2149669 180 | 2284618 181 | 3422622 182 | 2383005 183 | 1396339 184 | 1025176 185 | 1061563 186 | 2330383 187 | 1032645 188 | 1012203 189 | 1046265 190 | 1040771 191 | 1017143 192 | 3067169 193 | 1263250 194 | 1044547 195 | 1337305 196 | 1807516 197 | 1903164 198 | 1083144 199 | 1062336 200 | 1420696 201 | 1226953 202 | 3105926 203 | 3713327 204 | 3211779 205 | 2974643 206 | 1291175 207 | 1770782 208 | 2297706 209 | 2297697 210 | 3609132 211 | 3013954 212 | 1874488 213 | 2014130 214 | 3608208 215 | 3615061 216 | 3753043 217 | 3633455 218 | 3313251 219 | 2363651 220 | 3259440 221 | 3038656 222 | 1061043 223 | 3187737 224 | 1827374 225 | 1052828 226 | -------------------------------------------------------------------------------- /spider: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | while : ; do 3 | crawler/run.py && \ 4 | date && ls -l data/ | grep -c reader 5 | done 6 | -------------------------------------------------------------------------------- /visualizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gigix/DouMine/d39f6f6fe027ae3d6f15f60960718785d817793c/visualizer/__init__.py -------------------------------------------------------------------------------- /visualizer/top_readers.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import os 4 | import csv 5 | 6 | base_dir = os.path.dirname(__file__) + '/..' 7 | 8 | json = '{"name": "readers","children": [' 9 | 10 | with open(base_dir + '/output/part-r-00000', 'rb') as csvfile: 11 | reader = csv.reader(csvfile, delimiter=' ') 12 | json += ','.join(map(lambda row: '{"name": "' + row[0] + '", "size": ' + row[1] + '}', reader)) 13 | # {"name": "NAME", "size": 3938} 14 | 15 | json += ']}' 16 | 17 | with open(base_dir + '/public/data/top_sf_readers.json', 'wb') as jsonfile: 18 | jsonfile.write(json) 19 | --------------------------------------------------------------------------------